HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 301 - 325 of 1418) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/test/webkit/fast/js/kde/
scope.js 29 f = function(a) { return a*x; } // remember scope chain
53 eval("var g;") //Change the scope of g half-ways through the loop
58 shouldBe("g", "'foo'"); //Before the eval, g was in outer scope, but not after!
  /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/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTTreeParser.stg 277 ruleRef(rule,label,elementIndex,args,scope) ::= <<
290 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
298 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= <<
309 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
316 ruleRefTrack(rule,label,elementIndex,args,scope) ::= <<
323 ruleRefTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <<
330 ruleRefRuleRootTrack(rule,label,elementIndex,args,scope) ::= <<
337 ruleRefRuleRootTrackAndListLabel(rule,label,elementIndex,args,scope) ::= <<
346 createRewriteNodeFromElement(token,terminalOptions,scope) ::= <<
  /external/chromium_org/chrome/browser/extensions/api/preference/
preference_api.h 63 ExtensionPrefsScope scope,
69 ExtensionPrefsScope scope);
  /external/chromium_org/chrome/browser/sync/
profile_sync_auth_provider.cc 74 const std::string& scope)
79 oauth2_scope_.insert(scope);
  /external/chromium_org/content/browser/service_worker/
service_worker_storage.cc 152 const GURL& scope,
156 weak_factory_.GetWeakPtr(), scope, callback))) {
166 if (!ContainsKey(registered_origins_, scope.GetOrigin())) {
169 FindInstallingRegistrationForPattern(scope);
184 scope,
186 weak_factory_.GetWeakPtr(), scope, callback)));
275 data.scope = registration->pattern();
520 const GURL& scope,
532 FindInstallingRegistrationForPattern(scope);
587 info.pattern = it->scope;
    [all...]
  /external/chromium_org/extensions/browser/
