HomeSort by relevance Sort by last modified time
    Searched full:blockscope (Results 1 - 14 of 14) sorted by null

  /prebuilt/common/ecj/
ecj.jar 
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 148 /// BlockScope - This tracks the codesize of parent blocks.
149 SmallVector<Block, 8> BlockScope;
197 BlockScope = RHS.BlockScope;
198 for (unsigned S = 0, e = static_cast<unsigned>(BlockScope.size());
200 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
215 for (unsigned S = 0, e = static_cast<unsigned>(BlockScope.size());
217 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
222 BlockScope.clear();
391 // Save the current block's state on BlockScope
    [all...]
BitstreamWriter.h 51 /// BlockScope - This tracks the current blocks that we have entered.
52 std::vector<Block> BlockScope;
68 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
212 BlockScope.push_back(Block(OldCodeSize, BlockSizeWordLoc/4));
213 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
227 assert(!BlockScope.empty() && "Block scope imbalance!");
234 const Block &B = BlockScope.back();
250 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
251 BlockScope.pop_back();
  /external/clang/lib/Sema/
Scope.cpp 47 if (flags & BlockScope) BlockParent = this;
SemaExprObjC.cpp 260 BlockScopeInfo *blockScope = cast<BlockScopeInfo>(FunctionScopes[idx]);
261 unsigned &captureIndex = blockScope->CaptureMap[self];
265 blockScope->Captures.push_back(
267 captureIndex = blockScope->Captures.size(); // +1
    [all...]
Sema.cpp 743 void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) {
745 BlockScope, Block));
    [all...]
TreeTransform.h     [all...]
SemaExpr.cpp     [all...]
SemaExprCXX.cpp 507 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope |
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 140 BlockScopeInfo(Diagnostic &Diag, Scope *BlockScope, BlockDecl *Block)
141 : FunctionScopeInfo(Diag), TheDecl(Block), TheScope(BlockScope),
Scope.h 57 /// BlockScope - This is a scope that corresponds to a block/closure object.
61 BlockScope = 0x40,
128 /// BlockScope if this scope is not one, or null if there is none.
170 bool isBlockScope() const { return Flags & BlockScope; }
302 Scope::BlockScope | Scope::TemplateParamScope |
Sema.h 743 void PushBlockScope(Scope *BlockScope, BlockDecl *Block);
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
ParseDecl.cpp     [all...]

Completed in 448 milliseconds