HomeSort by relevance Sort by last modified time
    Searched defs:Scopes (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 95 scpI = info.Scopes.begin(),
96 scpE = info.Scopes.end(); scpI != scpE; ++scpI) {
119 scpI = info.Scopes.begin(),
120 scpE = info.Scopes.end(); scpI != scpE; ++scpI) {
150 scpI = info.Scopes.begin(),
151 scpE = info.Scopes.end(); scpI != scpE; ++scpI) {
164 SmallVector<PoolScope, 4> Scopes;
179 Scopes.push_back(PoolScope());
180 Scopes.back().PoolVar = VD;
181 Scopes.back().CompoundParent = S
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 27 /// into VLA and other protected scopes. For example, this rejects:
36 /// scopes that are introduced by VLAs and other things that scope jumps like
38 /// because you can have multiple VLA scopes per compound statement, and most
39 /// compound statements don't introduce any scopes.
61 SmallVector<GotoScope, 48> Scopes;
91 Scopes.push_back(GotoScope(~0U, ~0U, ~0U, SourceLocation()));
104 /// two scopes.
107 // Inner scopes are created after outer scopes and therefore have
110 assert(Scopes[B].ParentScope < B)
    [all...]
  /external/llvm/lib/CodeGen/
MachineCSE.cpp 559 SmallVector<MachineDomTreeNode*, 32> Scopes;
570 Scopes.push_back(Node);
583 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) {
584 MachineDomTreeNode *Node = Scopes[i];
MachineLICM.cpp 691 SmallVector<MachineDomTreeNode*, 32> Scopes;
713 Scopes.push_back(Node);
734 if (Scopes.size() != 0) {
746 for (unsigned i = 0, e = Scopes.size(); i != e; ++i) {
747 MachineDomTreeNode *Node = Scopes[i];
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 285 // doing a depth first tranversal of the tree. This includes scopes for
297 Scopes(availableValues, availableLoads, availableCalls),
324 NodeScope Scopes;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 479 const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren();
480 for (unsigned j = 0, M = Scopes.size(); j < M; ++j)
481 if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j]))
    [all...]

Completed in 147 milliseconds