HomeSort by relevance Sort by last modified time
    Searched defs:scope (Results 1 - 25 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RegistrationOptionList.h 14 : scope("/*")
17 options.get("scope", scope);
20 String scope; member in struct:WebCore::RegistrationOptionList
ServiceWorkerGlobalScope.cpp 83 String ServiceWorkerGlobalScope::scope(ExecutionContext* context) function in class:WebCore::ServiceWorkerGlobalScope
85 return ServiceWorkerGlobalScopeClient::from(context)->scope().string();
  /external/chromium_org/tools/gn/
value_unittest.cc 30 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);
function_rebase_path_unittest.cc 13 std::string RebaseOne(Scope* scope,
24 Value result = functions::RunRebasePath(scope, &function, args, &err);
36 Scope* scope = setup.scope(); local
37 scope->set_source_dir(SourceDir("//tools/gn/"));
40 EXPECT_EQ("../../tools/gn", RebaseOne(scope, ".", "//out/Debug", "."));
41 EXPECT_EQ("../../tools/gn/", RebaseOne(scope, "./", "//out/Debug", "."));
42 EXPECT_EQ("../../tools/gn/foo", RebaseOne(scope, "foo", "//out/Debug", "."))
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-135008.js 31 var scope = { x:23 };
33 with(scope) {
35 "scope.f = (function outer() {" +
45 assertSame(23, scope.f());
  /external/libsepol/tests/
helpers.c 68 scope_datum_t *scope = (scope_datum_t *) hashtab_search(p->scope[symtab].table, sym); local
70 if (scope == NULL) {
73 if (scope->scope != SCOPE_DECL) {
76 if (scope->decl_ids_len != 1) {
80 return p->decl_val_to_struct[scope->decl_ids[0] - 1];
  /external/chromium_org/third_party/skia/tools/skpdiff/
diff_viewer.js 16 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.updateMaskCanvasSize({width: canvas.width, height: canvas.height})
    [all...]
  /external/skia/tools/skpdiff/
diff_viewer.js 16 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.updateMaskCanvasSize({width: canvas.width, height: canvas.height})
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchRequest.h 36 MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, const CSSStyleSheet* cssSheet = 0, bool elementApplyAuthorStyles = true, unsigned styleSheetIndex = 0)
39 , scope(scope)
51 RawPtrWillBeMember<const ContainerNode> scope; member in class:WebCore::MatchRequest
  /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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScopeTest.java 71 * check that void IdentityScope(String, IdentityScope) creates instance with given name and within given scope
74 IdentityScope scope = new IdentityScopeStub("my scope"); local
75 is = new IdentityScopeStub("Aleksei Semenov", scope);
78 assertEquals(scope.getName(), is.getScope().getName());
85 String name = Security.getProperty("system.scope");
87 IdentityScope scope = IdentityScope.getSystemScope(); local
88 assertNotNull(scope);
89 assertEquals(name, scope.getClass().getName());
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
IdentityScopeTest.java 75 * check that void IdentityScope(String, IdentityScope) creates instance with given name and within given scope
78 IdentityScope scope = new IdentityScopeStub("my scope"); local
79 is = new IdentityScopeStub("Aleksei Semenov", scope);
82 assertEquals(scope.getName(), is.getScope().getName());
89 String name = Security.getProperty("system.scope");
91 IdentityScope scope = IdentityScope.getSystemScope(); local
92 assertNotNull(scope);
93 assertEquals(name, scope.getClass().getName());
102 // default implementation is specified by security property system.scope
    [all...]
  /external/chromium_org/components/policy/core/common/
policy_map.h 27 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/content/child/service_worker/
service_worker_handle_reference.h 38 const GURL& scope() const { return info_.scope; } function in class:content::ServiceWorkerHandleReference
web_service_worker_impl.cc 73 blink::WebURL WebServiceWorkerImpl::scope() const { function in class:content::WebServiceWorkerImpl
74 return handle_ref_->scope();
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementMicrotaskDispatcher.cpp 92 // CustomElementCallbackQueues. Being in a callback delivery scope
102 CustomElementCallbackDispatcher::CallbackDeliveryScope scope; local
  /external/chromium_org/third_party/WebKit/Source/web/
ServiceWorkerGlobalScopeClientImpl.cpp 59 WebURL ServiceWorkerGlobalScopeClientImpl::scope() const function in class:blink::ServiceWorkerGlobalScopeClientImpl
61 return m_client.scope();
  /external/chromium_org/third_party/WebKit/public/platform/
WebServiceWorker.h 61 virtual WebURL scope() const { return WebURL(); } function in class:blink::WebServiceWorker
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_extension.cc 126 // If this is a class member, it needs to be declared in its class scope.
127 string scope = (descriptor_->extension_scope() == NULL) ? "" : local
129 string name = scope + descriptor_->name();
139 vars["scope" ] = scope;
143 // We cannot declare it at class scope because that would require exposing
159 "const int $scope$$constant_name$;\n"
  /external/libnl/src/
nl-fib-lookup.c 21 " -s, --scope <scope> Routing scope\n"
36 int table = RT_TABLE_UNSPEC, scope = RT_SCOPE_UNIVERSE; local
44 {"scope", 1, 0, 's'},
63 scope = strtoul(optarg, NULL, 0);
92 flnl_request_set_scope(request, scope);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_extension.cc 126 // If this is a class member, it needs to be declared in its class scope.
127 string scope = (descriptor_->extension_scope() == NULL) ? "" : local
129 string name = scope + descriptor_->name();
139 vars["scope" ] = scope;
143 // We cannot declare it at class scope because that would require exposing
159 "const int $scope$$constant_name$;\n"
  /libcore/luni/src/main/java/java/security/
Identity.java 41 private IdentityScope scope; field in class:Identity
63 * the scope of this {@code Identity}.
67 * @param scope
71 * in the specified scope.
73 public Identity(String name, IdentityScope scope)
76 if (scope != null) {
77 scope.addIdentity(this);
78 this.scope = scope;
221 return scope;
    [all...]
  /external/chromium_org/chrome/common/extensions/api/identity/
oauth2_manifest_handler.cc 82 std::string scope; local
83 if (!list->GetString(i, &scope)) {
87 info->scopes.push_back(scope);
  /external/chromium_org/gin/modules/
module_registry_unittest.cc 24 scope(runner.get()) {
30 Runner::Scope scope; member in struct:gin::__anon12423::TestHelper
64 v8::Isolate::Scope isolate_scope(instance_->isolate());
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleSheetInvalidationAnalysis.cpp 51 // This picks the widest scope, not the narrowest, to minimize the number of found scopes.
100 ContainerNode* scope = ownerElement; local
102 scope = scope->containingShadowRoot()->shadowHost();
103 } while (scope->isInShadowTree());
104 return scope;

Completed in 1670 milliseconds

1 2 3 4 5 6 7 8 91011>>