Home
last modified time | relevance | path

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

/external/eigen/unsupported/Eigen/CXX11/src/util/
DEmulateCXX11Meta.h25 struct empty_list { static const std::size_t count = 0; }; argument
27 template<typename T, typename Tail=empty_list> struct type_list {
47 typedef empty_list type;
117 struct get<i, empty_list>
125 struct get<i, type_list<Head, empty_list> >
133 struct get<0, type_list<Head, empty_list> >
157 template <> struct arg_prod<empty_list> {
/external/tensorflow/tensorflow/compiler/xla/
Dutil_test.cc53 std::list<int64> empty_list; in TEST() local
54 EXPECT_EQ(VectorString(empty_list), "()"); in TEST()
/external/protobuf/python/google/protobuf/internal/
Dwell_known_types_test.py849 empty_list = struct['empty_list']
850 self.assertEqual([], list(empty_list.items()))
853 empty_list = list2[0]
854 self.assertEqual([], list(empty_list.items()))
900 empty_list = struct['empty_list']
901 self.assertEqual([], list(empty_list.items()))
/external/python/cpython3/Modules/
Ditertoolsmodule.c1620 PyObject *empty_list; in islice_reduce() local
1622 empty_list = PyList_New(0); in islice_reduce()
1623 if (empty_list == NULL) in islice_reduce()
1625 empty_it = PyObject_GetIter(empty_list); in islice_reduce()
1626 Py_DECREF(empty_list); in islice_reduce()
/external/llvm-project/lldb/source/API/
DSBTarget.cpp742 SBFileSpecList empty_list; in BreakpointCreateByLocation() local
744 BreakpointCreateByLocation(sb_file_spec, line, offset, empty_list)); in BreakpointCreateByLocation()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp919 static FileSpecList empty_list; in GetTypeUnitSupportFiles() local
925 return empty_list; in GetTypeUnitSupportFiles()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc2891 tensorflow::Safe_PyObjectPtr empty_list(PyList_New(0)); local
2892 return PyTuple_Pack(2, empty_tuple.get(), empty_list.get());