Home
last modified time | relevance | path

Searched defs:tup (Results 1 – 25 of 37) sorted by relevance

12

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
Dmake_from_tuple.pass.cpp63 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/
Duuid.py41 def uuidtup_to_bin(tup): argument
66 def uuidtup_to_string(tup): argument
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DIteratorTest.cpp278 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/
Dstructseq.c240 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
Dcodeobject.c222 validate_and_copy_tuple(PyObject *tup) in validate_and_copy_tuple()
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
Dtuple_array_template_depth.pass.cpp32 tuple_t tup; in main() local
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
Dtuple_array_template_depth.pass.cpp35 tuple_t tup(arr); in main() local
/external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/
Ddisable_reduced_arity_initialization_extension.pass.cpp75 auto tup = doc_example(); in test_example_from_docs() local
Denable_reduced_arity_initialization_extension.pass.cpp87 auto tup = doc_example(); in test_example_from_docs() local
/external/libcxx/test/std/utilities/intseq/intseq.general/
Dinteger_seq.pass.cpp54 auto tup = std::make_tuple ( 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ); in main() local
/external/python/cpython2/Modules/
Dtimemodule.c465 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.c1195 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.c1470 PyObject *tup; in defdict_missing() local
/external/python/cpython2/Lib/compiler/
Dmisc.py2 def flatten(tup): argument
/external/python/cpython3/Modules/
Dtimemodule.c704 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.c1487 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/
Dos.py719 def _make_stat_result(tup, dict): argument
731 def _make_statvfs_result(tup, dict): argument
Dcookielib.py1458 def _cookie_from_cookie_tuple(self, tup, request): argument
/external/python/cpython3/Objects/
Dstructseq.c245 PyObject* tup = NULL; in structseq_reduce() local
Dcodeobject.c297 validate_and_copy_tuple(PyObject *tup) in validate_and_copy_tuple()
Dmemoryobject.c2203 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/
Ddeduction.cpp249 template <typename... Es> struct tup : tup_impl<0, Es...> {}; struct
/external/python/cpython3/Lib/
Dfunctools.py407 def __init__(self, tup, hash=hash): argument
/external/scapy/scapy/layers/tls/
Dcert.py279 def import_from_tuple(self, tup): argument
/external/python/cpython3/Python/
Derrors.c152 PyObject *tup; in _PyErr_SetKeyError() local

12