/external/python/cpython3/Lib/test/ |
D | test_threading_local.py | 31 local = self._local() 58 class Local(self._local): 74 class Local(self._local): 113 class MyLocal(self._local): 119 self.assertRaises(TypeError, self._local, a=1) 120 self.assertRaises(TypeError, self._local, 1) 159 self._test_one_class(self._local) 162 class LocalSubclass(self._local): 176 self._test_dict_attribute(self._local) 179 class LocalSubclass(self._local): [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_threading_local.py | 29 local = self._local() 56 class Local(self._local): 72 class Local(self._local): 110 from thread import _local as local 160 self._test_one_class(self._local) 163 class LocalSubclass(self._local): 177 self._test_dict_attribute(self._local) 180 class LocalSubclass(self._local): 186 _local = _thread._local variable in ThreadLocalTest 194 x.local = self._local() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | CollectionStore.java | 14 private Collection<T> _local; field in CollectionStore 24 _local = new ArrayList<T>(collection); in CollectionStore() 37 return new ArrayList<T>(_local); in getMatches() 42 Iterator<T> iter = _local.iterator(); in getMatches()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/ |
D | CollectionStore.java | 16 private Collection<T> _local; field in CollectionStore 26 _local = new ArrayList<T>(collection); in CollectionStore() 39 return new ArrayList<T>(_local); in getMatches() 44 Iterator<T> iter = _local.iterator(); in getMatches()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/ |
D | CollectionStore.java | 16 private Collection<T> _local; field in CollectionStore 26 _local = new ArrayList<T>(collection); in CollectionStore() 39 return new ArrayList<T>(_local); in getMatches() 44 Iterator<T> iter = _local.iterator(); in getMatches()
|
/external/skia/infra/bots/ |
D | git_utils.py | 128 self._local = local 146 if self._local: 147 remote = self._local 154 if self._local:
|
/external/python/cpython3/Lib/asyncio/ |
D | events.py | 629 self._local = self._Local() 636 if (self._local._loop is None and 637 not self._local._set_called and 641 if self._local._loop is None: 645 return self._local._loop 649 self._local._set_called = True 651 self._local._loop = loop
|
D | unix_events.py | 1428 self._watcher.attach_loop(self._local._loop)
|
/external/llvm-project/llvm/test/CodeGen/AArch64/ |
D | nonlazybind.ll | 13 ; CHECK: bl _local 20 ; CHECK-NORMAL: bl _local
|
/external/rust/crates/chrono/src/offset/ |
D | utc.rs | 69 fn offset_from_local_date(&self, _local: &NaiveDate) -> LocalResult<Utc> { in offset_from_local_date() 72 fn offset_from_local_datetime(&self, _local: &NaiveDateTime) -> LocalResult<Utc> { in offset_from_local_datetime()
|
D | fixed.rs | 108 fn offset_from_local_date(&self, _local: &NaiveDate) -> LocalResult<FixedOffset> { in offset_from_local_date() 111 fn offset_from_local_datetime(&self, _local: &NaiveDateTime) -> LocalResult<FixedOffset> { in offset_from_local_datetime()
|
/external/autotest/server/site_tests/telemetry_AFDOGenerate/ |
D | telemetry_AFDOGenerate.py | 224 self._host, self._local, telemetry_on_dut=False) 280 self._local = False 296 self._local = (value == 'True')
|
/external/llvm-project/lld/test/MachO/ |
D | symtab.s | 11 # CHECK-NEXT: Name: _local (2) 102 _local: label
|
/external/autotest/server/hosts/ |
D | servo_host.py | 169 self._local = threading.local() 323 if not hasattr(self._local, "_per_thread_proxy"): 325 self._local._per_thread_proxy = six.moves.xmlrpc_client.ServerProxy(remote) 326 return self._local._per_thread_proxy
|
/external/python/cpython2/Lib/multiprocessing/ |
D | forking.py | 247 _tls = thread._local()
|
/external/python/cpython3/Lib/importlib/ |
D | metadata.py | 227 def _local(cls, root='.'): member in Distribution
|
/external/google-breakpad/docs/ |
D | symbol_files.md | 199 > _parameter\_size_ _saved\_register\_size_ _local\_size_ _max\_stack\_size_ 237 The _local\_size_ field gives the number of bytes in the stack frame dedicated 263 * Let _frame\_size_ be the sum of the _local\_size_ field, the 295 _local\_size_ fields.
|
/external/pigweed/ |
D | .pylintrc | 388 thread._local, 389 _thread._local,
|
/external/oss-fuzz/ |
D | .pylintrc | 389 ignored-classes=optparse.Values,thread._local,_thread._local
|
/external/python/cpython2/Lib/ |
D | decimal.py | 440 def getcontext(_local=local): argument 448 return _local.__decimal_context__ 451 _local.__decimal_context__ = context 454 def setcontext(context, _local=local): argument 459 _local.__decimal_context__ = context
|
D | threading.py | 1197 from thread import _local as local
|
/external/python/cpython3/Lib/ |
D | threading.py | 1447 from _thread import _local as local
|
/external/llvm/docs/CommandGuide/ |
D | lit.rst | 343 .. _local-configuration-files:
|
/external/llvm-project/llvm/docs/CommandGuide/ |
D | lit.rst | 413 .. _local-configuration-files:
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_events.py | 2540 self.assertIsNone(policy._local._loop) 2545 self.assertIs(policy._local._loop, loop)
|