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

1234567

/external/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/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/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);
H A DIdentityScopeStub.java57 * @param scope
60 public IdentityScopeStub(String name, IdentityScope scope) argument
62 super(name, scope);
124 * Sets the system's identity scope
126 * @param scope
128 public static void mySetSystemScope(IdentityScope scope) { argument
130 IdentityScope.setSystemScope(scope);
/external/jetty/src/java/org/eclipse/jetty/security/
H A DSpnegoUserIdentity.java52 public boolean isUserInRole(String role, Scope scope) argument
H A DUserAuthentication.java50 public boolean isUserInRole(Scope scope, String role) argument
52 return _userIdentity.isUserInRole(role, scope);
H A DDefaultUserIdentity.java56 public boolean isUserInRole(String role, Scope scope) argument
58 if (scope!=null && scope.getRoleRefMap()!=null)
59 role=scope.getRoleRefMap().get(role);
/external/jetty/src/java/org/eclipse/jetty/server/
H A DUserIdentity.java52 * @param scope
55 boolean isUserInRole(String role, Scope scope); argument
61 * A scope is the environment in which a User Identity is to
105 public boolean isUserInRole(String role, Scope scope)
/external/selinux/libsepol/tests/
H A Dhelpers.c68 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/v8/test/cctest/compiler/
H A Dtest-schedule.cc23 HandleAndZoneScope scope; local
24 Schedule schedule(scope.main_zone());
32 HandleAndZoneScope scope; local
33 Graph graph(scope.main_zone());
37 Schedule schedule(scope.main_zone());
53 HandleAndZoneScope scope; local
55 Schedule schedule(scope.main_zone());
72 HandleAndZoneScope scope; local
73 Schedule schedule(scope.main_zone());
79 Graph graph(scope
102 HandleAndZoneScope scope; local
116 HandleAndZoneScope scope; local
130 HandleAndZoneScope scope; local
[all...]
/external/valgrind/none/tests/s390x/
H A Decag.c41 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/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DNameSpaceChecker.java58 // walk rule scope attributes for Rule r
72 AttributeScope scope = (AttributeScope) it.next();
73 checkForGlobalScopeTokenConflict(scope);
121 * Give error if you cannot find the scope override on a rule reference.
187 protected void checkForGlobalScopeTokenConflict(AttributeScope scope) { argument
188 if ( grammar.getTokenType(scope.getName())!=Label.INVALID ) {
190 grammar, null, scope.getName());
194 /** Check for collision of a rule-scope dynamic attribute with:
217 * Labels must not conflict with: rules, tokens, scope names,
218 * return values, parameters, and rule-scope dynami
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp8-0x.cpp32 void scope() { function in namespace:PR10127
/external/libnl/src/
H A Dnl-fib-lookup.c21 " -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/
H A Dcpp_extension.cc126 // 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/v8/src/
H A Dvariables.cc35 Variable::Variable(Scope* scope, const AstRawString* name, VariableMode mode, argument
39 : scope_(scope),
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCTarget.java81 /** Is scope in @scope::name {action} valid for this kind of grammar?
88 public boolean isValidActionScope(int grammarType, String scope) { argument
91 if (scope.equals("lexer")) {
94 if (scope.equals("header")) {
97 if (scope.equals("includes")) {
100 if (scope.equals("preincludes")) {
103 if (scope.equals("overrides")) {
108 if (scope.equals("parser")) {
111 if (scope
[all...]
H A DTarget.java117 /** Is scope in @scope::name {action} valid for this kind of grammar?
123 public boolean isValidActionScope(int grammarType, String scope) { argument
126 if ( scope.equals("lexer") ) {return true;}
129 if ( scope.equals("parser") ) {return true;}
132 if ( scope.equals("parser") ) {return true;}
133 if ( scope.equals("lexer") ) {return true;}
136 if ( scope.equals("treeparser") ) {return true;}
/external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
H A DCustomElements.js51 (function(scope) {
52 var flags = scope.flags;
59 module(scope);
62 scope.addModule = addModule;
63 scope.initializeModules = initializeModules;
64 scope.hasNative = Boolean(document.registerElement);
65 scope.useNative = !flags.register && scope.hasNative && !window.ShadowDOMPolyfill && (!window.HTMLImports || HTMLImports.useNative);
68 CustomElements.addModule(function(scope) {
122 scope
[all...]
/external/clang/test/CodeGenCXX/
H A Dblocks.cpp49 struct scope { int x; ~scope(); }; struct in namespace:test1
51 const scope obj = { 5 };
/external/libnl/lib/route/
H A Drtnl.c95 char *rtnl_scope2str(int scope, char *buf, size_t size) argument
97 return __type2str(scope, buf, size, scopes, ARRAY_SIZE(scopes));
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_extension.cc65 const string& scope,
70 vars["scope"] = scope;
143 " $scope$.getDefaultInstance(),\n"
199 "registry.add($scope$.$name$);\n",
200 "scope", scope_,
64 InitTemplateVars(const FieldDescriptor* descriptor, const string& scope, bool immutable, ClassNameResolver* name_resolver, map<string, string>* vars_pointer) argument
/external/selinux/libsepol/src/
H A Davrule_block.c4 * 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) argument
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
155 scope_datum_t *scope = local
[all...]
/external/skia/src/animator/
H A DSkDisplayApply.h55 SkADrawable* getScope() { return scope; }
87 SkADrawable* scope; member in class:SkApply

Completed in 925 milliseconds

1234567