Home
last modified time | relevance | path

Searched refs:make_array (Results 1 – 4 of 4) sorted by relevance

/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp28 int make_array(array<sizeof...(Types)>&, Types... args);
32 int aa1 = make_array<int>(a1,1); in qq3()
34 int aa2 = make_array<int>(a2, 0L, "abc"); in qq3()
41 static array<sizeof...(Types)> make_array(Types ... args);
45 array<2> arr2 = AAA<int, int>::make_array<int>(1,2); in qq4()
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp28 int make_array(array<sizeof...(Types)>&, Types... args);
32 int aa1 = make_array<int>(a1,1); in qq3()
34 int aa2 = make_array<int>(a2, 0L, "abc"); in qq3()
41 static array<sizeof...(Types)> make_array(Types ... args);
45 array<2> arr2 = AAA<int, int>::make_array<int>(1,2); in qq4()
/external/libbrillo/brillo/
Darray_utils.h19 constexpr auto make_array(T&&... values) { in make_array() function
/external/python/cpython3/Modules/
Darraymodule.c1889 make_array(PyTypeObject *arraytype, char typecode, PyObject *items) in make_array() function
1983 return make_array(arraytype, (char)typecode, items); in array__array_reconstructor_impl()
2129 result = make_array(arraytype, (char)typecode, converted_items); in array__array_reconstructor_impl()