Home | History | Annotate | Download | only in libclang

Lines Matching defs:Definition

440     // By definition, references have no children.
3561 return createCXString("macro definition");
3707 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : "";
3727 CXCursor Definition = clang_getCursorDefinition(Result);
3728 if (!clang_equalCursors(Definition, clang_getNullCursor())) {
3729 CXSourceLocation DefinitionLoc = clang_getCursorLocation(Definition);
3731 = clang_getCursorKindSpelling(Definition.kind);
4258 // declaration and definition.
4291 // Declaration kinds for which the definition is not resolvable.
4324 // Ask the variable if it has a definition.
4359 // Dig out the method definition in the associated
4361 // FIXME: The ASTs should make finding the definition easier.
4385 // There are two notions of a "definition" for an Objective-C
4388 // the definition; when we were provided with the interface,
4389 // produce the @implementation as the definition.