Home
last modified time | relevance | path

Searched refs:_local (Results 1 – 25 of 29) sorted by relevance

12

/external/python/cpython3/Lib/test/
Dtest_threading_local.py31 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/
Dtest_threading_local.py29 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/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/
DCollectionStore.java16 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/bcprov/src/main/java/org/bouncycastle/util/
DCollectionStore.java14 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_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/
DCollectionStore.java16 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/
Dgit_utils.py128 self._local = local
146 if self._local:
147 remote = self._local
154 if self._local:
/external/python/cpython3/Lib/asyncio/
Devents.py629 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
Dunix_events.py1428 self._watcher.attach_loop(self._local._loop)
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dnonlazybind.ll13 ; CHECK: bl _local
20 ; CHECK-NORMAL: bl _local
/external/rust/crates/chrono/src/offset/
Dutc.rs69 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()
Dfixed.rs108 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/
Dtelemetry_AFDOGenerate.py224 self._host, self._local, telemetry_on_dut=False)
280 self._local = False
296 self._local = (value == 'True')
/external/llvm-project/lld/test/MachO/
Dsymtab.s11 # CHECK-NEXT: Name: _local (2)
102 _local: label
/external/autotest/server/hosts/
Dservo_host.py169 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/google-breakpad/docs/
Dsymbol_files.md199 > _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/python/cpython2/Lib/multiprocessing/
Dforking.py247 _tls = thread._local()
/external/python/cpython3/Lib/importlib/
Dmetadata.py227 def _local(cls, root='.'): member in Distribution
/external/pigweed/
D.pylintrc388 thread._local,
389 _thread._local,
/external/oss-fuzz/
D.pylintrc389 ignored-classes=optparse.Values,thread._local,_thread._local
/external/python/cpython2/Lib/
Ddecimal.py440 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
Dthreading.py1197 from thread import _local as local
/external/python/cpython3/Lib/
Dthreading.py1447 from _thread import _local as local
/external/llvm/docs/CommandGuide/
Dlit.rst343 .. _local-configuration-files:
/external/llvm-project/llvm/docs/CommandGuide/
Dlit.rst413 .. _local-configuration-files:
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_events.py2540 self.assertIsNone(policy._local._loop)
2545 self.assertIs(policy._local._loop, loop)

12