/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container_hash/test/ |
D | hash_std_tuple_test.cpp | 42 std::tuple<> empty_tuple; in empty_tuple_test() local 43 BOOST_TEST(empty_tuple_hash(empty_tuple) == boost::hash_value(empty_tuple)); in empty_tuple_test()
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _lzmamodule.c | 84 PyObject *empty_tuple; member 272 if (!PyArg_ParseTupleAndKeywords(state->empty_tuple, spec, in INT_TYPE_CONVERTER_FUNC() 300 if (!PyArg_ParseTupleAndKeywords(state->empty_tuple, spec, "|OO&", optnames, in parse_filter_spec_delta() 324 if (!PyArg_ParseTupleAndKeywords(state->empty_tuple, spec, "|OO&", optnames, in parse_filter_spec_bcj() 1526 state->empty_tuple = PyTuple_New(0); in lzma_exec() 1527 if (state->empty_tuple == NULL) { in lzma_exec() 1612 Py_VISIT(state->empty_tuple); in lzma_traverse() 1623 Py_CLEAR(state->empty_tuple); in lzma_clear()
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | exceptions.c | 1502 PyObject *empty_tuple; in ImportError_init() local 1510 empty_tuple = PyTuple_New(0); in ImportError_init() 1511 if (!empty_tuple) in ImportError_init() 1513 if (!PyArg_ParseTupleAndKeywords(empty_tuple, kwds, "|$OO:ImportError", kwlist, in ImportError_init() 1515 Py_DECREF(empty_tuple); in ImportError_init() 1518 Py_DECREF(empty_tuple); in ImportError_init() 2190 PyObject *empty_tuple = PyTuple_New(0); in NameError_init() local 2191 if (!empty_tuple) { in NameError_init() 2194 if (!PyArg_ParseTupleAndKeywords(empty_tuple, kwds, "|$O:NameError", kwlist, in NameError_init() 2196 Py_DECREF(empty_tuple); in NameError_init() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/mpl/example/ |
D | inherit_linearly.cpp | 34 struct empty_tuple struct 43 , empty_tuple argument
|
/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_getargs2.py | 866 empty_tuple = () 895 _testcapi.parse_tuple_and_keywords(empty_tuple, dict_b, 910 empty_tuple = () 921 parse(empty_tuple, dict_b, optional_format, keywords) 925 parse(empty_tuple, dict_b, optional_format, keywords) 931 parse(empty_tuple, dict_b, optional_format, keywords) 935 parse(empty_tuple, dict_b, optional_format, keywords)
|
/aosp_15_r20/external/python/cpython3/Lib/test/test_capi/ |
D | test_getargs.py | 1170 empty_tuple = () 1199 _testcapi.parse_tuple_and_keywords(empty_tuple, dict_b, 1214 empty_tuple = () 1226 parse(empty_tuple, dict_b, optional_format, keywords) 1230 parse(empty_tuple, dict_b, optional_format, keywords) 1237 parse(empty_tuple, dict_b, optional_format, keywords) 1241 parse(empty_tuple, dict_b, optional_format, keywords)
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/ |
H A D | conditional_simplifier.cc | 161 const Shape empty_tuple = ShapeUtil::MakeTupleShape({}); in ReplaceRootWithEmptyTupleIfNoUsers() local 164 !ShapeUtil::Compatible(empty_tuple, conditional_op->shape())) { in ReplaceRootWithEmptyTupleIfNoUsers() 176 *conditional_op->mutable_shape() = empty_tuple; in ReplaceRootWithEmptyTupleIfNoUsers()
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | _lsprof.c | 128 static PyObject *empty_tuple; variable 133 PyObject *o = PyObject_Call(pObj->externalTimer, empty_tuple, NULL); in CallExternalTimer() 889 empty_tuple = PyTuple_New(0); in init_lsprof()
|
D | cPickle.c | 114 static PyObject *empty_tuple; variable 711 if (!( str = PyObject_CallObject(self->readline, empty_tuple))) { in readline_other() 2078 PyObject_Call(getinitargs_func, empty_tuple, NULL))) in save_inst() 2140 state = PyObject_Call(getstate_func, empty_tuple, NULL); in save_inst() 2810 empty_tuple, NULL); in save() 5923 if (!(empty_tuple = PyTuple_New(0))) in init_stuff()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/eager/ |
H A D | pywrap_tensor.cc | 100 static PyObject* empty_tuple = PyTuple_New(0); in EmptyTuple() local 101 return empty_tuple; in EmptyTuple()
|
H A D | pywrap_tfe_src.cc | 2970 tensorflow::Safe_PyObjectPtr empty_tuple(PyTuple_New(0)); local 2972 return PyTuple_Pack(2, empty_tuple.get(), empty_list.get());
|
/aosp_15_r20/external/python/cpython2/Python/ |
D | Python-ast.c | 653 PyObject *empty_tuple, *d; in add_ast_fields() local 657 empty_tuple = PyTuple_New(0); in add_ast_fields() 658 if (!empty_tuple || in add_ast_fields() 659 PyDict_SetItemString(d, "_fields", empty_tuple) < 0 || in add_ast_fields() 660 PyDict_SetItemString(d, "_attributes", empty_tuple) < 0) { in add_ast_fields() 661 Py_XDECREF(empty_tuple); in add_ast_fields() 664 Py_DECREF(empty_tuple); in add_ast_fields()
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | Python-ast.c | 1073 PyObject *empty_tuple; in add_ast_fields() local 1074 empty_tuple = PyTuple_New(0); in add_ast_fields() 1075 if (!empty_tuple || in add_ast_fields() 1076 PyObject_SetAttrString(state->AST_type, "_fields", empty_tuple) < 0 || in add_ast_fields() 1077 PyObject_SetAttrString(state->AST_type, "__match_args__", empty_tuple) < 0 || in add_ast_fields() 1078 PyObject_SetAttrString(state->AST_type, "_attributes", empty_tuple) < 0) { in add_ast_fields() 1079 Py_XDECREF(empty_tuple); in add_ast_fields() 1082 Py_DECREF(empty_tuple); in add_ast_fields()
|
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/client/ |
H A D | xla_builder.cc | 1899 XlaOp empty_tuple, in Outfeed() 1901 return empty_tuple; in Outfeed()
|