/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/ |
D | make_from_tuple.pass.cpp | 63 constexpr bool do_constexpr_test(Tuple&& tup) { in do_constexpr_test() 76 bool do_forwarding_test(Tuple&& tup) { in do_forwarding_test() 86 constexpr std::tuple<> tup; in test_constexpr_construction() local 90 constexpr std::tuple<int> tup(42); in test_constexpr_construction() local 94 constexpr std::tuple<int, long, void*> tup(42, 101, nullptr); in test_constexpr_construction() local 114 Tup tup; in test_perfect_forwarding() local 121 Tup tup(42); in test_perfect_forwarding() local 132 Tup tup(x, "hello world", std::move(y)); in test_perfect_forwarding() local 143 Tup tup(x, "hello world"); in test_perfect_forwarding() local 153 Tup tup = {42, 101, -1}; in test_perfect_forwarding() local [all …]
|
/external/curl/tests/python_dependencies/impacket/ |
D | uuid.py | 41 def uuidtup_to_bin(tup): argument 66 def uuidtup_to_string(tup): argument
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | IteratorTest.cpp | 278 for (auto tup : zip(pi, odd, message)) { in TEST() local 284 for (auto tup : zip(pi, SmallVector<bool, 0>{1, 1, 0, 1, 1})) { in TEST() local 294 for (auto tup : zip_first(SmallVector<bool, 0>{1, 1, 0, 1}, pi)) { in TEST() local 307 for (auto tup : zip(pi, message, message)) { in TEST() local 313 for (auto tup : zip(message, "yynyyyzip\0")) { in TEST() local 323 for (auto tup : zip_first(SmallVector<bool, 0>{1, 1, 0, 1}, pi)) { in TEST() local 330 for (auto tup : zip_first(SmallVector<bool, 0>{1, 1, 0, 1}, pi)) { in TEST() local 342 for (auto tup : make_filter_range( in TEST() local 362 for (auto tup : reverse(zipped)) { in TEST() local 369 auto odds = [](decltype(zipped)::value_type tup) { return get<1>(tup); }; in TEST() [all …]
|
/external/python/cpython2/Objects/ |
D | structseq.c | 240 PyObject *tup; in structseq_repr() local 318 PyObject *tup, *result; in structseq_concat() local 328 PyObject *tup, *result; in structseq_repeat() local 338 PyObject *tup; in structseq_contains() local 351 PyObject *tup; in structseq_hash() local 364 PyObject *tup, *result; in structseq_richcompare() local 374 PyObject* tup; in structseq_reduce() local
|
D | codeobject.c | 222 validate_and_copy_tuple(PyObject *tup) in validate_and_copy_tuple()
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/ |
D | tuple_array_template_depth.pass.cpp | 32 tuple_t tup; in main() local
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
D | tuple_array_template_depth.pass.cpp | 35 tuple_t tup(arr); in main() local
|
/external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/ |
D | disable_reduced_arity_initialization_extension.pass.cpp | 75 auto tup = doc_example(); in test_example_from_docs() local
|
D | enable_reduced_arity_initialization_extension.pass.cpp | 87 auto tup = doc_example(); in test_example_from_docs() local
|
/external/libcxx/test/std/utilities/intseq/intseq.general/ |
D | integer_seq.pass.cpp | 54 auto tup = std::make_tuple ( 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ); in main() local
|
/external/python/cpython2/Modules/ |
D | timemodule.c | 465 PyObject *tup = NULL; in time_strftime() local 666 PyObject *tup = NULL; in time_asctime() local 727 time_mktime(PyObject *self, PyObject *tup) in time_mktime()
|
D | _ssl.c | 1195 PyObject *tup; in _get_aia_uri() local 3852 PyObject *keyusage = NULL, *cert = NULL, *enc = NULL, *tup = NULL; in PySSL_enum_certificates() local 3942 PyObject *crl = NULL, *enc = NULL, *tup = NULL; in PySSL_enum_crls() local
|
D | _collectionsmodule.c | 1470 PyObject *tup; in defdict_missing() local
|
/external/python/cpython2/Lib/compiler/ |
D | misc.py | 2 def flatten(tup): argument
|
/external/python/cpython3/Modules/ |
D | timemodule.c | 704 PyObject *tup = NULL; in time_strftime() local 916 PyObject *tup = NULL; in time_asctime() local 963 time_mktime(PyObject *self, PyObject *tup) in time_mktime()
|
D | _ssl.c | 1487 PyObject *tup; in _get_aia_uri() local 1957 PyObject *tup = cipher_to_tuple(sk_SSL_CIPHER_value(ciphers, i)); in _ssl__SSLSocket_shared_ciphers_impl() local 5423 PyObject *keyusage = NULL, *cert = NULL, *enc = NULL, *tup = NULL; in _ssl_enum_certificates_impl() local 5511 PyObject *crl = NULL, *enc = NULL, *tup = NULL; in _ssl_enum_crls_impl() local
|
/external/python/cpython2/Lib/ |
D | os.py | 719 def _make_stat_result(tup, dict): argument 731 def _make_statvfs_result(tup, dict): argument
|
D | cookielib.py | 1458 def _cookie_from_cookie_tuple(self, tup, request): argument
|
/external/python/cpython3/Objects/ |
D | structseq.c | 245 PyObject* tup = NULL; in structseq_reduce() local
|
D | codeobject.c | 297 validate_and_copy_tuple(PyObject *tup) in validate_and_copy_tuple()
|
D | memoryobject.c | 2203 ptr_from_tuple(Py_buffer *view, PyObject *tup) in ptr_from_tuple() 2261 memory_item_multi(PyMemoryViewObject *self, PyObject *tup) in memory_item_multi()
|
/external/clang/test/SemaTemplate/ |
D | deduction.cpp | 249 template <typename... Es> struct tup : tup_impl<0, Es...> {}; struct
|
/external/python/cpython3/Lib/ |
D | functools.py | 407 def __init__(self, tup, hash=hash): argument
|
/external/scapy/scapy/layers/tls/ |
D | cert.py | 279 def import_from_tuple(self, tup): argument
|
/external/python/cpython3/Python/ |
D | errors.c | 152 PyObject *tup; in _PyErr_SetKeyError() local
|