Home | History | Annotate | Download | only in libclang

Lines Matching defs:Definition

464     // By definition, references have no children.
539 // If pointing inside a macro definition, check if the token is an identifier
3771 return cxstring::createRef("macro definition");
3949 const char *IsDef = clang_isCursorDefinition(Result)? " (Definition)" : "";
3970 CXCursor Definition = clang_getCursorDefinition(Result);
3971 if (!clang_equalCursors(Definition, clang_getNullCursor())) {
3972 CXSourceLocation DefinitionLoc = clang_getCursorLocation(Definition);
3974 = clang_getCursorKindSpelling(Definition.kind);
4516 // declaration and definition.
4553 // Declaration kinds for which the definition is not resolvable.
4588 // Ask the variable if it has a definition.
4630 // Dig out the method definition in the associated
4632 // FIXME: The ASTs should make finding the definition easier.
4656 // There are two notions of a "definition" for an Objective-C
4659 // the definition; when we were provided with the interface,
4660 // produce the @implementation as the definition.
5565 // If we are in a macro definition, check if the token was ever a
6545 // Check that the token is inside the definition and not its argument list.