Home
last modified time | relevance | path

Searched refs:include_extras (Results 1 – 7 of 7) sorted by relevance

/external/flac/src/test_libFLAC/
Dmetadata_manip.c517 static FLAC__bool generate_file_(FLAC__bool include_extras, FLAC__bool is_ogg) in generate_file_() argument
601 if(include_extras) { in generate_file_()
610 (include_extras && !insert_to_our_metadata_(cuesheet, i++, /*copy=*/false)) || in generate_file_()
611 (include_extras && !insert_to_our_metadata_(&picture, i++, /*copy=*/true)) || in generate_file_()
623 if(!include_extras) in generate_file_()
/external/flac/src/test_libFLAC++/
Dmetadata_manip.cpp503 static bool generate_file_(bool include_extras, bool is_ogg) in generate_file_() argument
587 if(include_extras) { in generate_file_()
601 (include_extras && !insert_to_our_metadata_(&c, i++, /*copy=*/true)) || in generate_file_()
602 (include_extras && !insert_to_our_metadata_(&pi, i++, /*copy=*/true)) || in generate_file_()
/external/python/cpython3/Lib/
Dtyping.py1362 def get_type_hints(obj, globalns=None, localns=None, include_extras=False): argument
1412 return hints if include_extras else {k: _strip_annotations(t) for k, t in hints.items()}
1446 return hints if include_extras else {k: _strip_annotations(t) for k, t in hints.items()}
/external/python/cpython3/Doc/library/
Dtyping.rst748 Passing ``include_extras=True`` to :func:`get_type_hints` lets one
1659 .. function:: get_type_hints(obj, globalns=None, localns=None, include_extras=False)
1673 unless ``include_extras`` is set to ``True`` (see :class:`Annotated` for
1680 get_type_hints(Student, include_extras=False) == {'name': str}
1681 get_type_hints(Student, include_extras=True) == {
1686 Added ``include_extras`` parameter as part of :pep:`593`.
/external/python/cpython3/Lib/test/
Dtest_typing.py2962 get_type_hints(foobar, globals(), locals(), include_extras=True),
2973 get_type_hints(foobar, globals(), locals(), include_extras=True),
2981 get_type_hints(barfoo, globals(), locals(), include_extras=True)['x'],
2989 get_type_hints(barfoo, globals(), locals(), include_extras=True)['x'],
3003 get_type_hints(barfoo3, globals(), locals(), include_extras=True)["x"],
3025 get_type_hints(MySet.__iand__, globals(), locals(), include_extras=True),
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a4.rst497 Add :data:`typing.Annotated` and ``include_extras`` parameter to
/external/python/cpython3/Doc/whatsnew/
D3.9.rst693 types with context-specific metadata and new ``include_extras`` parameter to