HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 51 - 75 of 1056) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 55 * actionScope (String): 'lexer', 'parser', 'tree_parser' or custom scope
133 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
228 procedure m<rule.ruleName>(<rule.ruleDescriptor.parameterScope:parameterScope(scope=rule)>);<\n>
337 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScopeDeclaration(scope=it)><endif>}>
400 <rules: {r | <ruleAttributeScopeInit(scope=r.ruleDescriptor.ruleScope)>}>
401 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
449 function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): I<returnType()>;<\n>
452 function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): <returnType()>;<\n>
454 procedure <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>);<\n>
461 function T<grammar.recognizerName>.<ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): I<returnType()>;<\n
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
Perl5.stg 80 <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/browser/policy/
policy_map.h 26 PolicyScope scope; member in struct:policy::PolicyMap::Entry
32 scope(POLICY_SCOPE_USER),
62 PolicyScope scope,
85 // will have |level| and |scope| in their entries. Existing entries are
89 PolicyScope scope);
  /external/chromium_org/tools/gn/
config_values_generator.cc 8 #include "tools/gn/scope.h"
15 Scope* scope,
20 const Value* value = scope->GetValue(var_name, true);
32 Scope* scope,
37 scope_(scope),
import_manager.h 14 class Scope;
24 // Does an import of the given file into the given scope. On error, sets the
28 Scope* scope,
35 typedef std::map<SourceFile, const Scope*> ImportMap;
string_utils_unittest.cc 7 #include "tools/gn/scope.h"
16 Scope scope(static_cast<const Settings*>(NULL));
17 scope.SetValue("one", Value(NULL, 1), NULL);
18 scope.SetValue("onestring", Value(NULL, "one"), NULL);
29 bool ret = ExpandStringLiteral(&scope, literal, &result, &err);
function_toolchain.cc 9 #include "tools/gn/scope.h"
18 // the toolchain property on a scope.
21 // Reads the given string from the scope (if present) and puts the result into
23 bool ReadString(Scope& scope, const char* var, std::string* dest, Err* err) {
24 const Value* v = scope.GetValue(var, true);
42 Value RunToolchain(Scope* scope,
47 if (!EnsureNotProcessingImport(function, scope, err) ||
48 !EnsureNotProcessingBuildConfig(function, scope, err)
    [all...]
function_read_file.cc 40 Value RunReadFile(Scope* scope,
56 scope->settings()->build_settings()->GetFullPath(source_file);
  /external/skia/gm/viewer/
module.js 3 * Reads an actual-results.json file, and imports its data into $scope.
18 function($scope, $http) {
23 * test) and return it to the frontend as $scope.gmActualResults like so:
47 $scope.changePlatformPath = function() {
48 $http.get($scope.platformPath + "/actual-results.json").success(
70 $scope.gmActualResults = jsonResults;
  /libcore/luni/src/main/java/java/security/
IdentityScope.java 24 * {@code IdentityScope} represents a scope for {@link Identity} objects.
34 // systemScope holds reference to the current system scope
56 * name and the specified scope.
60 * @param scope
61 * the scope of this {@code IdentityScope}.
65 public IdentityScope(String name, IdentityScope scope)
67 super(name, scope);
71 * Returns the system's scope.
73 * @return the system's scope.
78 * "system.scope", and the class is only loaded from boot classpath. No defaul
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 81 <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=actionScope,name="init")
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-blockscopes.js 83 // Check that the scope chain contains the expected types of scopes.
87 var scope = exec_state.frame().scope(i);
88 assertTrue(scope.isScope());
89 assertEquals(scopes[i], scope.scopeType());
91 // Check the global object when hitting the global scope.
95 assertPropertiesEqual(global_object, scope.scopeObject().value());
121 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
125 // Check that the content of the scope is as expected. For functions just check
128 var scope = exec_state.frame().scope(number)
    [all...]
  /external/v8/test/mjsunit/harmony/
debug-blockscopes.js 83 // Check that the scope chain contains the expected types of scopes.
87 var scope = exec_state.frame().scope(i);
88 assertTrue(scope.isScope());
89 assertEquals(scopes[i], scope.scopeType());
91 // Check the global object when hitting the global scope.
95 assertPropertiesEqual(global_object, scope.scopeObject().value());
121 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
125 // Check that the content of the scope is as expected. For functions just check
128 var scope = exec_state.frame().scope(number)
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayApply.cpp 34 // 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 = scope = saveScope
    [all...]
  /external/skia/src/animator/
SkDisplayApply.cpp 34 // 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 = scope = saveScope
    [all...]
  /external/chromium_org/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 80 // 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());
118 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
122 // Check that the content of the scope is as expected. For functions just check
125 var scope = exec_state.frame().scope(number)
    [all...]
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 80 // 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());
118 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
122 // Check that the content of the scope is as expected. For functions just check
125 var scope = exec_state.frame().scope(number)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
AndroidProfileOAuth2TokenServiceHelper.java 57 * @param scope The scope to get an auth token for (without Android-style 'oauth2:' prefix).
62 Context context, String username, String scope, final int nativeCallback) {
68 String oauth2Scope = OAUTH2_SCOPE_PREFIX + scope;
82 * Call this method to retrieve an OAuth2 access token for the given account and scope.
86 * @param scope The scope to get an auth token for (without Android-style 'oauth2:' prefix).
90 Account account, String scope,
92 String oauth2Scope = OAUTH2_SCOPE_PREFIX + scope;
98 * Call this method to retrieve an OAuth2 access token for the given account and scope. Thi
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
descriptor_pool.py 189 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=None)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptFunctionCall.cpp 64 ScriptScope scope(m_scriptState);
70 ScriptScope scope(m_scriptState);
76 ScriptScope scope(m_scriptState);
82 ScriptScope scope(m_scriptState);
88 ScriptScope scope(m_scriptState);
94 ScriptScope scope(m_scriptState);
100 ScriptScope scope(m_scriptState);
118 ScriptScope scope(m_scriptState, reportExceptions);
122 if (!scope.success()) {
137 if (!scope.success())
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 108 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
294 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
370 // imported grammars are 'public' (can't be internal because their return scope classes must be accessible)
489 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
1021 ruleRef(rule,label,elementIndex,args,scope) ::= <<
1023 <if(label)><label>=<endif><if(scope)><scope:delegateName()>.<endif><rule.name; format="id">(<args; separator=", ">);
1029 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
1040 lexerRuleRef(rule,label,args,elementIndex,scope) ::= <%
1045 <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/CSharp2/
CSharp2.stg 109 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
299 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
388 // imported grammars are 'public' (can't be internal because their return scope classes must be accessible)
508 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
1041 ruleRef(rule,label,elementIndex,args,scope) ::= <<
1043 <if(label)><label>=<endif><if(scope)><scope:delegateName()>.<endif><rule.name; format="id">(<args; separator=", ">);
1049 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentLifecycleObserver.h 71 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDocumentObservers);
78 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDocumentObservers);
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageLifecycleNotifier.h 63 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverPageObservers);
70 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverPageObservers);
  /external/chromium_org/third_party/WebKit/Source/core/testing/v8/
WebCoreTestSupport.cpp 44 v8::Context::Scope contextScope(context);
45 v8::HandleScope scope; local
58 v8::Context::Scope contextScope(context);
59 v8::HandleScope scope; local

Completed in 1887 milliseconds

1 23 4 5 6 7 8 91011>>