/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentOrderedMap.cpp | 105 inline Element* DocumentOrderedMap::get(StringImpl* key, const TreeScope* scope) const 108 ASSERT(scope); 119 for (Element* element = ElementTraversal::firstWithin(scope->rootNode()); element; element = ElementTraversal::next(*element)) { 129 Element* DocumentOrderedMap::getElementById(StringImpl* key, const TreeScope* scope) const 131 return get<keyMatchesId>(key, scope); 134 const Vector<Element*>& DocumentOrderedMap::getAllElementsById(StringImpl* key, const TreeScope* scope) const 137 ASSERT(scope); 149 for (Element* element = entry->element ? entry->element : ElementTraversal::firstWithin(scope->rootNode()); entry->orderedList.size() < entry->count; element = ElementTraversal::next(*element)) { 162 Element* DocumentOrderedMap::getElementByMapName(StringImpl* key, const TreeScope* scope) const 164 return get<keyMatchesMapName>(key, scope); [all...] |
/external/chromium_org/tools/gn/ |
config_values_generator.cc | 8 #include "tools/gn/scope.h" 17 Scope* scope, 22 const Value* value = scope->GetValue(var_name, true); 32 Scope* scope, 38 const Value* value = scope->GetValue(var_name, true); 43 ExtractListOfRelativeDirs(scope->settings()->build_settings(), 52 Scope* scope, [all...] |
operators.cc | 10 #include "tools/gn/scope.h" 18 // Applies the sources assignment filter from the given scope to each element 21 void AppendFilteredSourcesToValue(const Scope* scope, 24 const PatternList* filter = scope->GetSourcesAssignmentFilter(); 59 Scope* scope, 61 Value value = node->Execute(scope, err); 120 Value ExecuteEquals(Scope* scope, [all...] |
functions_unittest.cc | 22 Value result = functions::RunDefined(setup.scope(), &function_call, 27 // Define a value that's itself a scope value. 29 setup.scope()->SetValue(kDef, 30 Value(NULL, scoped_ptr<Scope>(new Scope(setup.scope()))), 38 result = functions::RunDefined(setup.scope(), &function_call, 44 // "defined(def.foo)" to see if foo is defined on the def scope. 51 result = functions::RunDefined(setup.scope(), &function_call,
|
scope_unittest.cc | 8 #include "tools/gn/scope.h" 13 bool HasStringValueEqualTo(const Scope* scope, 16 const Value* value = scope->GetValue(name); 26 TEST(Scope, NonRecursiveMergeTo) { 38 setup.scope()->SetValue("v", old_value, &assignment); 40 setup.scope()->SetValue(private_var_name, old_value, &assignment); 44 Scope new_scope(setup.settings()); 49 EXPECT_FALSE(setup.scope()->NonRecursiveMergeTo( 50 &new_scope, Scope::MergeOptions() [all...] |
template_unittest.cc | 22 input.parsed()->Execute(setup.scope(), &err); 40 input.parsed()->Execute(setup.scope(), &err); 56 input.parsed()->Execute(setup.scope(), &err); 74 input.parsed()->Execute(setup.scope(), &err); 91 input.parsed()->Execute(setup.scope(), &err);
|
function_foreach_unittest.cc | 21 input.parsed()->Execute(setup.scope(), &err); 36 input_good.parsed()->Execute(setup.scope(), &err); 51 input_bad.parsed()->Execute(setup.scope(), &err);
|
copy_target_generator.cc | 10 #include "tools/gn/scope.h" 14 Scope* scope, 17 : TargetGenerator(target, scope, function_call, err) {
|
operators.h | 11 class Scope; 25 Value ExecuteUnaryOperator(Scope* scope, 29 Value ExecuteBinaryOperator(Scope* scope,
|
template.h | 18 class Scope; 30 // Makes a new closure based on the given scope. 31 Template(const Scope* scope, const FunctionCallNode* def); 34 Template(scoped_ptr<Scope> closure, const FunctionCallNode* def); 38 Value Invoke(Scope* scope, 53 scoped_ptr<Scope> closure_;
|
functions.cc | 17 #include "tools/gn/scope.h" 24 const Scope* scope, 26 if (scope->IsProcessingImport()) { 37 const Scope* scope, 39 if (scope->IsProcessingBuildConfig()) { 48 bool FillTargetBlockScope(const Scope* scope, 53 Scope* block_scope [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
C.stg | 191 #define SCOPE_TYPE(scope) p<name>_##scope##_SCOPE 192 #define SCOPE_STACK(scope) p<name>_##scope##Stack 193 #define SCOPE_TOP(scope) ctx->p<name>_##scope##Top 194 #define SCOPE_SIZE(scope) ctx->p<name>_##scope##Stack_limit 195 #define SCOPE_INSTANCE(scope, i) (ctx->SCOPE_STACK(scope)->get(ctx->SCOPE_STACK(scope),i) [all...] |
/external/valgrind/main/none/tests/s390x/ |
ecag.c | 41 char *type, *scope; local 52 case 1: scope = "private"; break; 53 case 2: scope = "shared"; break; 54 case 3: scope = "reserved"; break; 57 printf("L%u topology: %s; %s\n", level+1, type, scope);
|
/external/chromium_org/chrome/browser/extensions/api/content_settings/ |
content_settings_store.h | 72 ExtensionPrefsScope scope); 76 ExtensionPrefsScope scope); 82 ExtensionPrefsScope scope) const; 88 ExtensionPrefsScope scope); 121 ExtensionPrefsScope scope); 125 ExtensionPrefsScope scope) const;
|
/external/chromium_org/v8/test/cctest/ |
test-func-name-inference.cc | 102 v8::HandleScope scope(CcTest::isolate()); 115 v8::HandleScope scope(CcTest::isolate()); 128 v8::HandleScope scope(CcTest::isolate()); 143 v8::HandleScope scope(CcTest::isolate()); 158 v8::HandleScope scope(CcTest::isolate()); 175 v8::HandleScope scope(CcTest::isolate()); 194 v8::HandleScope scope(CcTest::isolate()); 213 v8::HandleScope scope(CcTest::isolate()); 228 v8::HandleScope scope(CcTest::isolate()); 245 v8::HandleScope scope(CcTest::isolate()) [all...] |
test-js-arm64-variables.cc | 74 v8::HandleScope scope(env->GetIsolate()); 86 v8::HandleScope scope(env->GetIsolate()); 97 v8::HandleScope scope(env->GetIsolate()); 108 v8::HandleScope scope(env->GetIsolate()); 122 v8::HandleScope scope(env->GetIsolate()); 136 v8::HandleScope scope(env->GetIsolate());
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
IdentityStub.java | 55 * @param scope 58 public IdentityStub(String name, IdentityScope scope) 60 super(name, scope);
|
/external/chromium_org/content/browser/service_worker/ |
service_worker_utils.h | 34 // Returns true if |scope| matches |url|. 35 CONTENT_EXPORT static bool ScopeMatches(const GURL& scope, const GURL& url); 43 // Returns true if |scope| matches |url_| longer than |match_|. 44 bool MatchLongest(const GURL& scope);
|
/external/chromium_org/extensions/browser/ |
pref_names.cc | 12 bool ScopeToPrefName(ExtensionPrefsScope scope, std::string* result) { 13 switch (scope) {
|
/external/chromium_org/remoting/client/ |
token_fetcher_proxy.cc | 22 const std::string& scope, 26 token_url, host_public_key_, scope, weak_factory_.GetWeakPtr());
|
/external/chromium_org/third_party/WebKit/Source/core/workers/ |
WorkerConsole.cpp | 42 WorkerConsole::WorkerConsole(WorkerGlobalScope* scope) 43 : m_scope(scope)
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
generators-debug-scopes.js | 48 // 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...] |
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
IdentityStub.java | 59 * @param scope 63 public IdentityStub(String name, IdentityScope scope) 65 super(name, scope);
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
Java.stg | 366 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)> 367 <returnScope(scope=ruleDescriptor.returnScope)> 801 ruleRef(rule,label,elementIndex,args,scope) ::= << 803 <if(label)><label>=<endif><if(scope)><scope:delegateName()>.<endif><rule.name>(<args; separator=", ">);<\n> 809 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 810 <ruleRef(rule,label,elementIndex,args,scope)> 820 lexerRuleRef(rule,label,args,elementIndex,scope) ::= << 825 <if(scope)><scope:delegateName()>.<endif>m<rule.name>(<args; separator=", ">); <checkRuleBacktrackFailure() [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
Python.stg | 113 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}> 233 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScopeClass(scope=it)><endif>}> 238 <rules:{it|<ruleAttributeScopeClass(scope=it.ruleDescriptor.ruleScope)>}> 260 <scopes:{it | <if(it.isDynamicGlobalScope)><globalAttributeScopeStack(scope=it)><endif>}> 261 <rules:{it | <ruleAttributeScopeStack(scope=it.ruleDescriptor.ruleScope)>}> 403 <returnScope(scope=ruleDescriptor.returnScope)> 883 ruleRef(rule,label,elementIndex,args,scope) ::= << 885 <if(label)><label> = <endif>self.<if(scope)><scope:delegateName()>.<endif><rule.name>(<args; separator=", ">)<\n> 890 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= < [all...] |