HomeSort by: relevance | last modified time | path
    Searched refs:capturesVariable (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
LambdaCapture.h 88 bool capturesVariable() const {
105 assert(capturesVariable() && "No variable available for capture");
Stmt.h 3512 bool capturesVariable() const { return getCaptureKind() == VCK_ByRef; }
3598 bool capturesVariable(const VarDecl *Var) const;
Decl.h 4275 bool capturesVariable(const VarDecl *var) const;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
UncountedLambdaCapturesChecker.cpp 59 if (C.capturesVariable()) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 515 if (!C.capturesVariable())
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
UninitializedObjectChecker.cpp 591 if (It->capturesVariable())
  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 1291 assert((capturesVariable() || capturesVariableByCopy()) &&
1411 bool CapturedStmt::capturesVariable(const VarDecl *Var) const {
1413 if (!I.capturesVariable() && !I.capturesVariableByCopy())
ExprCXX.cpp 1208 return (C->capturesVariable() && C->getCapturedVar()->isInitCapture() &&
Decl.cpp 4715 bool BlockDecl::capturesVariable(const VarDecl *variable) const {
DeclCXX.cpp 1560 else if (C->capturesVariable())
ASTImporter.cpp 955 if (From.capturesVariable()) {
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
AnalysisDeclContext.cpp 169 if (!LC.capturesVariable())
CalledOnceCheck.cpp 1113 return Block->capturesVariable(Parameter);
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexBody.cpp 397 if (C->capturesVariable() && IndexCtx.shouldIndexFunctionLocalSymbols())
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeGPU.cpp 297 if (C.capturesVariable() && !C.capturesVariableByCopy()) {
390 if (C.capturesVariable() && !C.capturesVariableByCopy()) {
402 if (C.capturesVariable()) {
4337 if (!C.capturesVariable())
4366 if (!CS->capturesVariable(VD))
CGStmtOpenMP.cpp 66 cast<BlockDecl>(CGF.CurCodeDecl)->capturesVariable(VD));
84 if (C.capturesVariable() || C.capturesVariableByCopy()) {
203 cast<BlockDecl>(CGF.CurCodeDecl)->capturesVariable(VD));
256 if (C.capturesVariable() || C.capturesVariableByCopy()) {
361 assert(CurCap->capturesVariable() && "Expected capture by reference.");
468 if (I->capturesVariable() || I->capturesVariableByCopy()) {
557 } else if (I->capturesVariable()) {
CGOpenMPRuntime.cpp 360 if (!C.capturesVariable() && !C.capturesVariableByCopy())
8213 assert(Cap.capturesVariable() && "Expected capture by reference only!");
8814 if (!LC.capturesVariable())
8901 (Cap->capturesVariable() ? OMP_MAP_TO : OMP_MAP_LITERAL) |
9147 assert(CI.capturesVariable() && "Expected captured reference.");
10262 if (CI->capturesVariable())
12144 if (Cap.capturesVariable() || Cap.capturesVariableByCopy())
12538 if (!CS->capturesVariable(VD) || IgnoredDecls.count(VD) > 0)
CodeGenFunction.h 394 else if (I->capturesVariable())
CGDebugInfo.cpp 1442 if (C.capturesVariable()) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 7368 if (Cap.capturesVariable())
7376 if (Cap.capturesVariable())
7519 if (!Path[I].Capture->capturesVariable())
7784 if (!Elem.Capture->capturesVariable())
SemaOpenMP.cpp 3484 if (VD->hasLocalStorage() && CS && !CS->capturesVariable(VD) &&
3499 if (VD->hasGlobalStorage() && CS && !CS->capturesVariable(VD) &&
3825 if (!Cap.capturesVariable() && !Cap.capturesVariableByCopy())
TreeTransform.h 12835 assert(C->capturesVariable() && "unexpected kind of lambda capture");
12961 assert(C->capturesVariable() && "unexpected kind of lambda capture");
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 4591 if (Capture.capturesVariable()) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 5594 Capture.capturesVariable() ? Capture.getCapturedVar() : nullptr;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 3317 if (!C->capturesVariable())

Completed in 132 milliseconds

1 2