Searched refs:get_origin (Results 1 – 14 of 14) sorted by relevance
/third_party/libabigail/src/ |
D | abg-ctf-reader.cc | 359 if ((corp->get_origin() & corpus::LINUX_KERNEL_BINARY_ORIGIN) in slurp_elf_info() 425 if ((corp->get_origin() & corpus::LINUX_KERNEL_BINARY_ORIGIN) in process_ctf_archive() 654 corpus::origin origin = corpus()->get_origin(); in read_corpus() 667 if ((corp->get_origin() & corpus::LINUX_KERNEL_BINARY_ORIGIN) in read_corpus()
|
D | abg-elf-reader.cc | 872 corpus::origin origin = corpus()->get_origin(); in read_corpus()
|
D | abg-ir-priv.h | 1069 if (!(t->get_corpus()->get_origin() == ir::corpus::NATIVE_XML_ORIGIN)) in check_canonical_type_from_abixml_during_self_comp()
|
D | abg-corpus.cc | 827 corpus::get_origin() const in get_origin() function in abigail::ir::corpus
|
D | abg-ir.cc | 3252 || (f->get_corpus()->get_origin() == corpus::NATIVE_XML_ORIGIN in operator ()() 3253 && s->get_corpus()->get_origin() == corpus::NATIVE_XML_ORIGIN)) in operator ()() 3351 || (f->get_corpus()->get_origin() == corpus::NATIVE_XML_ORIGIN in operator ()() 3352 && s->get_corpus()->get_origin() == corpus::NATIVE_XML_ORIGIN)) in operator ()() 13967 && (t1_corpus->get_origin() & corpus::LINUX_KERNEL_BINARY_ORIGIN) in types_defined_same_linux_kernel_corpus_public()
|
D | abg-dwarf-reader.cc | 2095 corpus::origin origin = corpus()->get_origin(); in read_debug_info_into_corpus()
|
/third_party/python/Lib/test/ |
D | test_typing.py | 18 from typing import get_origin, get_args 3287 self.assertIs(get_origin(C[int]), C) 3288 self.assertIs(get_origin(C[T]), C) 3289 self.assertIs(get_origin(int), None) 3290 self.assertIs(get_origin(ClassVar[int]), ClassVar) 3291 self.assertIs(get_origin(Union[int, str]), Union) 3292 self.assertIs(get_origin(Literal[42, 43]), Literal) 3293 self.assertIs(get_origin(Final[List[int]]), Final) 3294 self.assertIs(get_origin(Generic), Generic) 3295 self.assertIs(get_origin(Generic[T]), Generic) [all …]
|
/third_party/libabigail/include/ |
D | abg-corpus.h | 114 get_origin() const;
|
/third_party/python/Doc/library/ |
D | typing.rst | 1202 Calling :func:`get_origin` on either of these objects will return the 1206 get_origin(P.args) # returns P 1207 get_origin(P.kwargs) # returns P 2063 .. function:: get_origin(tp) 2076 assert get_origin(Dict[str, int]) is dict 2079 assert get_origin(Union[int, str]) is Union
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a4.rst | 256 :func:`typing.get_args` and :func:`typing.get_origin` now support :pep:`604`
|
D | 3.9.0a6.rst | 301 Functions :func:`typing.get_origin`, :func:`typing.get_args` and
|
D | 3.8.0b1.rst | 531 Add ``get_origin()`` and ``get_args()`` introspection helpers to ``typing``
|
/third_party/python/Lib/ |
D | typing.py | 1880 def get_origin(tp): function
|
/third_party/python/Doc/whatsnew/ |
D | 3.8.rst | 1342 * New functions :func:`typing.get_origin` and :func:`typing.get_args`.
|