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

  /prebuilt/common/ecj/
ecj.jar 
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 151 /// BlockScope - This tracks the codesize of parent blocks.
152 SmallVector<Block, 8> BlockScope;
198 BlockScope = RHS.BlockScope;
199 for (unsigned S = 0, e = static_cast<unsigned>(BlockScope.size());
201 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
216 for (unsigned S = 0, e = static_cast<unsigned>(BlockScope.size());
218 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
223 BlockScope.clear();
414 // Save the current block's state on BlockScope
    [all...]
BitstreamWriter.h 52 /// BlockScope - This tracks the current blocks that we have entered.
53 std::vector<Block> BlockScope;
101 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
226 BlockScope.push_back(Block(OldCodeSize, BlockSizeWordIndex));
227 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
241 assert(!BlockScope.empty() && "Block scope imbalance!");
248 const Block &B = BlockScope.back();
264 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
265 BlockScope.pop_back();
  /external/clang/include/clang/Sema/
Scope.h 57 /// BlockScope - This is a scope that corresponds to a block/closure object.
61 BlockScope = 0x40,
119 /// BlockScope if this scope is not one, or null if there is none.
161 bool isBlockScope() const { return Flags & BlockScope; }
284 Scope::BlockScope | Scope::TemplateParamScope |
ScopeInfo.h 308 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block)
310 TheScope(BlockScope)
Sema.h 856 void PushBlockScope(Scope *BlockScope, BlockDecl *Block);
    [all...]
  /external/clang/lib/Sema/
Scope.cpp 51 if (flags & BlockScope) BlockParent = this;
Sema.cpp 832 void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) {
834 BlockScope, Block));
    [all...]
TreeTransform.h     [all...]
SemaExprCXX.cpp 529 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope |
    [all...]
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
ParseExprCXX.cpp 877 // FIXME: Rename BlockScope -> ClosureScope if we decide to continue using
879 unsigned ScopeFlags = Scope::BlockScope | Scope::FnScope | Scope::DeclScope;
    [all...]
ParseDecl.cpp     [all...]

Completed in 623 milliseconds