/external/clang/test/Index/ |
annotate-module.m | 25 // CHECK-NEXT: Keyword: "int" [4:1 - 4:4] VarDecl=glob:4:5 26 // CHECK-NEXT: Identifier: "glob" [4:5 - 4:9] VarDecl=glob:4:5 41 // CHECK-MOD-NEXT: Keyword: "int" [2:1 - 2:4] VarDecl=Module_Sub:2:6 42 // CHECK-MOD-NEXT: Punctuation: "*" [2:5 - 2:6] VarDecl=Module_Sub:2:6 43 // CHECK-MOD-NEXT: Identifier: "Module_Sub" [2:6 - 2:16] VarDecl=Module_Sub:2:6
|
annotate-tokens.c | 73 // CHECK: Punctuation: "*" [4:4 - 4:5] VarDecl=t_ptr:4:6 (Definition) 74 // CHECK: Identifier: "t_ptr" [4:6 - 4:11] VarDecl=t_ptr:4:6 (Definition) 75 // CHECK: Punctuation: "=" [4:12 - 4:13] VarDecl=t_ptr:4:6 (Definition) 88 // CHECK: Keyword: "struct" [7:3 - 7:9] VarDecl=x:7:12 (Definition) 90 // CHECK: Identifier: "x" [7:12 - 7:13] VarDecl=x:7:12 (Definition) 91 // CHECK: Punctuation: "=" [7:14 - 7:15] VarDecl=x:7:12 (Definition) 102 // CHECK: Keyword: "void" [8:3 - 8:7] VarDecl=xx:8:9 (Definition) 103 // CHECK: Punctuation: "*" [8:8 - 8:9] VarDecl=xx:8:9 (Definition) 104 // CHECK: Identifier: "xx" [8:9 - 8:11] VarDecl=xx:8:9 (Definition) 105 // CHECK: Punctuation: "=" [8:12 - 8:13] VarDecl=xx:8:9 (Definition [all...] |
targeted-annotation.c | 27 // LOCAL: Keyword: "int" [5:1 - 5:4] VarDecl=LocalVar1:5:5 28 // LOCAL: Identifier: "LocalVar1" [5:5 - 5:14] VarDecl=LocalVar1:5:5 30 // LOCAL: Keyword: "int" [6:1 - 6:4] VarDecl=LocalVar2:6:5 31 // LOCAL: Identifier: "LocalVar2" [6:5 - 6:14] VarDecl=LocalVar2:6:5 64 // NESTED: Keyword: "int" [2:8 - 2:11] VarDecl=NestedVar1:2:12 65 // NESTED: Identifier: "NestedVar1" [2:12 - 2:22] VarDecl=NestedVar1:2:12 97 // TOP: Keyword: "int" [11:8 - 11:11] VarDecl=TopVar:11:12 98 // TOP: Identifier: "TopVar" [11:12 - 11:18] VarDecl=TopVar:11:12
|
arc-annotate.m | 46 // CHECK: Punctuation: "*" [8:5 - 8:6] VarDecl=avar:8:6 (Definition) 47 // CHECK: Identifier: "avar" [8:6 - 8:10] VarDecl=avar:8:6 (Definition) 55 // CHECK-REFS: VarDecl=avar:8:6 (Definition) 56 // CHECK-REFS: VarDecl=avar:8:6 (Definition) =[8:6 - 8:10]
|
cindex-from-source.m | 6 // CHECK: cindex-from-source.m:{{.*}}:{{.*}}: VarDecl=g0:{{.*}}:{{.*}}
|
targeted-cursor.c | 59 // LOCAL-CURSOR1: VarDecl=LocalVar1:5:5 60 // TOP-CURSOR1: VarDecl=TopVar:11:12 61 // NESTED-CURSOR1: VarDecl=NestedVar1:2:12 62 // PREAMBLE-CURSOR1: VarDecl=PreambleVar:2:12
|
complete-type-factors.m | 42 // CHECK-CC1: VarDecl:{ResultType int}{TypedText i} (8) 51 // CHECK-CC2: VarDecl:{ResultType enum Color}{TypedText c} (8) 57 // CHECK-CC2: VarDecl:{ResultType int}{TypedText i} (17) 66 // CHECK-CC3: VarDecl:{ResultType enum Color}{TypedText c} (34) 73 // CHECK-CC3: VarDecl:{ResultType int}{TypedText i} (17) 82 // CHECK-CC4: VarDecl:{ResultType enum Color}{TypedText c} (34) 89 // CHECK-CC4: VarDecl:{ResultType int}{TypedText i} (34) 98 // CHECK-CC6: VarDecl:{ResultType void (^)(enum Color, int)}{TypedText block} (34) 100 // CHECK-CC6: VarDecl:{ResultType enum Color}{TypedText c} (8) 107 // CHECK-CC6: VarDecl:{ResultType int}{TypedText i} (17 [all...] |
/external/clang/docs/ |
LibASTMatchersTutorial.rst | 235 forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl())))) 242 forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl( 258 forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl( 277 forStmt(hasLoopInit(declStmt(hasSingleDecl(varDecl( 369 hasUnaryOperand(declRefExpr(to(varDecl(hasType(isInteger()))))))) 379 varDecl(hasType(isInteger())).bind("incrementVariable")))))) 404 hasLHS(declRefExpr(to(varDecl(hasType(isInteger()))))), 442 to(varDecl(hasType(isInteger())))))), 481 hasSingleDecl(varDecl(hasInitializer(integerLiteral(equals(0)))) 486 to(varDecl(hasType(isInteger())).bind("incVarName")))))) [all...] |
/external/clang/include/clang/Analysis/Analyses/ |
UninitializedValues.h | 27 class VarDecl; 106 virtual void handleUseOfUninitVariable(const VarDecl *vd, 112 virtual void handleSelfInit(const VarDecl *vd) {}
|
/external/clang/include/clang/Frontend/ |
MultiplexConsumer.h | 37 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) override; 51 void CompleteTentativeDefinition(VarDecl *D) override;
|
/external/clang/lib/CodeGen/ |
CGOpenCLRuntime.h | 25 class VarDecl; 44 const VarDecl &D);
|
SanitizerMetadata.h | 27 class VarDecl; 40 void reportGlobalToASan(llvm::GlobalVariable *GV, const VarDecl &D,
|
CGStmtOpenMP.cpp | 90 VarDecl *CapVar = nullptr; 318 Address SrcAddr, const VarDecl *DestVD, 319 const VarDecl *SrcVD, const Expr *Copy) { 359 llvm::DenseSet<const VarDecl *> EmittedAsFirstprivate; 364 auto *OrigVD = cast<VarDecl>(cast<DeclRefExpr>(*IRef)->getDecl()); 367 auto *VD = cast<VarDecl>(cast<DeclRefExpr>(IInit)->getDecl()); 368 auto *VDInit = cast<VarDecl>(cast<DeclRefExpr>(*InitsRef)->getDecl()); 371 const_cast<VarDecl *>(OrigVD), 378 // Emit VarDecl with copy init for arrays. 408 // Emit private VarDecl with copy init [all...] |
/external/clang/include/clang/AST/ |
LambdaCapture.h | 63 VarDecl *Var = nullptr, 78 return dyn_cast_or_null<VarDecl>(DeclAndBits.getPointer()); 93 VarDecl *getCapturedVar() const { 95 return cast<VarDecl>(DeclAndBits.getPointer());
|
/external/clang/test/CodeGen/ |
xcore-abi.cpp | 18 // getLanguageLinkage() via a null 'VarDecl*'. This was an XCore specific
|
/external/libopus/celt/ |
stack_alloc.h | 74 * @def VARDECL(var) 93 #define VARDECL(type, var) 103 #define VARDECL(type, var) type *var 149 #define VARDECL(type, var) type *var
|
/external/libopus/silk/ |
NLSF_encode.c | 50 VARDECL( opus_int32, err_Q26 ); 51 VARDECL( opus_int32, RD_Q25 ); 52 VARDECL( opus_int, tempIndices1 ); 53 VARDECL( opus_int8, tempIndices2 );
|
/external/speex/libspeex/ |
sb_celp.c | 309 VARDECL(spx_mem_t *mem); 310 VARDECL(spx_sig_t *innov); 311 VARDECL(spx_word16_t *target); 312 VARDECL(spx_word16_t *syn_resp); 313 VARDECL(spx_word32_t *low_pi_gain); 316 VARDECL(spx_word16_t *low_exc_rms); 317 VARDECL(spx_word16_t *low_innov_rms); 322 VARDECL(spx_coef_t *lpc); 323 VARDECL(spx_coef_t *interp_lpc); 324 VARDECL(spx_coef_t *bw_lpc1) [all...] |
ltp.c | 176 VARDECL(spx_word32_t *best_score); 177 VARDECL(spx_word32_t *best_ener); 179 VARDECL(spx_word32_t *corr); 183 VARDECL(spx_word16_t *corr16); 184 VARDECL(spx_word16_t *ener16); 194 VARDECL(spx_word32_t *energy); 371 VARDECL(spx_word16_t *tmp1); 372 VARDECL(spx_word16_t *e); 395 VARDECL(spx_mem_t *mm); 553 VARDECL(spx_sig_t *best_exc) [all...] |
/external/clang/lib/ARCMigrate/ |
TransAutoreleasePool.cpp | 85 SmallVector<VarDecl *, 8> VarsToHandle; 87 for (std::map<VarDecl *, PoolVarInfo>::iterator 89 VarDecl *var = I->first; 172 if (VarDecl *VD = dyn_cast<VarDecl>(DclS->getSingleDecl())) { 190 if (VarDecl *VD = dyn_cast<VarDecl>(dref->getDecl())) { 226 VarDecl *PoolVar; 373 bool isPoolDrain(VarDecl *poolVar, Stmt *S) { 427 std::map<VarDecl *, PoolVarInfo> PoolVars [all...] |
/external/clang/lib/Sema/ |
ScopeInfo.cpp | 67 IsExact = isa<VarDecl>(D); 144 assert(isa<VarDecl>(Property)); 222 void LambdaScopeInfo::getPotentialVariableCapture(unsigned Idx, VarDecl *&VD, 229 VD = dyn_cast<VarDecl>(DRE->getFoundDecl()); 231 VD = dyn_cast<VarDecl>(ME->getMemberDecl());
|
SemaOpenMP.cpp | 90 typedef llvm::SmallDenseMap<VarDecl *, DSAInfo, 64> DeclSAMapTy; 91 typedef llvm::SmallDenseMap<VarDecl *, DeclRefExpr *, 64> AlignedMapTy; 92 typedef llvm::DenseSet<VarDecl *> LoopControlVariablesSetTy; 93 typedef llvm::SmallDenseMap<VarDecl *, MapInfo, 64> MappedDeclsTy; 142 DSAVarData getDSA(StackTy::reverse_iterator Iter, VarDecl *D); 145 bool isOpenMPLocal(VarDecl *D, StackTy::reverse_iterator Iter); 182 DeclRefExpr *addUniqueAligned(VarDecl *D, DeclRefExpr *NewDE); 185 void addLoopControlVariable(VarDecl *D); 188 bool isLoopControlVariable(VarDecl *D); 191 void addDSA(VarDecl *D, DeclRefExpr *E, OpenMPClauseKind A) [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
MallocSizeofChecker.cpp | 32 typedef llvm::PointerUnion<const Stmt *, const VarDecl *> ExprParent; 104 if (const VarDecl *VD = dyn_cast<VarDecl>(I)) 212 if (i->CastedExprParent.is<const VarDecl *>()) { 214 i->CastedExprParent.get<const VarDecl *>()->getTypeSourceInfo();
|
/frameworks/compile/slang/ |
slang_rs_object_ref_count.h | 54 std::list<clang::VarDecl*> mRSO; // Declared RS objects in this scope (but 63 inline void addRSObject(clang::VarDecl* VD) { 69 void AppendRSObjectInit(clang::VarDecl *VD, 100 static clang::Stmt *ClearRSObject(clang::VarDecl *VD, 130 static bool InitializeRSObject(clang::VarDecl *VD,
|
/external/clang/lib/AST/ |
Stmt.cpp | 759 IfStmt::IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond, 769 VarDecl *IfStmt::getConditionVariable() const { 774 return cast<VarDecl>(DS->getSingleDecl()); 777 void IfStmt::setConditionVariable(const ASTContext &C, VarDecl *V) { 788 ForStmt::ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, 800 VarDecl *ForStmt::getConditionVariable() const { 805 return cast<VarDecl>(DS->getSingleDecl()); 808 void ForStmt::setConditionVariable(const ASTContext &C, VarDecl *V) { 819 SwitchStmt::SwitchStmt(const ASTContext &C, VarDecl *Var, Expr *cond) 826 VarDecl *SwitchStmt::getConditionVariable() const [all...] |