/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
ProgramState.h | 288 SVal getLValue(const FieldDecl *decl, SVal Base) const; 707 inline SVal ProgramState::getLValue(const FieldDecl *D, SVal Base) const { 715 Base = SM.getLValueField(cast<FieldDecl>(I), Base);
|
Store.h | 98 virtual SVal getLValueField(const FieldDecl *D, SVal Base) {
|
/external/clang/include/clang/AST/ |
RecordLayout.h | 23 class FieldDecl;
|
ExternalASTSource.h | 28 class FieldDecl; 274 llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets,
|
/external/clang/include/clang/Sema/ |
ExternalSemaSource.h | 84 FieldDecl *, llvm::SmallVector<std::pair<SourceLocation, bool>, 4>> &);
|
/external/clang/lib/AST/ |
DeclCXX.cpp | 420 !isa<FieldDecl>(D) && 625 if (FieldDecl *Field = dyn_cast<FieldDecl>(D)) { [all...] |
Expr.cpp | 79 if (FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl())) { [all...] |
ExprConstant.cpp | 98 static const FieldDecl *getAsField(APValue::LValuePathEntry E) { 99 return dyn_cast<FieldDecl>(getAsBaseOrMember(E).getPointer()); 135 } else if (const FieldDecl *FD = getAsField(Path[I])) { 259 if (const FieldDecl *FD = dyn_cast<FieldDecl>(D)) { [all...] |
/external/clang/lib/ASTMatchers/Dynamic/ |
Registry.cpp | 173 REGISTER_MATCHER(fieldDecl);
|
/external/clang/lib/CodeGen/ |
CGObjCRuntime.h | 39 class FieldDecl;
|
CodeGenTypes.h | 41 class FieldDecl;
|
CGExprConstant.cpp | 61 void AppendField(const FieldDecl *Field, uint64_t FieldOffset, 66 void AppendBitField(const FieldDecl *Field, uint64_t FieldOffset, 95 AppendField(const FieldDecl *Field, uint64_t FieldOffset, 156 void ConstStructBuilder::AppendBitField(const FieldDecl *Field, [all...] |
/external/clang/lib/Sema/ |
SemaTemplateInstantiate.cpp | 431 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { [all...] |
SemaLambda.cpp | 302 } else if (isa<FieldDecl>(ManglingContextDecl)) { [all...] |
/external/clang/lib/Serialization/ |
ASTCommon.cpp | 367 return isa<TagDecl>(D) || isa<FieldDecl>(D);
|
ASTReaderDecl.cpp | 285 void VisitFieldDecl(FieldDecl *FD); [all...] |
/external/clang/tools/libclang/ |
IndexingContext.h | 402 bool handleField(const FieldDecl *D);
|
/frameworks/compile/slang/ |
slang_rs_object_ref_count.cpp | 525 const clang::FieldDecl *FD = *FI; 544 const clang::FieldDecl *FD = *FI; 588 clang::FieldDecl *FD = *FI; [all...] |
/external/clang/lib/Index/ |
USRGeneration.cpp | 76 void VisitFieldDecl(const FieldDecl *D); 179 void USRGenerator::VisitFieldDecl(const FieldDecl *D) {
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
CallAndMessageChecker.cpp | 226 SmallVector<const FieldDecl *, 10> FieldChain; 279 for (SmallVectorImpl<const FieldDecl *>::iterator
|
/external/clang/lib/StaticAnalyzer/Core/ |
ExprEngine.cpp | 658 const FieldDecl *Member = D.getFieldDecl(); [all...] |
Store.cpp | 416 // of FieldDecl. 420 return loc::MemRegionVal(MRMgr.getFieldRegion(cast<FieldDecl>(D), BaseR));
|
/external/clang/test/Index/ |
annotate-tokens-pp.c | 222 // CHECK: Keyword: "int" [41:3 - 41:6] FieldDecl=x:41:7 (Definition) 223 // CHECK: Identifier: "x" [41:7 - 41:8] FieldDecl=x:41:7 (Definition)
|
load-stmts.cpp | 123 // CHECK: load-stmts.cpp:2:16: FieldDecl=a:2:16 (Definition) Extent=[2:12 - 2:17] 124 // CHECK: load-stmts.cpp:2:19: FieldDecl=b:2:19 (Definition) Extent=[2:12 - 2:20]
|
/external/clang/test/Misc/ |
ast-dump-color.cpp | 68 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]FieldDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:20:3[[RESET]], [[Yellow]]col:7[[RESET]]> [[Yellow]]col:7[[RESET]][[CYAN]] var1[[RESET]] [[Green]]'int'[[RESET]]{{$}} 72 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]FieldDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:24:3[[RESET]], [[Yellow]]col:7[[RESET]]> [[Yellow]]col:7[[RESET]][[CYAN]] var2[[RESET]] [[Green]]'int'[[RESET]]{{$}}
|