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

1 2 3 4

  /external/chromium_org/v8/test/mjsunit/regress/
regress-2073.js 38 function Scope() {
48 Scope.prototype = {
81 function inc(scope) {
82 scope.counter = scope.counter + 1;
85 var $root = new Scope();
  /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/chromium_org/gin/
runner.cc 46 v8::Isolate::Scope isolate_scope(isolate);
54 v8::Context::Scope scope(context);
93 Runner::Scope::Scope(Runner* runner)
99 Runner::Scope::~Scope() {
runner.h 43 // context by creating an instance of Runner::Scope on the stack.
62 class GIN_EXPORT Scope {
64 explicit Scope(Runner* runner);
65 ~Scope();
68 v8::Isolate::Scope isolate_scope_;
70 v8::Context::Scope scope_;
72 DISALLOW_COPY_AND_ASSIGN(Scope);
76 friend class Scope;
  /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/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMRequestState.h 53 class Scope {
55 explicit Scope(DOMRequestState& state)
62 v8::Context::Scope m_contextScope;
  /external/chromium_org/tools/gn/
scope.cc 5 #include "tools/gn/scope.h"
13 // FLags set in the mode_flags_ of a scope. If a bit is set, it applies
20 Scope::Scope(const Settings* settings)
27 Scope::Scope(Scope* parent)
34 Scope::Scope(const Scope* parent
    [all...]
scope.h 25 // Scope for the script execution.
27 // Scopes are nested. Writing goes into the toplevel scope, reading checks
31 // A containing scope can be const or non-const. The const containing scope is
33 // many invocations. A const containing scope, however, prevents us from
35 // variables. So you should use a non-const containing scope whenever possible.
36 class Scope {
45 ProgrammaticProvider(Scope* scope) : scope_(scope) {
    [all...]
  /external/clang/lib/Sema/
AttributeList.cpp 135 StringRef Scope = ScopeName ? ScopeName->getName() : "";
JumpDiagnostics.cpp 1 //===--- JumpDiagnostics.cpp - Protected scope jump analysis ------*- C++ -*-=//
11 // jumps that enter a protected scope in an invalid way.
36 /// scopes that are introduced by VLAs and other things that scope jumps like
37 /// gotos. This scope tree has nothing to do with the source scope tree,
41 /// ParentScope - The index in ScopeMap of the parent scope. This is 0 for
42 /// the parent scope is the function body.
45 /// InDiag - The note to emit if there is a jump into this scope.
49 /// of this scope. Direct jumps always clean up their current scope
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.h 44 // of scope.
47 class Scope {
50 std::list<clang::VarDecl*> mRSO; // Declared RS objects in this scope
53 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) {
76 std::stack<Scope*> mScopeStack;
84 inline Scope *getCurrentScope() {
  /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...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTestCommon.h 61 llvm::MDNode* Scope;
84 Scope = DebugBuilder->createFile(getFilename(), ".");
  /external/chromium_org/media/webm/
webm_content_encodings.h 23 enum Scope {
58 Scope scope() const { return scope_; } function in class:media::ContentEncoding
59 void set_scope(Scope scope) { scope_ = scope; }
77 Scope scope_;
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 100 MDNode *Scope, *IA;
101 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
102 if (Scope) EnumerateMetadata(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...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 102 MDNode *Scope, *IA;
103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
104 if (Scope) EnumerateMetadata(Scope);
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 102 MDNode *Scope, *IA;
103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
104 if (Scope) EnumerateMetadata(Scope);
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 102 MDNode *Scope, *IA;
103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
104 if (Scope) EnumerateMetadata(Scope);
  /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/
preparser.h 444 class Scope {
446 Scope(Scope** variable, ScopeType type)
457 ~Scope() { *variable_ = prev_; }
477 Scope** const variable_;
478 Scope* const prev_;
489 Scope top_scope(&scope_, kTopLevelScope);
648 Scope* scope_;
  /external/clang/include/clang/Analysis/
AnalysisContext.h 208 enum ContextKind { StackFrame, Scope, Block };
320 : LocationContext(Scope, ctx, parent), Enter(s) {}
329 ProfileCommon(ID, Scope, ctx, parent, s);
333 return Ctx->getKind() == Scope;
  /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...]

Completed in 654 milliseconds

1 2 3 4