Home
last modified time | relevance | path

Searched refs:__callback__ (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/breakpoint/serialize/
Dresolver.py11 def __callback__(self, sym_ctx): member in Resolver
/external/llvm-project/lldb/test/API/functionalities/breakpoint/scripted_bkpt/
Dresolver.py14 def __callback__(self, sym_ctx): member in Resolver
/external/python/cpython3/Lib/test/
Dtest_weakref.py911 self.assertIs(ref1.__callback__, callback)
914 self.assertIsNone(ref2.__callback__)
919 self.assertIsNotNone(ref.__callback__)
922 self.assertIsNone(ref.__callback__)
929 ref1.__callback__ = lambda ref: None
/external/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig410 // Check that __callback__ is defined:
411 auto callback_func = result.ResolveName<PythonCallable>("__callback__");
453 if (strcmp(method_name, "__callback__") == 0) {
/external/python/cpython3/Doc/library/
Dweakref.rst122 .. attribute:: __callback__
129 Added the :attr:`__callback__` attribute.
333 :attr:`ref.__callback__`. A weak reference object allows the referent to be
/external/llvm-project/lldb/docs/use/
Dpython-reference.rst344 | **__callback__** | **sym_ctx: lldb.SBSymbolContext** | This is the Resolver callback. …
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1760 exposed via the :attr:`~weakref.ref.__callback__` attribute. (Contributed
/external/python/cpython3/Misc/
DHISTORY4454 - Issue #17643: Add __callback__ attribute to weakref.ref.