HomeSort by relevance Sort by last modified time
    Searched refs:Scope (Results 1 - 25 of 255) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/include/clang/Sema/
Scope.h 1 //===--- Scope.h - Scope interface ------------------------------*- C++ -*-===//
10 // This file defines the Scope interface.
26 /// Scope - A scope is a transient data structure that is used while parsing the
30 class Scope {
33 /// scope, which defines the sorts of things the scope contains.
35 /// \brief This indicates that the scope corresponds to a function, which
47 /// \brief This is a scope that can contain a declaration. Some scope
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
symbols.h 59 typedef struct Scope_Rec Scope;
68 Scope *next, *prev; // doubly-linked list of all scopes
69 Scope *parent;
70 Scope *funScope; // Points to base scope of enclosing function
71 MemoryPool *pool; // pool used for allocation in this scope
76 // Only used at global scope (level 1):
96 extern Scope *CurrentScope;
97 extern Scope *GlobalScope;
98 extern Scope *ScopeList
    [all...]
symbols.c 58 Scope *ScopeList = NULL;
59 Scope *CurrentScope = NULL;
60 Scope *GlobalScope = NULL;
63 Scope *scope = _scope; local
65 if (scope->next)
66 scope->next->prev = scope->prev;
67 if (scope->prev)
68 scope->prev->next = scope->next
    [all...]
  /external/clang/lib/Sema/
TargetAttributesSema.h 14 class Scope;
22 virtual bool ProcessDeclAttribute(Scope *scope, Decl *D,
Scope.cpp 1 //===- Scope.cpp - Lexical scope information --------------------*- C++ -*-===//
10 // This file implements the Scope class, which is used for recording
11 // information about a lexical scope.
15 #include "clang/Sema/Scope.h"
19 void Scope::Init(Scope *parent, unsigned flags) {
47 // If this scope is a function or contains breaks/continues, remember it.
54 // If this is a prototype scope, record that.
63 bool Scope::containedInPrototypeScope() const
    [all...]
  /external/llvm/lib/ExecutionEngine/
EventListenerCommon.h 28 // Holds the filename of each Scope, so that we can pass a null-terminated
35 const char *getFilename(MDNode *Scope) {
36 std::string &Filename = Filenames[Scope];
38 DIScope DIScope(Scope);
44 const char *getFullPath(MDNode *Scope) {
45 std::string &P = Paths[Scope];
47 DIScope DIScope(Scope);
  /external/llvm/lib/CodeGen/
LexicalScopes.cpp 1 //===- LexicalScopes.cpp - Collecting lexical scope info ------------------===//
12 // This pass collects lexical scope information and maps machine instructions
42 /// initialize - Scan machine function and constuct lexical scope nest.
78 // If scope has not changed then skip this instruction.
90 // current instruction scope does not match scope of first instruction
114 /// findLexicalScope - Find lexical scope, either regular or inlined, for the
117 MDNode *Scope = NULL;
119 DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext());
120 if (!Scope) return NULL
    [all...]
  /external/llvm/lib/IR/
DebugLoc.cpp 48 /// Return both the Scope and the InlinedAt values.
49 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
52 Scope = IA = 0;
61 Scope = Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
69 Scope = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get();
75 MDNode *Scope, MDNode *InlinedAt) {
78 // If no scope is available, this is an unknown location.
79 if (Scope == 0) return Result;
86 LLVMContext &Ctx = Scope->getContext();
90 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeRecordIdxEntry(Scope, 0)
    [all...]
  /libcore/json/src/main/java/org/json/
JSONStringer.java 71 enum Scope {
114 private final List<Scope> stack = new ArrayList<Scope>();
139 return open(Scope.EMPTY_ARRAY, "[");
148 return close(Scope.EMPTY_ARRAY, Scope.NONEMPTY_ARRAY, "]");
158 return open(Scope.EMPTY_OBJECT, "{");
167 return close(Scope.EMPTY_OBJECT, Scope.NONEMPTY_OBJECT, "}");
171 * Enters a new scope by appending any necessary whitespace and the give
    [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/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());
391 EHCleanupScope &Scope) {
989 EHScope &scope = *EHStack.find(i); local
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptControllerQt.cpp 40 v8::Context::Scope scope(v8Context);
ScriptScope.h 49 v8::Context::Scope m_scope;
  /external/v8/test/cctest/
test-lockers.cc 70 v8::Isolate::Scope isolate_scope(isolate_);
72 v8::HandleScope scope; local
73 v8::Context::Scope context_scope(context_);
80 v8::Isolate::Scope isolate_scope(isolate_);
81 v8::Context::Scope context_scope(context_);
82 v8::HandleScope scope; local
102 v8::Isolate::Scope isolate_scope(isolate);
105 v8::Context::Scope context_scope(context);
182 v8::Isolate::Scope isolate_scope(isolate_);
230 v8::Isolate::Scope isolate_scope(isolate)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintJob.java 30 import com.android.tools.lint.detector.api.Scope;
87 EnumSet<Scope> scope = null; local
94 scope = Scope.ALL;
99 scope = EnumSet.of(Scope.MANIFEST);
101 scope = Scope.RESOURCE_FILE_SCOPE;
104 if (scope != null)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRHashMap.h 42 NSInteger Scope;
51 @property (getter=getScope, setter=setScope:) NSInteger Scope;
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRHashMap.h 42 NSInteger Scope;
51 @property (getter=getScope, setter=setScope:) NSInteger Scope;
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRHashMap.h 42 NSInteger Scope;
51 @property (getter=getScope, setter=setScope:) NSInteger Scope;
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
  /external/llvm/include/llvm/
DIBuilder.h 167 /// @param Scope Member scope.
177 createMemberType(DIDescriptor Scope, StringRef Name, DIFile File,
183 /// @param Scope Member scope.
190 DIType createStaticMemberType(DIDescriptor Scope, StringRef Name,
254 /// @param Scope Scope in which this class is defined.
268 DIType createClassType(DIDescriptor Scope, StringRef Name, DIFile File,
276 /// @param Scope Scope in which this struct is defined
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-scope.rb 10 @A = ANTLR3::Scope.new( :a, :b )
11 @B = ANTLR3::Scope.new( 'count = 3' )
12 @C = ANTLR3::Scope.new( 'a', 'b = 0', 'c = {}' )
  /external/webkit/Source/WebKit/chromium/src/
BoundObject.cpp 43 v8::Context::Scope contextScope(context);
56 v8::Context::Scope contextScope(m_context);
71 v8::Context::Scope contextScope(m_context);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRHashMap.h 41 NSInteger Scope;
69 - (id)lookup:(NSString *)s Scope:(int)scope;
71 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
101 @property (getter=getScope, setter=setScope:) NSInteger Scope;
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestCallback.cpp 66 v8::Context::Scope scope(v8Context);
86 v8::Context::Scope scope(v8Context);
113 v8::Context::Scope scope(v8Context);
146 v8::Context::Scope scope(v8Context);
  /external/webkit/Source/WebCore/css/
MediaQueryListListener.cpp 44 v8::Context::Scope scope(context);

Completed in 734 milliseconds

1 2 3 4 5 6 7 8 91011