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

1 2 34 5 6 7 8 91011>>

  /external/skia/expectations/gm/
loader.js 3 * Reads an expected-results.json file, and imports its data into $scope.
18 function($scope, $http) {
23 * $scope.gmExpectedResults .
25 $scope.changePlatformPath = function() {
26 $http.get($scope.platformPath + "/expected-results.json").success(
47 $scope.gmExpectedResults = jsonResults;
  /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...]
Signer.java 52 * given scope.
56 * @param scope
57 * the scope of the signer.
60 * provided scope.
62 public Signer(String name, IdentityScope scope) throws KeyManagementException {
63 super(name, scope);
97 * {@code Signer} including its name and its scope if present.
  /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/components/policy/core/common/
policy_map.cc 16 scope(POLICY_SCOPE_USER),
30 copy->scope = scope;
43 return scope > other.scope;
50 scope == other.scope &&
75 PolicyScope scope,
81 entry.scope = scope;
    [all...]
  /external/chromium_org/tools/gn/
target_generator.cc 17 #include "tools/gn/scope.h"
25 Scope* scope,
29 scope_(scope),
49 void TargetGenerator::GenerateTarget(Scope* scope,
64 const Label& toolchain_label = ToolchainLabelForScope(scope);
65 Label label(scope->GetSourceDir(), args[0].string_value(),
71 scoped_ptr<Target> target(new Target(scope->settings(), label));
76 CopyTargetGenerator generator(target.get(), scope, function_call, err)
    [all...]
args.h 12 #include "tools/gn/scope.h"
17 // command line, and sets up the root scope with the proper values.
32 void AddArgOverrides(const Scope::KeyValueMap& overrides);
34 // Sets up the root scope for a toolchain. This applies the default system
37 void SetupRootScope(Scope* dest,
38 const Scope::KeyValueMap& toolchain_overrides) const;
40 // Sets up the given scope with arguments passed in.
49 bool DeclareArgs(const Scope::KeyValueMap& args,
50 Scope* scope_to_set,
59 const Scope::KeyValueMap& declared_arguments() const
    [all...]
binary_target_generator.cc 9 #include "tools/gn/scope.h"
14 Scope* scope,
18 : TargetGenerator(target, scope, function_call, err),
target_generator.h 20 class Scope;
23 // Fills the variables in a Target object from a Scope (the result of a script
30 Scope* scope,
39 static void GenerateTarget(Scope* scope,
58 Scope* scope_;
  /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/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);
71 ScriptScope scope(m_scriptState);
78 ScriptScope scope(m_scriptState);
85 ScriptScope scope(m_scriptState);
92 ScriptScope scope(m_scriptState);
99 ScriptScope scope(m_scriptState);
106 ScriptScope scope(m_scriptState);
125 ScriptScope scope(m_scriptState, reportExceptions);
129 if (!scope.success()) {
144 if (!scope.success())
    [all...]
CallbackPromiseAdapter.h 75 DOMRequestState::Scope scope(m_requestState);
80 DOMRequestState::Scope scope(m_requestState);
  /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/
DocumentLifecycleNotifier.h 61 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDocumentObservers);
68 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(context->GetIsolate());
57 v8::Context::Scope contextScope(context);
58 v8::HandleScope scope(context->GetIsolate());
  /external/chromium_org/v8/test/mjsunit/
debug-function-scopes.js 45 // A copy of the scope types from mirror-debugger.js.
73 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
74 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With);
75 CheckScope(mirror.scope(2), { y: 17, z: 22 }, ScopeType.Closure);
76 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
77 CheckScope(mirror.scope(4), {}, ScopeType.Global);
85 CheckScope(mirror.scope(0), {}, ScopeType.Global);
104 CheckScope(mirror.scope(0), { visible2: 20 }, ScopeType.Closure);
105 CheckScope(mirror.scope(1), { visible1: 10 }, ScopeType.Closure);
106 CheckScope(mirror.scope(2), {}, ScopeType.Global)
    [all...]

Completed in 1761 milliseconds

1 2 34 5 6 7 8 91011>>