Home
last modified time | relevance | path

Searched refs:_scope (Results 1 – 25 of 33) sorted by relevance

12

/external/jackson-annotations/src/main/java/com/fasterxml/jackson/annotation/
DObjectIdGenerators.java29 protected final Class<?> _scope; field in ObjectIdGenerators.Base
32 _scope = scope; in Base()
37 return _scope; in getScope()
42 return (gen.getClass() == getClass()) && (gen.getScope() == _scope); in canUseFor()
98 return (_scope == scope) ? this : new IntSequenceGenerator(scope, _nextValue); in forScope()
103 return new IntSequenceGenerator(_scope, initialValue()); in newForSerialization()
112 return new IdKey(getClass(), _scope, key); in key()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DObjectIdInfo.java20 protected final Class<?> _scope; field in ObjectIdInfo
45 _scope = scope; in ObjectIdInfo()
62 return new ObjectIdInfo(_propertyName, _scope, _generator, state, _resolver); in withAlwaysAsId()
66 public Class<?> getScope() { return _scope; } in getScope()
74 +", scope="+ClassUtil.nameOf(_scope) in toString()
/external/llvm-project/lld/lib/ReaderWriter/MachO/
DAtoms.h33 _align(align), _contentType(type), _scope(scope), _merge(merge), in MachODefinedAtom()
42 _contentType(type), _scope(scope), _merge(mergeNo), _thumb(false), in MachODefinedAtom()
55 Scope scope() const override { return _scope; } in scope()
81 const Scope _scope; variable
115 : SimpleDefinedAtom(f), _name(std::string(name)), _scope(scope), in MachOTentativeDefAtom()
130 Scope scope() const override { return _scope; } in scope()
136 const Scope _scope; variable
/external/autotest/client/cros/enterprise/
Dpolicy.py33 self._scope = None
53 return {self.name: {'scope': self._scope,
107 return self._scope
111 self._scope = scope
145 self._scope = 'machine'
147 self._scope = 'user'
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/objectid/
DJSOGDeserialize622Test.java42 protected final Class<?> _scope; field in JSOGDeserialize622Test.JSOGGenerator
47 _scope = scope; in JSOGGenerator()
53 return _scope; in getScope()
58 return (gen.getClass() == getClass()) && (gen.getScope() == _scope); in canUseFor()
63 return (_scope == scope) ? this : new JSOGGenerator(scope, _nextValue); in forScope()
68 return new JSOGGenerator(_scope, 1); in newForSerialization()
73 return new IdKey(getClass(), _scope, key); in key()
/external/tensorflow/tensorflow/python/keras/legacy_tf_layers/
Dbase.py237 self._scope = captured_scope
239 self._scope = None
279 if not self._scope:
285 return self._scope.name
311 if self._scope is None:
316 self._scope = captured_scope
320 self._scope = captured_scope
446 self._scope, reuse=reuse, auxiliary_name_scope=False) as scope:
537 self._scope, reuse=True, auxiliary_name_scope=False)
546 self._scope, reuse=self._reuse, auxiliary_name_scope=False)
Dbase_test.py222 self.assertEqual(layer_copy._scope.name, layer._scope.name)
236 self.assertEqual(default_layer._scope.name, 'private_layer')
239 self.assertEqual(default_layer1._scope.name, 'private_layer_1')
242 self.assertEqual(my_layer._scope.name, 'my_layer')
245 self.assertEqual(my_layer1._scope.name, 'my_layer_1')
248 self.assertEqual(my_layer2._scope.name, 'my_layer_2')
253 self.assertEqual(default_layer2._scope.name, 'private_layer_2')
256 self.assertEqual(my_layer3._scope.name, 'my_layer_3')
259 self.assertEqual(other_layer._scope.name, 'other_layer')
264 self.assertEqual(default_layer_scoped._scope.name,
[all …]
Dconvolutional.py224 _scope=name)
436 _scope=name)
650 _scope=name)
998 _scope=name)
1126 _scope=name)
1315 _scope=name)
1495 _scope=name)
Dnormalization.py337 _scope=name)
Dcore.py186 _scope=name,
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/
DPropertyBasedObjectIdGenerator.java35 if (other.getScope() == _scope) { in canUseFor()
62 return (scope == _scope) ? this : new PropertyBasedObjectIdGenerator(scope, _property); in forScope()
77 return new IdKey(getClass(), _scope, key); in key()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DPropertyBasedObjectIdGenerator.java23 return (scope == _scope) ? this : new PropertyBasedObjectIdGenerator(scope); in forScope()
37 return new IdKey(getClass(), _scope, key); in key()
/external/tensorflow/tensorflow/python/keras/distribute/
Dctl_correctness_test.py54 self._scope = None
58 self._scope = self._strategy.scope()
59 self._scope.__enter__()
63 self._scope.__exit__(exc_type, value, traceback)
64 self._scope = None
Dkeras_correctness_test_base.py133 self._scope = None
137 self._scope = self._distribution.scope()
138 self._scope.__enter__()
142 self._scope.__exit__(exc_type, value, traceback)
143 self._scope = None
/external/rust/crates/protobuf-codegen/src/
Dfile_descriptor.rs3 pub(crate) fn file_descriptor_proto_expr(_scope: &Scope) -> String { in file_descriptor_proto_expr()
/external/rust/crates/crossbeam-utils/tests/
Dthread.rs200 let handle = scope.spawn(|_scope| { in as_pthread_t()
215 let handle = scope.spawn(|_scope| { in as_raw_handle()
/external/llvm-project/lld/lib/ReaderWriter/YAML/
DReaderWriterYAML.cpp817 _scope(atom->scope()), _interpose(atom->interposable()), in NormalizedAtom()
868 Scope scope() const override { return _scope; } in scope()
923 Scope _scope; member in llvm::yaml::MappingTraits::NormalizedAtom
959 io.mapOptional("scope", keys->_scope, in mapping()
1142 : _file(fileFromContext(io)), _scope(), _value(0) {} in NormalizedAtom()
1146 _scope(atom->scope()), _value(atom->value()) {} in NormalizedAtom()
1176 Scope scope() const override { return _scope; } in scope()
1181 Scope _scope; member in llvm::yaml::MappingTraits::NormalizedAtom
1204 io.mapOptional("scope", keys->_scope); in mapping()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
DPerl5.stg407 <ruleDescriptor.useScopes:{<it>_stack.push(new <it>_scope());}; separator="\n">
408 <ruleDescriptor.ruleScope:{<it.name>_stack.push(new <it.name>_scope());}; separator="\n">
1135 protected static class <scope.name>_scope {
1144 protected static class <scope.name>_scope {
1221 ((<scope>_scope)<scope>_stack.elementAt(<scope>_stack.size()-<negIndex>-1)).<attr.name>
1224 ((<scope>_scope)<scope>_stack.elementAt(<index>)).<attr.name>
1226 ((<scope>_scope)<scope>_stack.peek()).<attr.name>
1233 ((<scope>_scope)<scope>_stack.elementAt(<scope>_stack.size()-<negIndex>-1)).<attr.name> =<expr>;
1236 ((<scope>_scope)<scope>_stack.elementAt(<index>)).<attr.name> =<expr>;
1238 ((<scope>_scope)<scope>_stack.peek()).<attr.name> =<expr>;
/external/tensorflow/tensorflow/python/keras/layers/
Dnormalization.py441 if hasattr(self, '_scope') and self._scope:
442 partitioner = self._scope.partitioner
443 self._scope.set_partitioner(None)
517 self._scope.set_partitioner(partitioner)
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
DCSharp3.stg623 <ruleDescriptor.useScopes:{it|<it>_stack.Push(new <it>_scope(this));<it>_scopeInit(<it>_stack.Peek(…
624 <ruleDescriptor.ruleScope:{it|<it.name>_stack.Push(new <it.name>_scope(this));<it.name>_scopeInit(<…
1465 protected sealed partial class <scope.name>_scope
1469 public <scope.name>_scope(<grammar.recognizerName> grammar) { OnCreated(grammar); }
1473 protected void <scope.name>_scopeInit( <scope.name>_scope scope )
1478 partial void <scope.name>_scopeInit( <scope.name>_scope scope );
1481 protected void <scope.name>_scopeAfter( <scope.name>_scope scope )
1486 partial void <scope.name>_scopeAfter( <scope.name>_scope scope );
1488 protected readonly ListStack\<<scope.name>_scope> <scope.name>_stack = new ListStack\<<scope.name>_…
/external/pigweed/pw_protobuf/py/pw_protobuf/
Dcodegen_pwpb.py60 self._scope: ProtoNode = scope
117 scope = self._root if from_root else self._scope
/external/python/oauth2client/oauth2client/contrib/
Dappengine.py593 self._scope = util.scopes_to_string(scope)
671 self._client_id, self._client_secret, self._scope,
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Java/
DJava.stg448 <ruleDescriptor.useScopes:{it |<it>_stack.push(new <it>_scope());}; separator="\n">
449 <ruleDescriptor.ruleScope:{it |<it.name>_stack.push(new <it.name>_scope());}; separator="\n">
1211 protected static class <scope.name>_scope {
1214 protected Stack\<<scope.name>_scope> <scope.name>_stack = new Stack\<<scope.name>_scope>();
1221 protected static class <scope.name>_scope {
1224 protected Stack\<<scope.name>_scope> <scope.name>_stack = new Stack\<<scope.name>_scope>();
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
DCSharp2.stg645 <ruleDescriptor.useScopes:{it|<it>_stack.Push(new <it>_scope());<it>_scopeInit(<it>_stack.Peek());}…
646 <ruleDescriptor.ruleScope:{it|<it.name>_stack.Push(new <it.name>_scope());<it.name>_scopeInit(<it.n…
1488 protected sealed partial class <scope.name>_scope
1493 protected void <scope.name>_scopeInit( <scope.name>_scope scope )
1498 protected virtual void <scope.name>_scopeInit( <scope.name>_scope scope ) {}
1501 protected void <scope.name>_scopeAfter( <scope.name>_scope scope )
1506 protected virtual void <scope.name>_scopeAfter( <scope.name>_scope scope ) {}
1508 protected readonly ListStack\<<scope.name>_scope> <scope.name>_stack = new ListStack\<<scope.name>_…
/external/rust/crates/futures-executor/src/
Dthread_pool.rs153 let _scope = enter().unwrap(); in work() localVariable

12