Searched defs:Var (Results 51 - 63 of 63) sorted by relevance

123

/external/clang/lib/Sema/
H A DSemaStmt.cpp2476 if (VD->getKind() != Decl::Var &&
3037 VarDecl *Var = cast_or_null<VarDecl>(Parm); local
3038 if (Var && Var->isInvalidDecl())
3041 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body);
H A DSemaTemplate.cpp2813 VarDecl *Var = cast<VarDecl>(Decl.get());
2814 if (!Var->getTemplateSpecializationKind())
2815 Var->setTemplateSpecializationKind(TSK_ImplicitInstantiation,
2819 return BuildDeclarationNameExpr(SS, NameInfo, Var,
4495 VarDecl *Var = dyn_cast<VarDecl>(Entity); local
4498 if (!Func && !Var) {
4547 if (Var->getType()->isReferenceType()) {
4550 << Var->getType() << Arg->getSourceRange();
4556 if (Var->getTLSKind()) {
4559 S.Diag(Var
[all...]
H A DSemaChecking.cpp7511 void Sema::checkRetainCycles(VarDecl *Var, Expr *Init) { argument
7513 if (!considerVariable(Var, /*DeclRefExpr=*/nullptr, Owner))
7518 Owner.Loc = Var->getLocation();
7519 Owner.Range = Var->getSourceRange();
H A DSemaDecl.cpp8763 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
8764 QualType Type = Var->getType();
8768 Diag(Var->getLocation(), diag::err_auto_var_requires_init)
8769 << Var->getDeclName() << Type;
8770 Var->setInvalidDecl();
8780 if (Var->isConstexpr() && !Var->isThisDeclarationADefinition()) {
8781 if (Var->isStaticDataMember())
8782 Diag(Var->getLocation(),
8784 << Var
9037 Decl *Var = ActOnDeclarator(S, D); local
[all...]
H A DSemaDeclCXX.cpp868 case Decl::Var: {
9028 VarDecl *Var; member in class:__anon18041::RefBuilder
9033 return assertNotNull(S.BuildDeclRefExpr(Var, VarType, VK_LValue, Loc).get());
9036 RefBuilder(VarDecl *Var, QualType VarType) argument
9037 : Var(Var), VarType(VarType) {}
12423 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(D))
12424 return Var->isStaticDataMember();
H A DTreeTransform.h1272 VarDecl *Var,
1275 Var, Body);
1564 VarDecl *Var = getSema().BuildExceptionDeclaration(nullptr, Declarator, local
1566 if (Var)
1567 getSema().CurContext->addDecl(Var);
1568 return Var;
5960 VarDecl *Var = nullptr; local
5978 Var = getDerived().RebuildObjCExceptionDecl(FromVar, TSInfo, T);
5979 if (!Var)
5989 Var, Bod
1270 RebuildObjCAtCatchStmt(SourceLocation AtLoc, SourceLocation RParenLoc, VarDecl *Var, Stmt *Body) argument
6113 VarDecl *Var = nullptr; local
[all...]
H A DSemaExpr.cpp2800 case Decl::Var:
11610 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var, argument
11615 if (CSI->CaptureMap.count(Var)) {
11620 CaptureType = CSI->getCapture(Var).getCaptureType();
11625 const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var);
11636 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var, argument
11643 diagnoseUncapturableValueReference(S, Loc, Var, DC);
11651 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var, argument
11662 if (IsLambda && !Var->getDeclName()) {
11665 S.Diag(Var
11715 captureInBlock(BlockScopeInfo *BSI, VarDecl *Var, SourceLocation Loc, const bool BuildAndDiagnose, QualType &CaptureType, QualType &DeclRefType, const bool Nested, Sema &S) argument
11806 captureInCapturedRegion(CapturedRegionScopeInfo *RSI, VarDecl *Var, SourceLocation Loc, const bool BuildAndDiagnose, QualType &CaptureType, QualType &DeclRefType, const bool RefersToEnclosingLocal, Sema &S) argument
11851 addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI, VarDecl *Var, QualType FieldType, QualType DeclRefType, SourceLocation Loc, bool RefersToEnclosingLocal) argument
11973 captureInLambda(LambdaScopeInfo *LSI, VarDecl *Var, SourceLocation Loc, const bool BuildAndDiagnose, QualType &CaptureType, QualType &DeclRefType, const bool RefersToEnclosingLocal, const Sema::TryCaptureKind Kind, SourceLocation EllipsisLoc, const bool IsTopScope, Sema &S) argument
12081 tryCaptureVariable(VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind, SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType, QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) argument
12322 tryCaptureVariable(VarDecl *Var, SourceLocation Loc, TryCaptureKind Kind, SourceLocation EllipsisLoc) argument
12331 getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) argument
12350 IsVariableNonDependentAndAConstantExpression(VarDecl *Var, ASTContext &Context) argument
12381 VarDecl *Var = nullptr; local
12408 VarDecl *Var; local
12428 DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc, VarDecl *Var, Expr *E) argument
12539 MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) argument
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1285 VarDecl *Var = ReadDeclAs<VarDecl>(Record, Idx); local
1287 *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc);
2190 if (VarDecl *Var = dyn_cast<VarDecl>(D))
2191 return Var->isFileVarDecl() &&
2192 Var->isThisDeclarationADefinition() == VarDecl::Definition;
H A DASTWriter.cpp5407 VarDecl *Var = local
5409 AddDeclRef(Var, Record);
/external/clang/tools/libclang/
H A DCIndex.cpp3445 const VarDecl *Var = getCursorVariableRef(C).first; local
3446 assert(Var && "Missing variable decl");
3448 return cxstring::createDup(Var->getNameAsString());
4790 case Decl::Var:
/external/clang/lib/AST/
H A DASTContext.cpp1085 ASTContext::getInstantiatedFromStaticDataMember(const VarDecl *Var) { argument
1086 assert(Var->isStaticDataMember() && "Not a static data member");
1087 return getTemplateOrSpecializationInfo(Var)
1092 ASTContext::getTemplateOrSpecializationInfo(const VarDecl *Var) { argument
1094 TemplateOrInstantiation.find(Var);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1407 milliseconds

123