Searched refs:BlockScope (Results 1 – 12 of 12) sorted by relevance
/external/llvm/lib/Bitcode/Reader/ |
D | BitstreamReader.cpp | 33 BlockScope = RHS.BlockScope; in operator =() 34 for (size_t S = 0, e = BlockScope.size(); S != e; ++S) { in operator =() 35 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; in operator =() 48 for (size_t S = 0, e = BlockScope.size(); S != e; ++S) { in freeState() 49 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; in freeState() 53 BlockScope.clear(); in freeState() 60 BlockScope.push_back(Block(CurCodeSize)); in EnterSubBlock() 61 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs); in EnterSubBlock()
|
/external/llvm/include/llvm/Bitcode/ |
D | BitstreamWriter.h | 53 std::vector<Block> BlockScope; variable 101 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance"); in ~BitstreamWriter() 228 BlockScope.push_back(Block(OldCodeSize, BlockSizeWordIndex)); in EnterSubblock() 229 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs); in EnterSubblock() 243 assert(!BlockScope.empty() && "Block scope imbalance!"); in ExitBlock() 250 const Block &B = BlockScope.back(); in ExitBlock() 266 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs); in ExitBlock() 267 BlockScope.pop_back(); in ExitBlock()
|
D | BitstreamReader.h | 200 SmallVector<Block, 8> BlockScope; variable 498 if (BlockScope.empty()) return true; in ReadBlockEnd() 511 CurCodeSize = BlockScope.back().PrevCodeSize; in popBlockScope() 518 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs); in popBlockScope() 519 BlockScope.pop_back(); in popBlockScope()
|
/external/clang/include/clang/Sema/ |
D | Scope.h | 61 BlockScope = 0x40, enumerator 170 bool isBlockScope() const { return Flags & BlockScope; } in isBlockScope() 293 Scope::BlockScope | Scope::TemplateParamScope | in isSwitchScope()
|
D | ScopeInfo.h | 481 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block) in BlockScopeInfo() argument 483 TheScope(BlockScope) in BlockScopeInfo()
|
D | Sema.h | 905 void PushBlockScope(Scope *BlockScope, BlockDecl *Block);
|
/external/clang/lib/Sema/ |
D | Scope.cpp | 51 if (flags & BlockScope) BlockParent = this; in Init()
|
D | Sema.cpp | 1006 void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) { in PushBlockScope() argument 1008 BlockScope, Block)); in PushBlockScope()
|
D | SemaExprCXX.cpp | 521 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope | in ActOnCXXThrow()
|
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 2399 ParseScope BlockScope(this, Scope::BlockScope | Scope::FnScope | in ParseBlockLiteralExpression() local 2479 BlockScope.Exit(); in ParseBlockLiteralExpression()
|
D | ParseExprCXX.cpp | 933 unsigned ScopeFlags = Scope::BlockScope | Scope::FnScope | Scope::DeclScope; in ParseLambdaExpressionAfterIntroducer()
|
D | ParseDecl.cpp | 2245 Scope::BlockScope | in ParseDeclarationSpecifiers()
|