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

1 2 3 4 5 6 7 8 91011>>

  /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/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/mojo/common/
common_type_converters_unittest.cc 31 AllocationScope scope; local
  /external/chromium_org/mojo/public/tests/
bindings_array_unittest.cc 62 AllocationScope scope; local
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchRequest.h 34 MatchRequest(RuleSet* ruleSet, bool includeEmptyRules = false, const ContainerNode* scope = 0, bool elementApplyAuthorStyles = true, unsigned styleSheetIndex = 0)
37 , scope(scope)
48 const ContainerNode* scope; member in class:WebCore::MatchRequest
  /external/chromium_org/tools/gn/
function_rebase_path_unittest.cc 13 std::string RebaseOne(Scope* scope,
27 Value result = functions::RunRebasePath(scope, &function, args, &err);
39 Scope* scope = setup.scope(); local
40 scope->set_source_dir(SourceDir("//tools/gn/"));
43 EXPECT_EQ("../../tools/gn", RebaseOne(scope, ".", ".", "//out/Debug"));
44 EXPECT_EQ("../../tools/gn/", RebaseOne(scope, "./", ".", "//out/Debug"));
45 EXPECT_EQ("../../tools/gn/foo", RebaseOne(scope, "foo", ".", "//out/Debug"))
    [all...]
test_with_scope.h 10 #include "tools/gn/scope.h"
14 // A helper class for setting up a Scope that a test can use. It makes a
24 Scope* scope() { return &scope_; } function in class:TestWithScope
30 Scope scope_;
  /external/v8/test/cctest/
test-dictionary.cc 43 v8::HandleScope scope; local
104 v8::HandleScope scope; local
127 v8::HandleScope scope; local
test-func-name-inference.cc 54 v8::HandleScope scope; local
57 v8::HandleScope scope; local
113 v8::HandleScope scope; local
125 v8::HandleScope scope; local
137 v8::HandleScope scope; local
151 v8::HandleScope scope; local
165 v8::HandleScope scope; local
181 v8::HandleScope scope; local
199 v8::HandleScope scope; local
217 v8::HandleScope scope; local
231 v8::HandleScope scope; local
247 v8::HandleScope scope; local
260 v8::HandleScope scope; local
275 v8::HandleScope scope; local
288 v8::HandleScope scope; local
304 v8::HandleScope scope; local
318 v8::HandleScope scope; local
334 v8::HandleScope scope; local
353 v8::HandleScope scope; local
368 v8::HandleScope scope; local
386 v8::HandleScope scope; local
    [all...]
test-weakmaps.cc 69 v8::HandleScope scope; local
76 v8::HandleScope scope; local
85 v8::HandleScope scope; local
99 v8::HandleScope scope; local
124 v8::HandleScope scope; local
132 v8::HandleScope scope; local
test-disasm-x64.cc 59 v8::HandleScope scope; local
103 CpuFeatures::Scope fscope(CPUID);
108 CpuFeatures::Scope fscope(RDTSC);
352 CpuFeatures::Scope fscope(SSE2);
375 CpuFeatures::Scope use_cmov(CMOV);
398 CpuFeatures::Scope fscope(SSE2);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScopeTest.java 70 * check that void IdentityScope(String, IdentityScope) creates instance with given name and within given scope
73 IdentityScope scope = new IdentityScopeStub("my scope"); local
74 is = new IdentityScopeStub("Aleksei Semenov", scope);
77 assertEquals(scope.getName(), is.getScope().getName());
84 String name = Security.getProperty("system.scope");
86 IdentityScope scope = IdentityScope.getSystemScope(); local
87 assertNotNull(scope);
88 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/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/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/content/browser/indexed_db/
indexed_db_database_unittest.cc 117 const std::vector<int64> scope; local
120 scope,
indexed_db_transaction_unittest.cc 45 const std::set<int64> scope; local
50 scope,
97 const std::set<int64> scope; local
102 scope,
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleInvalidationAnalysis.cpp 51 // This picks the widest scope, not the narrowest, to minimize the number of found scopes.
97 ContainerNode* scope = ownerElement; local
99 scope = scope->containingShadowRoot()->shadowHost();
100 } while (scope->isInShadowTree());
102 return scope;
  /external/chromium_org/v8/test/cctest/
test-disasm-x64.cc 51 v8::HandleScope scope; local
402 CpuFeatureScope scope(&assm, SSE4_1);
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p8-0x.cpp 32 void scope() { function in namespace:PR10127
  /external/libsepol/src/
avrule_block.c 4 * or global scope) for a policy module.
69 ebitmap_init(&decl->required.scope[i]);
70 ebitmap_init(&decl->declared.scope[i]);
77 static void scope_index_destroy(scope_index_t * scope)
80 if (scope == NULL) {
84 ebitmap_destroy(scope->scope + i);
86 for (i = 0; i < scope->class_perms_len; i++) {
87 ebitmap_destroy(scope->class_perms_map + i);
89 free(scope->class_perms_map)
155 scope_datum_t *scope = local
    [all...]

Completed in 328 milliseconds

1 2 3 4 5 6 7 8 91011>>