Searched defs:scope (Results 1 - 25 of 313) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dvalue_unittest.cc30 Scope* scope = new Scope(setup.scope()); local
31 Value scopeval(NULL, scoped_ptr<Scope>(scope));
34 scope->SetValue("a", Value(NULL, static_cast<int64>(42)), NULL);
35 scope->SetValue("b", Value(NULL, "hello, world"), NULL);
H A Dcopy_target_generator.cc10 #include "tools/gn/scope.h"
14 Scope* scope,
17 : TargetGenerator(target, scope, function_call, err) {
13 CopyTargetGenerator(Target* target, Scope* scope, const FunctionCallNode* function_call, Err* err) argument
H A Dfunction_set_defaults.cc8 #include "tools/gn/scope.h"
22 " set_default's block will be copied into the current scope.\n"
25 " If a variable with that name is already in scope, the build will fail\n"
43 Value RunSetDefaults(Scope* scope, argument
67 if (scope->GetTargetDefaults(target_type)) {
79 Scope block_scope(scope);
84 // Now copy the values set on the scope we made into the free-floating one
85 // (with no containing scope) used to hold the target defaults.
86 Scope* dest = scope->MakeTargetDefaults(target_type);
H A Dgroup_target_generator.cc11 Scope* scope,
14 : TargetGenerator(target, scope, function_call, err) {
9 GroupTargetGenerator( Target* target, Scope* scope, const FunctionCallNode* function_call, Err* err) argument
H A Daction_target_generator.cc11 #include "tools/gn/scope.h"
18 Scope* scope,
22 : TargetGenerator(target, scope, function_call, err),
16 ActionTargetGenerator( Target* target, Scope* scope, const FunctionCallNode* function_call, Target::OutputType type, Err* err) argument
H A Dbinary_target_generator.cc11 #include "tools/gn/scope.h"
17 Scope* scope,
21 : TargetGenerator(target, scope, function_call, err),
15 BinaryTargetGenerator( Target* target, Scope* scope, const FunctionCallNode* function_call, Target::OutputType type, Err* err) argument
H A Dconfig_values_generator.cc8 #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,
56 scope_(scope),
16 GetStringList( Scope* scope, const char* var_name, ConfigValues* config_values, std::vector<std::string>& (ConfigValues::* accessor)(), Err* err) argument
31 GetDirList( Scope* scope, const char* var_name, ConfigValues* config_values, const SourceDir input_dir, std::vector<SourceDir>& (ConfigValues::* accessor)(), Err* err) argument
50 ConfigValuesGenerator( ConfigValues* dest_values, Scope* scope, const SourceDir& input_dir, Err* err) argument
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-135008.js31 var scope = { x:23 };
33 with(scope) {
35 "scope.f = (function outer() {" +
45 assertSame(23, scope.f());
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Ddiff_viewer.js16 scope: true,
17 link: function(scope, elm, attrs, ctrl) {
29 image.src = scope.record.differencePath;
33 image.src = scope.record.baselinePath;
37 image.src = scope.record.testPath;
54 scope.setImgScaleFactor(1 / divisor);
57 canvas.width = image.width * scope.imgScaleFactor;
58 canvas.height = image.height * scope.imgScaleFactor;
61 if (!scope.maskSizeUpdated) {
63 scope
[all...]
/external/skia/tools/skpdiff/
H A Ddiff_viewer.js16 scope: true,
17 link: function(scope, elm, attrs, ctrl) {
29 image.src = scope.record.differencePath;
33 image.src = scope.record.baselinePath;
37 image.src = scope.record.testPath;
54 scope.setImgScaleFactor(1 / divisor);
57 canvas.width = image.width * scope.imgScaleFactor;
58 canvas.height = image.height * scope.imgScaleFactor;
61 if (!scope.maskSizeUpdated) {
63 scope
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_utils.cc15 bool ServiceWorkerUtils::ScopeMatches(const GURL& scope, const GURL& url) { argument
16 DCHECK(!scope.has_ref());
18 return StartsWithASCII(url.spec(), scope.spec(), true);
21 bool LongestScopeMatcher::MatchLongest(const GURL& scope) { argument
22 if (!ServiceWorkerUtils::ScopeMatches(scope, url_))
24 if (match_.is_empty() || match_.spec().size() < scope.spec().size()) {
25 match_ = scope;
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerConsole.h51 static PassRefPtrWillBeRawPtr<WorkerConsole> create(WorkerGlobalScope* scope) argument
53 return adoptRefWillBeNoop(new WorkerConsole(scope));
H A DWorkerConsole.cpp43 WorkerConsole::WorkerConsole(WorkerGlobalScope* scope) argument
44 : m_scope(scope)
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DIdentityStub.java55 * @param scope
58 public IdentityStub(String name, IdentityScope scope) argument
60 super(name, scope);
H A DSignerStub.java51 * Constructor, sets given name and scope
54 * @param scope
57 public SignerStub(String name, IdentityScope scope) argument
59 super(name, scope);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dmemoize.js27 * computations in a call to memoize.scope() - memoization is only
28 * enabled while in that scope, and all cached data is thrown away at
30 * being memoized will not change within the scope.
32 * cvox.Memoize.scope(function() {
51 * to function result. This variable is null when we're out of scope, and it's
52 * a map from string to WeakMap to result when we're in scope.
60 * Keeps track of how many nested times scope() has been called.
68 * Enables memoization within the scope of the given function. You should
69 * ensure that the DOM is not modified within this scope.
71 * It's safe to nest calls to scope
[all...]
/external/chromium_org/content/child/service_worker/
H A Dservice_worker_registration_handle_reference.h35 GURL scope() const { return info_.scope; } function in class:content::ServiceWorkerRegistrationHandleReference
H A Dservice_worker_handle_reference.h38 const GURL& scope() const { return info_.scope; } function in class:content::ServiceWorkerHandleReference
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DMatchRequest.h36 MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, unsigned styleSheetIndex = 0)
39 , scope(scope)
50 RawPtrWillBeMember<const ContainerNode> scope; member in class:blink::MatchRequest
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/public/platform/
H A DWebServiceWorkerRegistration.h22 virtual WebURL scope() const { return WebURL(); } function in class:blink::WebServiceWorkerRegistration
H A DWebServiceWorker.h61 virtual WebURL scope() const { return WebURL(); } function in class:blink::WebServiceWorker
/external/chromium_org/components/policy/core/common/
H A Dpolicy_map.h27 PolicyScope scope; member in struct:policy::PolicyMap::Entry
65 PolicyScope scope,
88 // will have |level| and |scope| in their entries. Existing entries are
92 PolicyScope scope);
/external/chromium_org/remoting/client/
H A Dtoken_fetcher_proxy.cc22 const std::string& scope,
26 token_url, host_public_key_, scope, weak_factory_.GetWeakPtr());
20 FetchThirdPartyToken( const GURL& token_url, const std::string& scope, const TokenFetchedCallback& token_fetched_callback) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementMicrotaskDispatcher.cpp67 // CustomElementCallbackQueues. Being in a callback delivery scope
76 CustomElementProcessingStack::CallbackDeliveryScope scope; local

Completed in 2305 milliseconds

1234567891011>>