/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/libunwind/doc/ |
D | unw_init_local.tex | 8 \begin{Name}{3}{unw\_init\_local}{David Mosberger-Tang}{Programming Library}{unw\_init\_local}unw\_… 15 \Type{int} \Func{unw\_init\_local}(\Type{unw\_cursor\_t~*}\Var{c}, \Type{unw\_context\_t~*}\Var{ctx… 19 The \Func{unw\_init\_local}() routine initializes the unwind cursor 26 The \Func{unw\_init\_local}() routine can be used only for unwinding in 41 \Func{unw\_init\_local}(). Also, \Func{unw\_init\_local}() is 48 On successful completion, \Func{unw\_init\_local}() returns 0. 54 \Func{unw\_init\_local}() is thread-safe as well as safe to use from a 60 \item[\Const{UNW\_EINVAL}] \Func{unw\_init\_local}() was called in a 62 (this normally happens when calling \Func{unw\_init\_local}() for a 65 \item[\Const{UNW\_EBADREG}] A register needed by \Func{unw\_init\_local}()
|
D | unw_init_remote.tex | 22 \Var{unw\_local\_addr\_space} (local address space) or to an arbitrary 26 should be unwound. For example, if \Var{unw\_local\_addr\_space} is 38 generally preferable to use \Func{unw\_init\_local}() instead, because 69 \SeeAlso{unw\_init\_local(3)}
|
D | unw_get_proc_info_by_ip.tex | 31 \Var{unw\_local\_addr\_space} can be passed for this argument. 39 \Var{unw\_local\_addr\_space}), \Const{NULL} must be passed for this
|
D | unw_destroy_addr_space.tex | 24 \Var{unw\_local\_addr\_space}. Attempting to do so results in
|
D | libunwind.tex | 18 \Type{int} \Func{unw\_init\_local}(\Type{unw\_cursor\_t~*}, \Type{unw\_context\_t~*});\\ 35 \Type{unw\_addr\_space\_t} \Var{unw\_local\_addr\_space};\\ 72 done with a call to \Func{unw\_init\_local}(). The cursor now points 187 \Func{unw\_init\_local}(), except that it takes an address-space 230 native case. Attempting to call, e.g., \Func{unw\_local\_init}() when 333 \SeeAlso{unw\_init\_local(3)},
|
D | unw_get_accessors.tex | 28 \Var{unw\_local\_addr\_space}.
|
D | unw_getcontext.tex | 53 \SeeAlso{unw\_init\_local(3)}
|
D | unw_set_caching_policy.tex | 46 \Func{unw\_local\_addr\_space}, caching is turned on by default.
|
/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/libxcam/modules/soft/ |
D | soft_worker.cpp | 107 , _local (1, 1, 1) in SoftWorker() 159 _local = size; in set_local_size() 175 XCAM_ASSERT (_local.value[0] * _local.value[1] * _local.value[2]); in work() 182 items.value[i] = xcam_ceil (_global.value[i], _local.value[i]) / _local.value[i]; in work() 240 range.pos[i] = item.value[i] * _local.value[i]; in get_range() 242 if (range.pos[i] + _local.value[i] > _global.value[i]) in get_range() 245 range.pos_len[i] = _local.value[i]; in get_range()
|
D | soft_worker.h | 74 return _local; in get_local_size() 95 WorkSize _local; variable
|
/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/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/python/cpython3/Lib/asyncio/ |
D | events.py | 630 self._local = self._Local() 637 if (self._local._loop is None and 638 not self._local._set_called and 642 if self._local._loop is None: 646 return self._local._loop 650 self._local._set_called = True 652 self._local._loop = loop
|
D | unix_events.py | 1103 self._watcher.attach_loop(self._local._loop)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | nonlazybind.ll | 13 ; CHECK: bl _local 20 ; CHECK-NORMAL: bl _local
|
/external/autotest/server/site_tests/telemetry_AFDOGenerate/ |
D | telemetry_AFDOGenerate.py | 102 self._host, self._local, telemetry_on_dut=False) 160 self._local = False 176 self._local = (value == 'True')
|
/external/toolchain-utils/automation/clients/helper/ |
D | perforce.py | 66 return self._local 69 self._local = self._FixPath(path_s)
|
/external/python/cpython2/Lib/multiprocessing/ |
D | forking.py | 247 _tls = 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 | 1302 from _thread import _local as local
|
/external/llvm/docs/CommandGuide/ |
D | lit.rst | 343 .. _local-configuration-files:
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/CommandGuide/ |
D | lit.rst | 381 .. _local-configuration-files:
|