HomeSort by relevance Sort by last modified time
    Searched defs:Scope (Results 26 - 50 of 76) sorted by null

12 3 4

  /external/llvm/lib/CodeGen/
MachineCSE.cpp 422 ScopeType *Scope = new ScopeType(VNT);
423 ScopeMap[MBB] = Scope;
597 /// ExitScopeIfDone - Destroy scope for the MBB that corresponds to the given
606 // Pop scope.
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 321 // scoped hash tables so that a new scope gets pushed on. These are RAII so
322 // that the scope gets popped when the NodeScope is destroyed.
328 Scope(*availableValues),
336 ScopedHTType::ScopeTy Scope;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 129 = Scope
131 Scope is used to represent instances of ANTLR's various attribute scopes.
135 the scope declaration.
137 Block = Scope.new( "name", "depth = 0", "variables = {}" )
144 class Scope < ::Struct
259 # scope for a recognizer
314 def Scope( *declarations, &body )
315 Scope.new( *declarations, &body )
    [all...]
  /external/chromium_org/third_party/handlebar/
handlebar.py 176 def Scope(self, context, fn, *args):
552 render_state.contexts.Scope({self._bind_to.name: item},
558 render_state.contexts.Scope({self._bind_to.name: value},
561 render_state.contexts.Scope(value, self._content.Render, render_state)
581 render_state.contexts.Scope({self._bind_to.name: value},
665 render_state.contexts.Scope(self._args, self._partial.Render, render_state)
682 render_state.contexts.Scope(
    [all...]
  /external/chromium_org/third_party/jinja2/
nodes.py 887 class Scope(Stmt):
888 """An artificial scope."""
  /external/chromium_org/v8/src/
scopes.cc 66 Scope* scope,
78 p->value = new(zone()) Variable(scope,
103 // Implementation of Scope
105 Scope::Scope(Scope* outer_scope, ScopeType scope_type, Zone* zone)
120 // The outermost scope must be a global scope.
126 Scope::Scope(Scope* inner_scope
281 Scope* scope = info->function()->scope(); local
737 Scope* scope = this; local
746 Scope* scope = this; local
768 Scope* scope = inner_scopes_[i]; local
    [all...]
scopes.h 47 Variable* Declare(Scope* scope,
64 // The dynamic scope part holds hash maps for the variables that will
66 // are allocated on-demand from Scope::NonLocal to avoid wasting memory
95 class Scope: public ZoneObject {
100 Scope(Scope* outer_scope, ScopeType scope_type, Zone* zone);
102 // Compute top scope and allocate variables. For lazy compilation the top
103 // scope only contains the single lazily compiled function, so this
107 static Scope* DeserializeScopeChain(Context* context, Scope* global_scope
    [all...]
isolate.h 34 #include "assert-scope.h"
683 // Scope currently can only be used for regular exceptions, not
    [all...]
preparser.h 245 Scope top_scope(&scope_, kTopLevelScope);
519 class Scope {
521 Scope(Scope** variable, ScopeType type)
533 ~Scope() { *variable_ = prev_; }
554 explicit InsideWith(Scope* scope) : scope_(scope) {
555 scope->with_nesting_count_++;
561 Scope* scope_
    [all...]
heap.h 34 #include "assert-scope.h"
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 36 #include "clang/Sema/Scope.h"
63 void Sema::ActOnTranslationUnitScope(Scope *S) {
186 // Tell the SemaConsumer to forget about us; we're going out of scope.
540 /// translation unit when EOF is reached and all but the top-level scope is
655 // scope without an initializer, and without a storage-class
661 // translation unit contains a file scope declaration of that
    [all...]
  /external/v8/src/
scopes.cc 65 Scope* scope,
76 p->value = new Variable(scope,
100 // Implementation of Scope
102 Scope::Scope(Scope* outer_scope, ScopeType type)
116 // eval scopes (by walking the stack and reading the scope info).
123 Scope::Scope(Scope* inner_scope
252 Scope* scope = info->function()->scope(); local
683 Scope* scope = this; local
705 Scope* scope = inner_scopes_[i]; local
    [all...]
scopes.h 47 Variable* Declare(Scope* scope,
59 // The dynamic scope part holds hash maps for the variables that will
61 // are allocated on-demand from Scope::NonLocal to avoid wasting memory
85 class Scope: public ZoneObject {
90 Scope(Scope* outer_scope, ScopeType type);
92 // Compute top scope and allocate variables. For lazy compilation the top
93 // scope only contains the single lazily compiled function, so this
97 static Scope* DeserializeScopeChain(Context* context, Scope* global_scope)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositeEditCommand.cpp 81 class Scope {
83 Scope() { ++s_nestingCounter; }
84 ~Scope() { --s_nestingCounter; }
86 friend class Scope;
218 ReentrancyGuard::Scope reentrancyGuardScope;
    [all...]
  /external/v8/src/mips/
assembler-mips.h 406 // Supported features must be enabled by a Scope before use.
436 // Enable a specified feature within a scope.
437 class Scope BASE_EMBEDDED {
441 explicit Scope(CpuFeature f) {
453 ~Scope() {
466 explicit Scope(CpuFeature f) {}
886 // This blocking scope is not nestable.
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 14 // control transfers out of a particular scope. This can be
95 /// Push an entry of the given size onto this protected-scope stack.
161 EHCleanupScope *Scope =
174 return Scope->getCleanupBuffer();
221 EHCatchScope *scope = local
224 return scope;
378 EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.begin());
380 // As long as Old strictly encloses the scope's enclosing normal
384 Old.strictlyEncloses(Scope.getEnclosingNormalCleanup());
418 EHCleanupScope &Scope) {
1020 EHScope &scope = *EHStack.find(i); local
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcher.h 48 Scope, // Push a checking scope.
190 : Matcher(Scope), Children(children, children+numchildren) {
220 return N->getKind() == Scope;
470 /// then the match fails. This is semantically equivalent to a Scope node where
524 /// then the match fails. This is semantically equivalent to a Scope node where
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 137 default: llvm_unreachable("Unknown synchronization scope");
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 145 llvm_unreachable("Invalid synch scope");
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandlerTest.java 52 import com.android.tools.lint.detector.api.Scope;
    [all...]
  /external/v8/src/arm/
assembler-arm.h 502 // Supported features must be enabled by a Scope before use.
531 // Enable a specified feature within a scope.
532 class Scope BASE_EMBEDDED {
536 explicit Scope(CpuFeature f) {
548 ~Scope() {
561 explicit Scope(CpuFeature f) {}
    [all...]
  /external/v8/include/
v8.h 261 * handle scope are destroyed when the handle scope is destroyed. Hence it
299 * An object reference that is independent of any handle scope. Where
424 * After a handle scope has been created, all local handles will be
425 * allocated within that handle scope until either the handle scope is
426 * deleted or another handle scope is created. If there is already a
427 * handle scope and a new one is created, all allocations will take
428 * place in the new handle scope until it is deleted. After that,
429 * new handles will again be allocated in the original handle scope
    [all...]

Completed in 926 milliseconds

12 3 4