HomeSort by relevance Sort by last modified time
    Searched defs:scope (Results 51 - 75 of 1213) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/security/
IdentityScope.java 34 * <p>This class represents a scope for identities. It is an Identity
35 * itself, and therefore has a name and can have a scope. It can also
46 * there can only be one copy of one key per scope. For example, suppose
49 * associated certificates. It is named in the scope using the name
50 * "Acme Software". No other named Identity in the scope has the same
71 /* The system's scope */
72 private static IdentityScope scope; field in class:IdentityScope
74 // initialize the system scope
80 return Security.getProperty("system.scope");
90 // Android-changed: Actually set the system scope after initializing i
    [all...]
  /prebuilts/go/darwin-x86/src/net/
addrselect.go 59 Scope scope
70 Scope: classifyScope(ip),
123 // Rule 2: Prefer matching scope.
124 // If Scope(DA) = Scope(Source(DA)) and Scope(DB) <> Scope(Source(DB)),
125 // then prefer DA. Similarly, if Scope(DA) <> Scope(Source(DA)) an
318 type scope uint8 type
    [all...]
  /prebuilts/go/linux-x86/src/net/
addrselect.go 59 Scope scope
70 Scope: classifyScope(ip),
123 // Rule 2: Prefer matching scope.
124 // If Scope(DA) = Scope(Source(DA)) and Scope(DB) <> Scope(Source(DB)),
125 // then prefer DA. Similarly, if Scope(DA) <> Scope(Source(DA)) an
318 type scope uint8 type
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/guice/
InvocationScope.java 28 import com.google.inject.Scope;
36 * <p>The scope can be initialized with one or more seed values by calling <code>seed(key, value)
38 * test invocation to enter/exit the scope, representing an invocation Scope, and seed configuration
49 public class InvocationScope implements Scope {
60 + " explicitly seeded in this scope by calling"
76 /** Start marking the scope of the Tradefed Invocation. */
82 /** Mark the end of the scope for the Tradefed Invocation. */
90 * the invocation scope to be used.
112 * Seed a key/value that will be available during the TF invocation scope to be used
140 public <T> Provider<T> scope(final Key<T> key, final Provider<T> unscoped) { method in class:InvocationScope
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
IdentityScope2Test.java 64 public IdentityScopeSubclass(String name, IdentityScope scope)
66 super(name, scope);
101 "This Identity is already contained in the scope");
104 "This Identity's public key already exists in the scope");
111 "This Identity is not contained in the scope");
149 IdentityScope iss = new IdentityScopeSubclass("test scope");
319 IdentityScope scope = IdentityScope.getSystemScope(); local
321 scope.getIdentity((String) null);
  /build/blueprint/
