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

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/ip/
routef 4 exec ip -4 ro flush scope global type unicast
  /external/guice/core/src/com/google/inject/spi/
ScopeBinding.java 22 import com.google.inject.Scope;
27 * Registration of a scope annotation with the scope that implements it. Instances are created
28 * explicitly in a module using {@link com.google.inject.Binder#bindScope(Class, Scope) bindScope()}
31 * Scope recordScope = new RecordScope();
40 private final Scope scope; field in class:ScopeBinding
42 ScopeBinding(Object source, Class<? extends Annotation> annotationType, Scope scope) {
45 this.scope = checkNotNull(scope, "scope")
    [all...]
  /external/mesa3d/src/util/
vk_alloc.h 34 VkSystemAllocationScope scope)
36 return alloc->pfnAllocation(alloc->pUserData, size, align, scope);
42 VkSystemAllocationScope scope)
44 return alloc->pfnReallocation(alloc->pUserData, ptr, size, align, scope);
60 VkSystemAllocationScope scope)
63 return vk_alloc(alloc, size, align, scope);
65 return vk_alloc(parent_alloc, size, align, scope);
72 VkSystemAllocationScope scope)
74 void *mem = vk_alloc2(parent_alloc, alloc, size, align, scope);
  /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...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CTarget.java 81 /** Is scope in @scope::name {action} valid for this kind of grammar?
88 public boolean isValidActionScope(int grammarType, String scope) {
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.equals("header"))
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/solver/query/parameter/
BasicQueryParameterAdapter.kt 28 scope: CodeGenScope) {
29 scope.builder().apply {
30 bindAdapter.bindToStmt(stmtVarName, startIndexVarName, inputVarName, scope)
34 override fun getArgCount(inputVarName: String, outputVarName : String, scope: CodeGenScope) {
ArrayQueryParameterAdapter.kt 32 scope: CodeGenScope) {
33 scope.builder().apply {
34 val itrVar = scope.getTmpVar("_item")
37 bindAdapter.bindToStmt(stmtVarName, startIndexVarName, itrVar, scope)
44 override fun getArgCount(inputVarName: String, outputVarName : String, scope: CodeGenScope) {
45 scope.builder()
CollectionQueryParameterAdapter.kt 32 scope: CodeGenScope) {
33 scope.builder().apply {
34 val itrVar = scope.getTmpVar("_item")
37 bindAdapter.bindToStmt(stmtVarName, startIndexVarName, itrVar, scope)
44 override fun getArgCount(inputVarName: String, outputVarName : String, scope: CodeGenScope) {
45 scope.builder()
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
SignerStub.java 53 * Constructor, sets given name and scope
56 * @param scope
59 public SignerStub(String name, IdentityScope scope)
61 super(name, scope);
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/solver/query/result/
ArrayQueryResultAdapter.kt 28 override fun convert(outVarName: String, cursorVarName: String, scope: CodeGenScope) {
29 scope.builder().apply {
30 rowAdapter?.onCursorReady(cursorVarName, scope)
35 val tmpVarName = scope.getTmpVar("_item")
36 val indexVar = scope.getTmpVar("_index")
40 rowAdapter?.convert(tmpVarName, cursorVarName, scope)
45 rowAdapter?.onCursorFinished()?.invoke(scope)
SingleEntityQueryResultAdapter.kt 30 override fun convert(outVarName: String, cursorVarName: String, scope: CodeGenScope) {
31 scope.builder().apply {
32 rowAdapter?.onCursorReady(cursorVarName, scope)
35 rowAdapter?.convert(outVarName, cursorVarName, scope)
40 rowAdapter?.onCursorFinished()?.invoke(scope)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope):
    [all...]
  /external/python/cpython2/Lib/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/solver/types/
CompositeAdapter.kt 33 scope: CodeGenScope) {
37 scope.builder().apply {
38 val tmpCursorValue = scope.getTmpVar()
40 columnTypeAdapter.readFromCursor(tmpCursorValue, cursorVarName, indexVarName, scope)
41 fromCursorConverter.convert(tmpCursorValue, outVarName, scope)
46 scope: CodeGenScope) {
50 scope.builder().apply {
51 val tmpVar = scope.getTmpVar()
53 intoStatementConverter.convert(valueVarName, tmpVar, scope)
54 columnTypeAdapter.bindToStmt(stmtName, indexVarName, tmpVar, scope)
    [all...]
CompositeTypeConverter.kt 29 override fun convert(inputVarName: String, outputVarName: String, scope: CodeGenScope) {
30 scope.builder().apply {
31 val tmp = scope.getTmpVar()
33 conv1.convert(inputVarName, tmp, scope)
34 conv2.convert(tmp, outputVarName, scope)
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/settings/
SettingsManager.java 51 * Scope
53 * This API introduces the concept of "scope" for a setting, which is the generality
55 * entire application, have a scope of SCOPE_GLOBAL. They are stored in the default
59 * a custom scope. The specific module can define whatever scope (String) argument
60 * they want, and the settings saved with that scope can only be seen by that third
61 * party module. Scope is a general concept that helps protect settings values
115 * custom scope.
124 * Open a SharedPreferences file by custom scope.
128 protected SharedPreferences openPreferences(String scope) {
    [all...]
  /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...]
  /art/tools/checker/match/
file.py 23 MatchInfo = namedtuple("MatchInfo", ["scope", "variables"])
33 tested in the same scope (consecutive DAG and NOT instructions).
46 def findMatchingLine(assertion, c1Pass, scope, variables, excludeLines=[]):
49 Scan only lines numbered between `scope.start` and `scope.end` and not on the
57 for i in range(scope.start, scope.end):
62 raise MatchFailedException(assertion, scope.start, variables)
64 def matchDagGroup(assertions, c1Pass, scope, variables):
68 lines in `scope` are scanned and each line can only match one assertion
    [all...]
  /external/selinux/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];
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/writer/
SQLiteOpenHelperWriter.kt 39 fun write(outVar : String, configuration : ParameterSpec, scope: CodeGenScope) {
40 scope.builder().apply {
41 val sqliteConfigVar = scope.getTmpVar("_sqliteConfig")
42 val callbackVar = scope.getTmpVar("_openCallback")
46 createOpenCallback(scope), database.identityHash)
64 private fun createOpenCallback(scope: CodeGenScope) : TypeSpec {
69 addMethod(createOnCreate(scope.fork()))
70 addMethod(createOnOpen(scope.fork()))
71 addMethod(createValidateMigration(scope.fork()))
75 private fun createValidateMigration(scope: CodeGenScope): MethodSpec
    [all...]
  /external/selinux/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 if (scope->class_perms_map) {
87 for (i = 0; i < scope->class_perms_len; i++) {
88 ebitmap_destroy(scope->class_perms_map + i)
157 scope_datum_t *scope = local
    [all...]

Completed in 1056 milliseconds

1 2 3 4 5 6 7 8 91011>>