OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getDefinition
(Results
1 - 25
of
81
) sorted by relevancy
1
2
3
4
/src/external/apache2/llvm/dist/clang/include/clang/Lex/
MacroInfo.h
379
DefInfo
getDefinition
();
380
const DefInfo
getDefinition
() const {
381
return const_cast<MacroDirective *>(this)->
getDefinition
();
385
if (const DefInfo Def =
getDefinition
())
391
return
getDefinition
().getMacroInfo();
393
MacroInfo *getMacroInfo() { return
getDefinition
().getMacroInfo(); }
478
return DefDirective->getPrevious()->
getDefinition
();
PreprocessingRecord.h
189
if (MacroDefinitionRecord *Def =
getDefinition
())
196
MacroDefinitionRecord *
getDefinition
() const {
/src/external/apache2/llvm/dist/clang/include/clang/AST/
RecordLayout.h
252
Base = Base->
getDefinition
();
262
VBase = VBase->
getDefinition
();
Decl.h
1215
VarDecl *
getDefinition
(ASTContext &);
1216
const VarDecl *
getDefinition
(ASTContext &C) const {
1217
return const_cast<VarDecl*>(this)->
getDefinition
(C);
1219
VarDecl *
getDefinition
() {
1220
return
getDefinition
(getASTContext());
1222
const VarDecl *
getDefinition
() const {
1223
return const_cast<VarDecl*>(this)->
getDefinition
();
2088
FunctionDecl *
getDefinition
() {
2094
const FunctionDecl *
getDefinition
() const {
2095
return const_cast<FunctionDecl *>(this)->
getDefinition
();
[
all
...]
DeclObjC.h
1437
if (const ObjCInterfaceDecl *Def =
getDefinition
())
1445
if (const ObjCInterfaceDecl *Def =
getDefinition
())
1507
return
getDefinition
() == this;
1525
ObjCInterfaceDecl *
getDefinition
() {
1532
const ObjCInterfaceDecl *
getDefinition
() const {
2194
ObjCProtocolDecl *
getDefinition
() {
2199
const ObjCProtocolDecl *
getDefinition
() const {
2206
return
getDefinition
() == this;
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRFindingAction.cpp
117
if (!RecordDecl->
getDefinition
()) {
121
RecordDecl = RecordDecl->
getDefinition
();
159
const auto* RecordDecl = RD->
getDefinition
();
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CallGraph.h
197
FunctionDecl *
getDefinition
() const {
198
return getDecl()->getAsFunction()->
getDefinition
();
/src/external/apache2/llvm/dist/clang/lib/Lex/
MacroInfo.cpp
178
MacroDirective::DefInfo MacroDirective::
getDefinition
() {
205
for (DefInfo Def =
getDefinition
(); Def; Def = Def.getPreviousDefinition()) {
/src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Program.cpp
189
F = F->
getDefinition
();
200
if (const FunctionDecl *FD = F->
getDefinition
())
209
RD = RD->
getDefinition
();
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTBAA.cpp
101
const RecordDecl *RD = TTy->getDecl()->
getDefinition
();
284
const RecordDecl *RD = TTy->getDecl()->
getDefinition
();
336
const RecordDecl *RD = TTy->getDecl()->
getDefinition
();
ModuleBuilder.cpp
119
if (auto Def = TD->
getDefinition
())
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
UninitializedObjectChecker.cpp
282
const RecordDecl *RD = R->getValueType()->getAsRecordDecl()->
getDefinition
();
522
return M->
getDefinition
()->getBody();
535
Parent = Parent->
getDefinition
();
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
PtrTypesSemantics.cpp
68
R = R->
getDefinition
();
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp
78
if (!(RD = RD->
getDefinition
()))
134
if (!(RD = RD->
getDefinition
()))
DynamicTypeChecker.cpp
150
return Decl->
getDefinition
();
LLVMConventionsChecker.cpp
250
const RecordDecl *RD = RT->getDecl()->
getDefinition
();
IvarInvalidationChecker.cpp
258
containsInvalidationMethod(I->
getDefinition
(), OutInfo, Partial);
272
containsInvalidationMethod(I->
getDefinition
(), OutInfo, Partial);
/src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp
97
if (const ObjCProtocolDecl *Def = Proto->
getDefinition
())
184
if (const ObjCProtocolDecl *Def = Proto->
getDefinition
())
242
if (const ObjCProtocolDecl *Def = Proto->
getDefinition
())
315
if (const ObjCInterfaceDecl *def =
getDefinition
())
349
if (ObjCInterfaceDecl *superDef = superDecl->
getDefinition
())
569
getCanonicalDecl()->
getDefinition
() ==
getDefinition
())
1585
if (const ObjCInterfaceDecl *Def =
getDefinition
()) {
1598
getASTContext().setObjCImplementation(
getDefinition
(), ImplD);
1953
const ObjCProtocolDecl *Def =
getDefinition
();
[
all
...]
DeclBase.cpp
483
Definition = ID->
getDefinition
();
485
Definition = PD->
getDefinition
();
487
Definition = TD->
getDefinition
();
1239
if (auto *Def = OID->
getDefinition
())
1245
if (auto *Def = OPD->
getDefinition
())
1262
if (TagDecl *Def = Tag->
getDefinition
())
ExternalASTMerger.cpp
315
if (!SourceTag->
getDefinition
())
335
if (!SourceInterface->
getDefinition
())
ASTImporter.cpp
1694
if (FromRecord->
getDefinition
() && FromRecord->isCompleteDefinition() &&
1695
!ToRecord->
getDefinition
()) {
1705
if (FromEnum->
getDefinition
() && !ToEnum->
getDefinition
()) {
1907
assert(From->isCompleteDefinition() && To->
getDefinition
() == To &&
1944
if (To->
getDefinition
() || To->isBeingDefined()) {
2073
if (To->
getDefinition
() || To->isBeingDefined()) {
2693
EnumDecl *FoundDef = FoundEnum->
getDefinition
();
2829
RecordDecl *FoundDef = FoundRecord->
getDefinition
();
3985
VarDecl *FoundDef = FoundVar->
getDefinition
();
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTCommon.cpp
298
if (const TagDecl *Def = cast<TagDecl>(DC)->
getDefinition
())
327
= cast<ObjCProtocolDecl>(DC)->
getDefinition
())
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CallGraph.cpp
98
if (FunctionDecl *Def = Ctor->
getDefinition
())
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXCursor.h
189
const MacroDefinitionRecord *
getDefinition
() const;
/src/external/apache2/llvm/dist/clang/lib/Index/
IndexTypeSourceInfo.cpp
217
RD = RD->
getDefinition
();
Completed in 62 milliseconds
1
2
3
4
Indexes created Tue Feb 24 08:35:24 UTC 2026