scope.go 52 scope() *basicScope
76 scope := newScope(parent)
78 _, err := scope.LookupVariable(argName)
81 err = scope.AddVariable(arg)
84 // the name is valid and that the scope doesn't have a variable
91 // We treat built-in variables like arguments for the purpose of this scope.
94 err := scope.AddVariable(arg)
100 return scope
211 return fmt.Errorf("import %q is already defined in this scope", name)
221 return fmt.Errorf("variable %q is already defined in this scope", name
401 func (r *localRule) scope() *basicScope { func
    [all...]
  /development/vndk/tools/header-checker/header-abi-util/src/
version_script_parser.cpp 145 LineScope scope) {
147 scope = LineScope::local;
149 return scope;
154 LineScope scope = LineScope::global; local
163 scope = GetLineScope(line, scope);
164 if (scope != LineScope::global || StringContains(line, "global:")) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
NameSpaceChecker.java 58 // walk rule scope attributes for Rule r
72 AttributeScope scope = (AttributeScope) it.next(); local
73 checkForGlobalScopeTokenConflict(scope);
121 * Give error if you cannot find the scope override on a rule reference.
187 protected void checkForGlobalScopeTokenConflict(AttributeScope scope) {
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 dynamic attribute
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Binding.java 229 * The scope of this binding.
231 Scope scope() { method in class:Binding
232 return Scope.unscoped();
ComponentDescriptor.java 190 * The scope of the component.
192 abstract Scope scope(); method in class:ComponentDescriptor
345 Scope scope = Scope.scopeOf(componentDefinitionType);
354 scope,
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
Indexer.java 22 import com.google.inject.Scope;
61 final Object scope; field in class:Indexer.IndexedBinding
65 IndexedBinding(Binding<?> binding, BindingType type, Object scope, Object extraEquality) {
66 this.scope = scope;
81 && Objects.equal(scope, o.scope)
89 return Objects.hashCode(type, scope, typeLiteral, annotationType, annotationName,
104 private Object scope(Binding<?> binding) { method in class:Indexer
109 return new Indexer.IndexedBinding(binding, BindingType.CONSTRUCTOR, scope(binding)
    [all...]
  /external/iproute2/ip/
ip_common.h 14 int scope, scopemask; member in struct:link_filter
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
FieldAccessExpr.java 45 * <br/>In <code>person.name</code> "name" is the name and "person" is the scope.
51 private Expression scope; field in class:FieldAccessExpr
62 public FieldAccessExpr(final Expression scope, final String name) {
63 this(null, scope, new NodeList<>(), new SimpleName(name));
67 public FieldAccessExpr(final Expression scope, final NodeList<Type> typeArguments, final SimpleName name) {
68 this(null, scope, typeArguments, name);
75 public FieldAccessExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, SimpleName name) {
77 setScope(scope);
124 return scope;
145 * Sets the scope
    [all...]
MethodCallExpr.java 48 * is the scope, String is a type argument, bb is the name and 15 is an argument.
55 private Expression scope; field in class:MethodCallExpr
72 public MethodCallExpr(final Expression scope, final String name) {
73 this(null, scope, new NodeList<>(), new SimpleName(name), new NodeList<>());
76 public MethodCallExpr(final Expression scope, final SimpleName name) {
77 this(null, scope, new NodeList<>(), name, new NodeList<>());
80 public MethodCallExpr(final Expression scope, final String name, final NodeList<Expression> arguments) {
81 this(null, scope, new NodeList<>(), new SimpleName(name), arguments);
84 public MethodCallExpr(final Expression scope, final SimpleName name, final NodeList<Expression> arguments) {
85 this(null, scope, new NodeList<>(), name, arguments)
    [all...]
MethodReferenceExpr.java 50 * <br/>In <code>System.out::println;</code> the scope is System.out and the identifier is "println"
52 * <br/>In <code>Bar&lt;String>::&lt;Integer>new</code> the String type argument is on the scope,
59 private Expression scope; field in class:MethodReferenceExpr
72 public MethodReferenceExpr(Expression scope, NodeList<Type> typeArguments, String identifier) {
73 this(null, scope, typeArguments, identifier);
80 public MethodReferenceExpr(TokenRange tokenRange, Expression scope, NodeList<Type> typeArguments, String identifier) {
82 setScope(scope);
102 return scope;
106 public MethodReferenceExpr setScope(final Expression scope) {
107 assertNotNull(scope);
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
JavaParserFacadeResolutionTest.java 132 Expression scope = methodCallExpr.getScope().get(); local
133 ResolvedType type = JavaParserFacade.get(new ReflectionTypeSolver()).getType(scope);
  /external/libnl/python/netlink/route/
address.py 188 def scope(self): member in class:Address
189 """Address scope"""
190 scope = capi.rtnl_addr_get_scope(self._rtnl_addr)
191 return capi.rtnl_scope2str(scope, 32)[0]
193 @scope.setter
194 def scope(self, value): member in class:Address
344 buf += fmt.format(' {a|scope}')
  /external/libxml2/doc/
search.php 93 $scope = $HTTP_GET_VARS[ "scope" ]; variable
100 if ($scope == NULL)
101 $scope = "any"; variable
102 $scope = ltrim ($scope); variable
103 if ($scope == "")
104 $scope = "any"; variable
113 <select name="scope">
115 <option value="XML" <?php if ($scope == 'XML') print "selected"?>>XML resources</option
    [all...]
  /external/mesa3d/src/mesa/program/
symbol_table.c 35 * The linked list of symbols with the same name is ordered by scope
41 * Link to the next symbol in the table with the same scope
43 * The linked list of symbols with the same scope is unordered. Symbols
48 /** Scope depth where this symbol was defined. */
59 * Element of the scope stack.
62 /** Link to next (inner) scope level. */
65 /** Linked list of symbols with the same scope. */
77 /** Top of scope stack. */
80 /** Current scope depth. */
87 struct scope_level *const scope = table->current_scope local
119 struct scope_level *const scope = calloc(1, sizeof(*scope)); local
    [all...]
  /external/pdfium/fxjs/xfa/
cjx_subform.cpp 183 void CJX_Subform::scope(CFXJSE_Value* pValue, function in class:CJX_Subform
  /external/selinux/libsepol/tests/
test-common.c 31 scope_datum_t *scope; local
39 /* make sure its scope is correct */
40 scope = hashtab_search(p->scope[sym_type].table, id);
41 CU_ASSERT_FATAL(scope != NULL);
42 CU_ASSERT(scope->scope == scope_type);
43 CU_ASSERT(scope->decl_ids_len == len);
44 if (scope->decl_ids_len != len)
45 fprintf(stderr, "sym %s has %d decls, %d expected\n", id, scope->decl_ids_len, len)
    [all...]
  /external/tensorflow/tensorflow/cc/tools/
freeze_saved_model_test.cc 182 Scope scope = Scope::NewRootScope(); local
183 Output a = ops::Const(scope.WithOpName("a"), 10.0f, {});
184 Output b = ops::Const(scope.WithOpName("b"), 10.0f, {});
185 Output c = ops::Mul(scope.WithOpName("c"), a, b);
186 TF_ASSERT_OK(scope.ToGraphDef(&graph_def));
205 Scope scope = Scope::NewRootScope() local
241 Scope scope = Scope::NewRootScope(); local
275 Scope scope = Scope::NewRootScope(); local
    [all...]
  /external/tensorflow/tensorflow/core/grappler/optimizers/
model_pruner_test.cc 57 tensorflow::Scope s = tensorflow::Scope::NewRootScope();
93 tensorflow::Scope s = tensorflow::Scope::NewRootScope();
131 tensorflow::Scope s = tensorflow::Scope::NewRootScope();
168 tensorflow::Scope scope = tensorflow::Scope::NewRootScope(); local
169 ops::Variable v_in(scope.WithOpName("v_in"), {3}, DT_FLOAT)
    [all...]
  /external/v8/src/profiler/
tick-sample.cc 212 i::ExternalCallbackScope* scope = isolate->external_callback_scope(); local
214 // If there is a handler on top of the external callback scope then
217 if (scope && scope->scope_address() < handler) {
219 scope->callback_entrypoint_address();
  /frameworks/base/core/java/android/net/
LinkAddress.java 47 * <li>Address scope: One of the {@code OsConstants.IFA_F_*} values; defines the scope in which
70 * Address scope. One of the RT_SCOPE_* constants.
72 private int scope; field in class:LinkAddress
75 * Utility function to determines the scope of a unicast address. Per RFC 4291 section 2.5 and
89 // says that they are assigned global scope.
130 private void init(InetAddress address, int prefixLength, int flags, int scope) {
142 this.scope = scope;
147 * the specified flags and scope. Flags and scope are not checked for validity
    [all...]

Completed in 1316 milliseconds

1 23 4 5 6 7 8 91011>>