HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 651 - 675 of 1184) sorted by null

<<21222324252627282930>>

  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
CodeGenTreeWalker.g 339 : ^( 'scope' ID ( ^(AMPERSAND .*) )* ACTION )
526 : ^( 'scope' ( ^(AMPERSAND .*) )* (ACTION)? ( ID )* )
940 atom[GrammarAST scope, GrammarAST label, GrammarAST astSuffix]
970 grammar.checkRuleReference(scope, $r, $rarg, currentRuleName);
972 if ( scope!=null ) {
973 scopeName = scope.getText();
982 if ( scope!=null ) { // scoped rule ref
983 Grammar scopeG = grammar.composite.getGrammar(scope.getText());
984 $code.add("scope", scopeG);
990 $code.add("scope", rdef.grammar)
    [all...]
  /external/v8/src/
debug.cc 389 HandleScope scope; local
736 HandleScope scope(isolate);
815 HandleScope scope(isolate_);
897 HandleScope scope(isolate_);
3366 v8::HandleScope scope; local
    [all...]
ic.cc 143 HandleScope scope; local
283 HandleScope scope(isolate());
292 HandleScope scope(isolate());
1997 HandleScope scope; local
    [all...]
isolate.cc 760 HandleScope scope;
833 HandleScope scope(this);
876 HandleScope scope(this);
898 HandleScope scope; local
965 HandleScope scope; local
1060 HandleScope scope; local
1201 HandleScope scope; local
1212 HandleScope scope; local
1855 HandleScope scope; local
    [all...]
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc 152 int receiver_offset = info->scope()->num_parameters() * kPointerSize;
157 // Open a frame scope to indicate that there is a frame on the stack. The
158 // MANUAL indicates that the scope shouldn't actually generate code to set up
167 int locals_count = info->scope()->num_stack_slots();
192 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
197 if (FLAG_harmony_scoping && info->scope()->is_global_scope()) {
198 __ Push(info->scope()->GetScopeInfo());
211 int num_parameters = info->scope()->num_parameters();
213 Variable* var = scope()->parameter(i);
230 Variable* arguments = scope()->arguments()
    [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 145 int receiver_offset = (info->scope()->num_parameters() + 1) * kPointerSize;
155 // Open a frame scope to indicate that there is a frame on the stack. The
156 // MANUAL indicates that the scope shouldn't actually generate code to set up
165 int locals_count = info->scope()->num_stack_slots();
181 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
186 if (FLAG_harmony_scoping && info->scope()->is_global_scope()) {
187 __ Push(info->scope()->GetScopeInfo());
201 int num_parameters = info->scope()->num_parameters();
203 Variable* var = scope()->parameter(i);
222 Variable* arguments = scope()->arguments()
    [all...]
lithium-codegen-ia32.cc 82 // Open a frame scope to indicate that there is a frame on the stack. The
83 // MANUAL indicates that the scope shouldn't actually generate code to set up
135 CpuFeatureScope scope(masm(), SSE2);
152 CpuFeatureScope scope(masm(), SSE2);
187 int receiver_offset = (scope()->num_parameters() + 1) * kPointerSize;
206 __ mov(ecx, Immediate(scope()->num_parameters() + 2));
301 int num_parameters = scope()->num_parameters();
303 Variable* var = scope()->parameter(i);
355 __ mov(ecx, Immediate(scope()->num_parameters() +
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 162 int receiver_offset = info->scope()->num_parameters() * kPointerSize;
168 // Open a frame scope to indicate that there is a frame on the stack. The
169 // MANUAL indicates that the scope shouldn't actually generate code to set up
178 int locals_count = info->scope()->num_stack_slots();
204 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
209 if (FLAG_harmony_scoping && info->scope()->is_global_scope()) {
210 __ Push(info->scope()->GetScopeInfo());
223 int num_parameters = info->scope()->num_parameters();
225 Variable* var = scope()->parameter(i);
242 Variable* arguments = scope()->arguments()
    [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc 143 StackArgumentsAccessor args(rsp, info->scope()->num_parameters());
149 // Open a frame scope to indicate that there is a frame on the stack. The
150 // MANUAL indicates that the scope shouldn't actually generate code to set up
159 int locals_count = info->scope()->num_stack_slots();
175 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
180 if (FLAG_harmony_scoping && info->scope()->is_global_scope()) {
181 __ Push(info->scope()->GetScopeInfo());
195 int num_parameters = info->scope()->num_parameters();
197 Variable* var = scope()->parameter(i);
214 Variable* arguments = scope()->arguments()
    [all...]
  /external/chromium_org/remoting/webapp/
client_plugin_async.js 46 * @param {string} scope OAuth scope to request the token for.
49 tokenUrl, hostPublicKey, scope) {};
299 typeof message.data['scope'] != 'string') {
306 var scope = /** @type {string} */ message.data['scope'];
307 this.fetchThirdPartyTokenHandler(tokenUrl, hostPublicKey, scope);
  /external/v8/test/cctest/
test-parsing.cc 178 v8::Context::Scope context_scope(context);
548 v8::Context::Scope context_scope(context);
817 // of a scope. We check the scope positions of exactly one scope
818 // nested in the global scope of a program. 'inner source' is the
820 // to the nested scope. 'outer_prefix' and 'outer_suffix' are
821 // parts of the source that belong to the global scope.
1027 i::Scope* scope = function->scope(); local
    [all...]
  /external/chromium_org/v8/src/
ic.cc 155 HandleScope scope(isolate());
416 HandleScope scope(isolate());
425 HandleScope scope(isolate());
    [all...]
liveedit.cc 210 // place one in class scope).
718 HandleScope scope(isolate());
801 HandleScope scope(isolate());
835 HandleScope scope(isolate());
847 HandleScope scope(isolate());
866 // Saves full information about a function: its code, its scope info
868 void FunctionInfo(Handle<SharedFunctionInfo> shared, Scope* scope,
881 Handle<Object> scope_info_list(SerializeFunctionScope(scope, zone),
891 Object* SerializeFunctionScope(Scope* scope, Zone* zone)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptController.cpp 188 v8::Context::Scope scope(context);
330 v8::Context::Scope scope(v8Context);
440 v8::Context::Scope scope(v8Context);
477 v8::Context::Scope scope(v8Context);
525 v8::HandleScope scope(m_isolate);
681 v8::Context::Scope contextScope(context)
    [all...]
  /external/chromium_org/v8/test/cctest/
test-assembler-x64.cc 482 v8::HandleScope scope(CcTest::isolate());
495 v8::HandleScope scope(CcTest::isolate());
563 v8::HandleScope scope(CcTest::isolate());
651 v8::HandleScope scope(CcTest::isolate());
684 HandleScope scope(isolate);
  /external/v8/src/ia32/
deoptimizer-ia32.cc 50 HandleScope scope(isolate);
121 HandleScope scope(isolate);
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 189 v8::HandleScope scope;
353 v8::HandleScope scope; local
355 v8::Context::Scope function_scope(v8_context_);
404 v8::HandleScope scope; local
448 v8::Context::Scope ctx(v8_context_);
  /external/chromium/third_party/libjingle/source/talk/base/
win32socketserver.cc 749 CritScope scope(&cs_);
763 CritScope scope(&cs_);
776 CritScope scope(&cs_);
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 202 v8::HandleScope scope;
373 v8::HandleScope scope; local
375 v8::Context::Scope function_scope(v8_context_);
421 v8::HandleScope scope; local
465 v8::Context::Scope ctx(v8_context_);
  /external/chromium_org/chrome/browser/extensions/api/commands/
command_service.cc 171 CommandScope scope,
198 if (scope != ANY_SCOPE && ((scope == GLOBAL) != saved_command.global()))
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleEngine.cpp 581 void StyleEngine::markTreeScopeDirty(TreeScope& scope)
583 if (scope == m_document) {
588 m_dirtyTreeScopes.add(&scope);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Frame.cpp 164 bool Frame::inScope(TreeScope* scope) const
166 ASSERT(scope);
173 return owner->treeScope() == scope;
  /external/chromium_org/third_party/codesighs/
codesighs.c 124 static Switch gMatchScope = {"--match-scope", "-msco", 1, NULL, "Only consider scopes that have a substring match." DESC_NEWLINE "Multiple uses allowed to specify a range of scopes," DESC_NEWLINE "though PUBLIC, STATIC, and UNDEF are your only choices."};
241 char scope[0x10]; local
255 ** size class scope module segment object symbol ....
265 scope,
337 ** Match scope.
345 if(NULL != strstr(scope, inOptions->mMatchScopes[loop]))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32socketserver.cc 805 CritScope scope(&cs_);
819 CritScope scope(&cs_);
832 CritScope scope(&cs_);
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateActive.cpp 74 SkASSERT(fApply.scope == apply->scope);
77 // SkASSERT(fApply.scope == test->fTarget || fApply.scope->contains(test->fTarget));
194 SkDrawable* drawable = fApply.scope;
466 // SkASSERT(fApply.scope == test->fTarget || fApply.scope->contains(test->fTarget));

Completed in 1834 milliseconds

<<21222324252627282930>>