/third_party/python/Lib/test/ |
H A D | test_threading_local.py | 36 local = self._local() 63 class Local(self._local): 79 class Local(self._local): 118 class MyLocal(self._local): 124 self.assertRaises(TypeError, self._local, a=1) 125 self.assertRaises(TypeError, self._local, 1) 164 self._test_one_class(self._local) 167 class LocalSubclass(self._local): 181 self._test_dict_attribute(self._local) 184 class LocalSubclass(self._local) 214 _local = _thread._local global() variable in ThreadLocalTest 217 _local = _threading_local.local global() variable in PyThreadingLocalTest [all...] |
/third_party/libunwind/libunwind/doc/ |
H A D | unw_init_local.tex | 8 \begin{Name}{3}{unw\_init\_local}{David Mosberger-Tang}{Programming Library}{unw\_init\_local}unw\_init\_local -- initialize cursor for local unwinding 15 \Type{int} \Func{unw\_init\_local}(\Type{unw\_cursor\_t~*}\Var{c}, \Type{unw\_context\_t~*}\Var{ctxt});\\ 20 The \Func{unw\_init\_local}() routine initializes the unwind cursor 31 The \Func{unw\_init\_local}() routine can be used only for unwinding in 35 \Func{unw\_init\_local}(). Also, \Func{unw\_init\_local}() is 47 On successful completion, \Func{unw\_init\_local}() returns 0. 53 \Func{unw\_init\_local}() i [all...] |
H A 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)}
|
H A D | unw_destroy_addr_space.tex | 24 \Var{unw\_local\_addr\_space}. Attempting to do so results in
|
H A 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
|
H A 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};\\ 74 done with a call to \Func{unw\_init\_local}(). The cursor now points 189 \Func{unw\_init\_local}(), except that it takes an address-space 232 native case. Attempting to call, e.g., \Func{unw\_local\_init}() when 336 \SeeAlso{unw\_init\_local(3)},
|
H A D | unw_get_accessors.tex | 28 \Var{unw\_local\_addr\_space}.
|
H A D | unw_getcontext.tex | 53 \SeeAlso{unw\_init\_local(3)}
|
H A D | unw_set_caching_policy.tex | 46 \Func{unw\_local\_addr\_space}, caching is turned on by default.
|
/third_party/skia/infra/bots/ |
H A D | git_utils.py | 128 self._local = local 146 if self._local: 147 remote = self._local 154 if self._local:
|
/third_party/python/Lib/asyncio/ |
H A D | events.py | 664 self._local = self._Local() 671 if (self._local._loop is None and 672 not self._local._set_called and 676 if self._local._loop is None: 680 return self._local._loop 684 self._local._set_called = True 687 self._local._loop = loop
|
H A D | unix_events.py | 1447 self._watcher.attach_loop(self._local._loop)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | version.py | 550 _local: CmpLocalType = NegativeInfinity 559 _local = tuple( 563 return epoch, _release, _pre, _post, _dev, _local
|
/third_party/node/deps/v8/src/heap/ |
H A D | weak-object-worklists.cc | 23 #define INIT_LOCAL_WORKLIST(_, name, __) , name##_local(&weak_objects->name) 30 #define INVOKE_PUBLISH(_, name, __) name##_local.Publish(); in Publish()
|
H A D | weak-object-worklists.h | 79 WeakObjectWorklist<Type>::Local name##_local;
|
/third_party/python/Lib/ |
H A D | threading.py | 1602 from _thread import _local as local
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_events.py | 2590 self.assertIsNone(policy._local._loop) 2594 self.assertIs(policy._local._loop, loop) 2608 # policy._local._loop must be set through .set_event_loop()
|