/external/clang/lib/StaticAnalyzer/Checkers/ |
CastSizeChecker.cpp | 58 const FieldDecl *Last = nullptr;
|
PaddingChecker.cpp | 149 auto IsTrickyField = [](const FieldDecl *FD) -> bool { 216 auto GatherSizesAndAlignments = [](const FieldDecl *FD) {
|
/external/clang/test/Index/ |
complete-exprs.cpp | 81 // CHECK-CC5: FieldDecl:{ResultType int}{TypedText member} (8)
|
targeted-cursor.c | 64 // FIELD-CURSOR1: FieldDecl=z:2:7 (Definition)
|
/external/clang/test/Misc/ |
ast-dump-attr.cpp | 142 // CHECK: FieldDecl{{.*}}Test 'int'
|
/external/clang/lib/Sema/ |
SemaExprMember.cpp | 110 isField |= isa<FieldDecl>(D) || isa<MSPropertyDecl>(D) || 212 bool IsField = isa<FieldDecl>(Rep) || isa<IndirectFieldDecl>(Rep); 763 FieldDecl *Field, DeclAccessPair FoundDecl, 846 FieldDecl *field = cast<FieldDecl>(*FI); [all...] |
SemaDeclCXX.cpp | [all...] |
/external/clang/lib/Frontend/Rewrite/ |
RewriteModernObjC.cpp | 399 void RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result); 402 void RewriteLocallyDefinedNamedAggregates(FieldDecl *fieldDecl, [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
MemRegion.h | 930 FieldRegion(const FieldDecl *fd, const MemRegion* sReg) 934 const FieldDecl *getDecl() const { return cast<FieldDecl>(D); } 943 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const FieldDecl *FD, [all...] |
/external/clang/include/clang/Sema/ |
MultiplexExternalSemaSource.h | 181 llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets, 217 FieldDecl *, llvm::SmallVector<std::pair<SourceLocation, bool>, 4>> &
|
Initialization.h | 32 class FieldDecl; 131 /// FieldDecl, respectively. 180 InitializedEntity(FieldDecl *Member, const InitializedEntity *Parent) 298 InitializeMember(FieldDecl *Member, [all...] |
/external/clang/lib/Frontend/ |
ASTConsumers.cpp | 419 FieldDecl *FD = cast<FieldDecl>(I);
|
LayoutOverrideSource.cpp | 158 llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets,
|
/frameworks/compile/slang/ |
slang_rs_export_foreach.cpp | 348 clang::FieldDecl *FD = 349 clang::FieldDecl::Create(Ctx,
|
slang_rs_export_type.cpp | 324 const clang::FieldDecl *FD = *FI; 554 const clang::FieldDecl *FD = *FI; [all...] |
/external/clang/include/clang/ASTMatchers/ |
ASTMatchers.h | 449 /// fieldDecl(isPublic()) 465 /// fieldDecl(isProtected()) 481 /// fieldDecl(isPrivate()) 662 /// refersToDeclaration(fieldDecl(hasName("next")))) 663 /// matches the specialization \c A<&B::next> with \c fieldDecl(...) matching 681 /// isExpr(hasDescendant(declRefExpr(to(fieldDecl(hasName("next")))))))) 682 /// matches the specialization \c A<&B::next> with \c fieldDecl(...) matching 836 /// fieldDecl() 838 const internal::VariadicDynCastAllOfMatcher<Decl, FieldDecl> fieldDecl; [all...] |
/external/clang/tools/libclang/ |
CursorVisitor.h | 215 bool VisitFieldDecl(FieldDecl *D);
|
IndexingContext.cpp | 394 bool IndexingContext::handleField(const FieldDecl *D) { [all...] |
/external/clang/include/clang/AST/ |
DeclCXX.h | [all...] |
Decl.h | [all...] |
Expr.h | 77 FieldDecl *Field; 88 SubobjectAdjustment(FieldDecl *Field) 441 FieldDecl *getSourceBitField(); 443 const FieldDecl *getSourceBitField() const { [all...] |
ASTContext.h | 374 llvm::DenseMap<FieldDecl *, FieldDecl *> InstantiatedFromUnnamedFieldDecl; 805 FieldDecl *getInstantiatedFromUnnamedFieldDecl(FieldDecl *Field); 807 void setInstantiatedFromUnnamedFieldDecl(FieldDecl *Inst, FieldDecl *Tmpl); [all...] |
/external/clang/include/clang/Analysis/ |
CFG.h | 38 class FieldDecl; 263 CFGMemberDtor(const FieldDecl *field) 266 const FieldDecl *getFieldDecl() const { 267 return static_cast<const FieldDecl*>(Data1.getPointer()); 673 void appendMemberDtor(FieldDecl *FD, BumpVectorContext &C) { [all...] |
/external/clang/lib/CodeGen/ |
CodeGenFunction.h | 203 virtual const FieldDecl *lookup(const VarDecl *VD) const { 208 virtual FieldDecl *getThisFieldDecl() const { return CXXThisFieldDecl; } 227 /// \brief Keep the map between VarDecl and FieldDecl. 228 llvm::SmallDenseMap<const VarDecl *, FieldDecl *> CaptureFields; 235 FieldDecl *CXXThisFieldDecl; 285 llvm::DenseMap<const VarDecl *, FieldDecl *> LambdaCaptureFields; 286 FieldDecl *LambdaThisCaptureField; [all...] |
/external/clang/lib/AST/ |
ASTContext.cpp | 207 (isa<FieldDecl>(D) || isa<EnumConstantDecl>(D) || isa<VarDecl>(D) || [all...] |