Searched refs:scope (Results 76 - 100 of 998) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
H A DPerl5.stg80 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
214 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
272 # <ruleDescriptor.parameterScope:parameterScope(scope=it)>
337 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
338 <returnScope(scope=ruleDescriptor.returnScope)>
343 my ($self, <ruleDescriptor.parameterScope:parameterScope(scope=it)>) = @_;
475 # <ruleDescriptor.parameterScope:parameterScope(scope=it)>
771 ruleRef(rule,label,elementIndex,args,scope) ::= <<
783 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
794 lexerRuleRef(rule,label,args,elementIndex,scope)
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
H A DAndroidProfileOAuth2TokenServiceHelper.java30 Account account, String scope, AccountManagerHelper.GetAuthTokenCallback callback) {
31 OAuth2TokenService.getOAuth2AccessToken(context, activity, account, scope, callback);
47 @Nullable Activity activity, Account account, String scope,
50 context, activity, account, scope, timeout, unit);
29 getOAuth2AccessToken(Context context, @Nullable Activity activity, Account account, String scope, AccountManagerHelper.GetAuthTokenCallback callback) argument
46 getOAuth2AccessTokenWithTimeout(Context context, @Nullable Activity activity, Account account, String scope, long timeout, TimeUnit unit) argument
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/zoom/
H A Dbackground.js12 ", scope:" + zoomChangeInfo.zoomSettings.scope;
/external/chromium_org/gin/
H A Drun_microtasks_observer.cc17 v8::Isolate::Scope scope(isolate_);
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DScopedStyleResolver.h50 static PassOwnPtrWillBeRawPtr<ScopedStyleResolver> create(TreeScope& scope) argument
52 return adoptPtrWillBeNoop(new ScopedStyleResolver(scope));
74 explicit ScopedStyleResolver(TreeScope& scope) argument
75 : m_scope(scope)
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteFileSystem.cpp48 ThreadState::SafePointScope scope(ThreadState::HeapPointersOnStack);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebServiceWorkerRegistration.h22 virtual WebURL scope() const { return WebURL(); } function in class:blink::WebServiceWorkerRegistration
/external/chromium_org/tools/gn/
H A Dcopy_target_generator.h15 Scope* scope,
H A Dfunction_process_file_template.cc7 #include "tools/gn/scope.h"
60 Value RunProcessFileTemplate(Scope* scope, argument
71 if (!ExtractListOfRelativeFiles(scope->settings()->build_settings(), args[0],
72 scope->GetSourceDir(), &input_files, err))
96 scope->settings(), subst, input_files, &result_files);
H A Dgroup_target_generator.h15 Scope* scope,
H A Dstring_utils_unittest.cc7 #include "tools/gn/scope.h"
16 Scope scope(static_cast<const Settings*>(NULL));
18 scope.SetValue("one", Value(NULL, one), NULL);
19 scope.SetValue("onestring", Value(NULL, "one"), NULL);
30 bool ret = ExpandStringLiteral(&scope, literal, &result, &err);
H A Dfunction_write_file_unittest.cc15 bool CallWriteFile(Scope* scope, argument
25 Value result = functions::RunWriteFile(scope, &function_call, args, &err);
45 EXPECT_FALSE(CallWriteFile(setup.scope(), "//in_root.txt", some_string));
46 EXPECT_FALSE(CallWriteFile(setup.scope(), "//other_dir/foo.txt",
50 EXPECT_TRUE(CallWriteFile(setup.scope(), "//out/foo.txt", some_string));
61 EXPECT_TRUE(CallWriteFile(setup.scope(), "//out/foo.txt", some_list));
80 EXPECT_TRUE(CallWriteFile(setup.scope(), "//out/foo.txt", some_list));
H A Dfunction_toolchain.cc12 #include "tools/gn/scope.h"
24 // the toolchain property on a scope.
27 bool ReadBool(Scope* scope, argument
32 const Value* v = scope->GetValue(var, true);
42 // Reads the given string from the scope (if present) and puts the result into
44 bool ReadString(Scope* scope, argument
49 const Value* v = scope->GetValue(var, true);
77 bool ReadPattern(Scope* scope, argument
83 const Value* value = scope->GetValue(name, true);
99 bool ReadOutputExtension(Scope* scope, Too argument
118 ReadDepsFormat(Scope* scope, Tool* tool, Err* err) argument
136 ReadOutputs(Scope* scope, const FunctionCallNode* tool_function, bool (*validate)(SubstitutionType), Tool* tool, Err* err) argument
282 RunToolchain(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
719 RunTool(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
886 RunToolchainArgs(Scope* scope, const FunctionCallNode* function, const std::vector<Value>& args, BlockNode* block, Err* err) argument
[all...]
H A Doperators_unittest.cc42 setup.scope()->SetValue(sources, Value(NULL, Value::LIST), NULL);
54 // Set up the filter on the scope to remove everything ending with "rm"
57 setup.scope()->set_sources_assignment_filter(pattern_list.Pass());
63 node.Execute(setup.scope(), &err);
70 node.Execute(setup.scope(), &err);
77 node.Execute(setup.scope(), &err);
84 ExecuteBinaryOperator(setup.scope(), &node, node.left(), &list, &err);
87 // The sources variable in the scope should now have: [ 5, "good", "good" ]
88 const Value* value = setup.scope()->GetValue(sources);
105 setup.scope()
[all...]
/external/chromium_org/v8/test/mjsunit/bugs/harmony/
H A Ddebug-blockscopes.js80 // Check that the scope chain contains the expected types of scopes.
84 var scope = exec_state.frame().scope(i);
85 assertTrue(scope.isScope());
86 assertEquals(scopes[i], scope.scopeType());
88 // Check the global object when hitting the global scope.
92 assertPropertiesEqual(this, scope.scopeObject().value());
122 // Check that the content of the scope is as expected. For functions just check
125 var scope = exec_state.frame().scope(numbe
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-stepout-scope-part1.js30 // Check that the ScopeIterator can properly recreate the scope at
37 // Access scope details.
40 var scope = exec_state.frame().scope(i);
41 // assertTrue(scope.isScope());
42 scope.scopeType();
43 scope.scopeObject();
46 // Do steps until we reach the global scope again.
H A Ddebug-stepout-scope-part8.js30 // Check that the ScopeIterator can properly recreate the scope at
37 // Access scope details.
40 var scope = exec_state.frame().scope(i);
41 // assertTrue(scope.isScope());
42 scope.scopeType();
43 scope.scopeObject();
46 // Do steps until we reach the global scope again.
/external/chromium_org/v8/test/mjsunit/es6/
H A Dgenerators-debug-scopes.js48 // Check that two scope are the same.
61 var scope = fast_all_scopes[length - i - 1];
62 assertTrue(scope.isScope());
63 assertEquals(scopes[scopes.length - i - 1], scope.scopeType());
67 // Check that the scope chain contains the expected types of scopes.
73 var scope = exec_state.frame().scope(i);
74 assertTrue(scope.isScope());
75 assertEquals(scopes[i], scope.scopeType());
76 assertScopeMirrorEquals(all_scopes[i], scope);
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
H A DRuby.stg81 <placeAction(scope="all", name="header")>
82 <placeAction(scope=actionScope,name="header")>
90 <placeAction(scope=actionScope,name="footer")>
91 <placeAction(scope="all", name="footer")>
95 <placeAction(scope=actionScope,name="main")>
125 <placeAction(scope="token",name="scheme")>
126 <placeAction(scope="token",name="members")>
132 <placeAction(scope="module",name="head")>
135 <placeAction(scope="module",name="foot")>
257 <placeAction(scope
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPromiseResolverTest.cpp59 ScriptState::Scope scope(scriptState());
77 ScriptState::Scope scope(scriptState());
86 ScriptState::Scope scope(scriptState());
94 ScriptState::Scope scope(scriptState());
109 ScriptState::Scope scope(scriptState());
134 ScriptState::Scope scope(scriptState());
142 ScriptState::Scope scope(scriptState());
157 ScriptState::Scope scope(scriptState());
182 ScriptState::Scope scope(scriptState());
190 ScriptState::Scope scope(scriptStat
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayApply.cpp34 // if no attibutes, enclosed displayable is both scope & target
35 // only if both scope & target are specified, or if target and enclosed displayable, are scope and target different
47 SK_MEMBER(scope, Drawable), // thing that scopes animation (unnamed enclosed displayable goes here)
59 restore(false), scope(NULL), steps(-1), transition((Transition) -1), fActive(NULL), /*fCurrentScope(NULL),*/
68 delete scope;
160 return fDeleteScope && scope == child;
164 SkDrawable* saveScope = scope;
165 scope = NULL;
167 result->scope
[all...]
/external/skia/src/animator/
H A DSkDisplayApply.cpp34 // if no attibutes, enclosed displayable is both scope & target
35 // only if both scope & target are specified, or if target and enclosed displayable, are scope and target different
47 SK_MEMBER(scope, Drawable), // thing that scopes animation (unnamed enclosed displayable goes here)
59 restore(false), scope(NULL), steps(-1), transition((Transition) -1), fActive(NULL), /*fCurrentScope(NULL),*/
68 delete scope;
160 return fDeleteScope && scope == child;
164 SkDrawable* saveScope = scope;
165 scope = NULL;
167 result->scope
[all...]
/external/chromium_org/components/policy/core/common/
H A Dpolicy_map.cc16 scope(POLICY_SCOPE_USER),
30 copy->scope = scope;
43 return scope > other.scope;
50 scope == other.scope &&
75 PolicyScope scope,
81 entry.scope = scope;
73 Set(const std::string& policy, PolicyLevel level, PolicyScope scope, base::Value* value, ExternalDataFetcher* external_data_fetcher) argument
126 LoadFrom( const base::DictionaryValue* policies, PolicyLevel level, PolicyScope scope) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentOrderedMap.cpp110 inline Element* DocumentOrderedMap::get(const AtomicString& key, const TreeScope* scope) const
113 ASSERT(scope);
124 for (Element* element = ElementTraversal::firstWithin(scope->rootNode()); element; element = ElementTraversal::next(*element)) {
134 Element* DocumentOrderedMap::getElementById(const AtomicString& key, const TreeScope* scope) const
136 return get<keyMatchesId>(key, scope);
139 const WillBeHeapVector<RawPtrWillBeMember<Element> >& DocumentOrderedMap::getAllElementsById(const AtomicString& key, const TreeScope* scope) const
142 ASSERT(scope);
154 for (Element* element = entry->element ? entry->element.get() : ElementTraversal::firstWithin(scope->rootNode()); entry->orderedList.size() < entry->count; element = ElementTraversal::next(*element)) {
167 Element* DocumentOrderedMap::getElementByMapName(const AtomicString& key, const TreeScope* scope) const
169 return get<keyMatchesMapName>(key, scope);
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A Ddescriptor_pool.py189 scope = {}
205 scope.update(symbols)
206 scope.update((_strip_package(k), v) for k, v in symbols)
209 scope.update(symbols)
210 scope.update((_strip_package(k), v) for k, v in symbols)
214 message_type, file_proto.package, file_descriptor, scope)
218 file_descriptor, None, scope)
220 self._SetFieldTypes(desc_proto, scope)
223 desc = scope[desc_proto.name]
231 scope
[all...]

Completed in 688 milliseconds

1234567891011>>