Top | ![]() |
![]() |
![]() |
![]() |
void ide_symbol_resolver_lookup_symbol_async (IdeSymbolResolver *self
,IdeSourceLocation *location
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously requests that self
determine the symbol existing at the source location
denoted by self
. callback
should call ide_symbol_resolver_lookup_symbol_finish()
to
retrieve the result.
IdeSymbol * ide_symbol_resolver_lookup_symbol_finish (IdeSymbolResolver *self
,GAsyncResult *result
,GError **error
);
Completes an asynchronous call to lookup a symbol using
ide_symbol_resolver_lookup_symbol_async()
.
void ide_symbol_resolver_get_symbol_tree_async (IdeSymbolResolver *self
,GFile *file
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
IdeSymbolTree * ide_symbol_resolver_get_symbol_tree_finish (IdeSymbolResolver *self
,GAsyncResult *result
,GError **error
);
Completes an asynchronous request to get the symbol tree for the requested file.
struct IdeSymbolResolverInterface { GTypeInterface parent_interface; void (*lookup_symbol_async) (IdeSymbolResolver *self, IdeSourceLocation *location, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); IdeSymbol *(*lookup_symbol_finish) (IdeSymbolResolver *self, GAsyncResult *result, GError **error); void (*get_symbol_tree_async) (IdeSymbolResolver *self, GFile *file, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); IdeSymbolTree *(*get_symbol_tree_finish) (IdeSymbolResolver *self, GAsyncResult *result, GError **error); };