extension_pref_value_map.cc 52 ExtensionPrefsScope scope,
54 PrefValueMap* prefs = GetExtensionPrefValueMap(ext_id, scope);
63 ExtensionPrefsScope scope) {
64 PrefValueMap* prefs = GetExtensionPrefValueMap(ext_id, scope);
182 ExtensionPrefsScope scope) {
185 switch (scope) {
201 ExtensionPrefsScope scope) const {
204 switch (scope) {
  /external/chromium_org/gin/modules/
module_registry_unittest.cc 24 scope(runner.get()) {
30 Runner::Scope scope; member in struct:gin::__anon12423::TestHelper
64 v8::Isolate::Scope isolate_scope(instance_->isolate());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScheduledAction.cpp 90 ScriptState::Scope scope(m_scriptState.get());
107 ScriptState::Scope scope(m_scriptState.get());
ScriptState.cpp 68 v8::HandleScope scope(m_isolate);
79 v8::HandleScope scope(m_isolate);
V8DOMWrapper.cpp 73 V8WrapperInstantiationScope scope(creationContext, isolate);
75 V8PerContextData* perContextData = V8PerContextData::from(scope.context());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp 79 ScriptState::Scope scope(inspectedScriptState);
106 ScriptState::Scope scope(scriptState);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLStyleElement.cpp 92 if (ShadowRoot* scope = containingShadowRoot())
93 scope->registerScopedHTMLStyleChild();
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 468 Node* FocusController::findFocusableNodeAcrossFocusScope(FocusType type, FocusNavigationScope scope, Node* currentNode)
474 found = foundInInnerFocusScope ? foundInInnerFocusScope : findFocusableNodeRecursively(type, scope, currentNode);
476 found = findFocusableNodeRecursively(type, scope, currentNode);
481 Node* owner = scope.owner();
484 scope = FocusNavigationScope::focusNavigationScopeOf(owner);
489 found = findFocusableNodeRecursively(type, scope, owner);
495 Node* FocusController::findFocusableNodeRecursively(FocusType type, FocusNavigationScope scope, Node* start)
498 Node* found = findFocusableNode(type, scope, start);
505 return foundInInnerFocusScope ? foundInInnerFocusScope : findFocusableNodeRecursively(type, scope, found);
514 return foundInInnerFocusScope ? foundInInnerFocusScope :findFocusableNodeRecursively(type, scope, found)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.h 78 IDBTransaction* transaction(ExecutionContext* context, PassRefPtrWillBeRawPtr<DOMStringList> scope, const String& mode, ExceptionState& exceptionState) { return transaction(context, *scope, mode, exceptionState); }
  /external/chromium_org/third_party/WebKit/Source/web/
WebRange.cpp 113 ContainerNode* scope = selectionRoot ? selectionRoot : webFrame->document()->documentElement(); local
114 return PlainTextRange(start, start + length).createRange(*scope);
  /external/chromium_org/tools/gn/
action_target_generator.cc 11 #include "tools/gn/scope.h"
33 Scope* scope,
37 : TargetGenerator(target, scope, function_call, err),
filesystem_utils.h 190 SourceDir GetCurrentOutputDir(const Scope* scope);
191 SourceDir GetCurrentGenDir(const Scope* scope);
function_get_path_info_unittest.cc 14 setup_.scope()->set_source_dir(SourceDir("//src/foo/"));
26 Value result = functions::RunGetPathInfo(setup_.scope(), &function,
value.h 17 class Scope;
28 SCOPE,
37 // Values "shouldn't" have null scopes when type == Scope, so be sure to
39 // use-cases for creating values and immediately setting the scope on it. So
40 // you can pass a null scope here if you promise to set it before any other
41 // code gets it (code will generally assume the scope is not null).
42 Value(const ParseNode* origin, scoped_ptr<Scope> scope);
98 Scope* scope_value() {
99 DCHECK(type_ == SCOPE);
    [all...]
  /external/chromium_org/v8/src/
variables.h 44 // the context object on the heap, starting at 0. scope() is the
45 // corresponding scope.
54 Variable(Scope* scope,
68 // in an outer scope about which we don't know anything (it may not
69 // be the global scope). scope() is NULL in that case. Currently the
70 // scope is only used to follow the context chain length.
71 Scope* scope() const { return scope_; function in class:v8::internal::Variable
    [all...]
  /external/chromium_org/v8/test/cctest/
test-heap.cc 265 // Allocate an object. Unrooted after leaving the scope.
310 HandleScope scope(isolate);
337 v8::HandleScope scope(CcTest::isolate());
357 HandleScope scope(isolate);
412 HandleScope scope(isolate);
454 HandleScope scope(isolate);
500 HandleScope scope(isolate);
591 HandleScope scope(isolate);
858 v8::HandleScope scope(CcTest::isolate());
909 v8::HandleScope scope(CcTest::isolate())
    [all...]
test-debug.cc     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 
  /external/chromium_org/base/debug/
trace_event.h 32 // Events can be INSTANT, or can be pairs of BEGIN and END in the same scope:
37 // these are used in the same scope. Use ASYNC_BEGIN/ASYNC_END macros if you
201 // By default, const char* argument values are assumed to have long-lived scope
221 // scope, with 0, 1 or 2 associated arguments. If the category is not
261 #define UNSHIPPED_TRACE_EVENT_INSTANT0(category_group, name, scope) (void)0
262 #define UNSHIPPED_TRACE_EVENT_INSTANT1(category_group, name, scope, \
264 #define UNSHIPPED_TRACE_EVENT_INSTANT2(category_group, name, scope, \
275 #define UNSHIPPED_TRACE_EVENT_INSTANT0(category_group, name, scope) \
276 TRACE_EVENT_INSTANT0(category_group, name, scope)
277 #define UNSHIPPED_TRACE_EVENT_INSTANT1(category_group, name, scope, \
    [all...]

Completed in 1897 milliseconds

<<11121314151617181920>>