HomeSort by relevance Sort by last modified time
    Searched refs:type_list (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/test/SemaCXX/
crash-lambda-12645424.cpp 10 template<typename... Types> struct type_list;
22 template<typename... Ts, template<typename> class... Funs> struct tl_map<type_list<Ts...>, Funs...> {
23 typedef type_list<typename C<Ts, Funs...>::type...> type;
39 template<typename Arg0> rvalue_builder< type_list<Arg0> > on(const Arg0& ) ;
  /external/eigen/unsupported/test/
cxx11_meta.cpp 16 using Eigen::internal::type_list;
134 VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<>>::type, type_list<dummy_a, dummy_a>>::value));
135 VERIFY((is_same<typename concat<type_list<>, type_list<dummy_a, dummy_a>>::type, type_list<dummy_a, dummy_a>>::value));
136 VERIFY((is_same<typename concat<type_list<dummy_a, dummy_a>, type_list<dummy_a, dummy_a>>::type, type_list<dummy_a, dummy_a, dummy_a, dummy_a>>::value))
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/util/
TemplateGroupTheory.h 67 * type_list<typename...> and numeric_list<typename = int, int...>
127 struct strip_identities<Equality, id, type_list<t, ts...>>
131 typename strip_identities<Equality, id, type_list<ts...>>::type,
132 typename concat<type_list<t>, typename strip_identities<Equality, id, type_list<ts...>>::type>::type
134 constexpr static int global_flags = Equality<id, t>::global_flags | strip_identities<Equality, id, type_list<ts...>>::global_flags;
142 struct strip_identities<Equality, id, type_list<EIGEN_TPL_PP_SPEC_HACK_USE(ts)>>
144 typedef type_list<> type;
177 typename concat<elements, type_list<current_element>>::type,
218 typedef type_list<first_generator> generators_done
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/util/
CXX11Meta.h 34 struct type_list { constexpr static int count = sizeof...(tt); }; struct in namespace:Eigen::internal
37 struct type_list<t, tt...> { constexpr static int count = sizeof...(tt) + 1; typedef t first_type; }; struct in namespace:Eigen::internal
71 template<typename... as, typename... bs> struct concat<type_list<as...>, type_list<bs...>> { typedef type_list<as..., bs...> type; };
82 template<int n, typename a, typename... as> struct take<n, type_list<a, as...>> : concat<type_list<a>, typename take<n-1, type_list<as...>>::type> {};
83 template<int n> struct take<n, type_list<>> { typedef type_list<> type; }
    [all...]
EmulateCXX11Meta.h 27 template<typename T, typename Tail=empty_list> struct type_list { struct in namespace:Eigen::internal
43 typedef type_list<T1, tailresult> type;
54 struct get_type<0, type_list<Head, Tail> >
60 struct get_type<i, type_list<Head, Tail> >
125 struct get<i, type_list<Head, empty_list> >
133 struct get<0, type_list<Head, empty_list> >
140 struct get<0, type_list<Head, Tail> >
147 struct get<i, type_list<Head, Tail> >
170 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE typename Head::type array_get(type_list<Head, Tail>&) {
171 return get<I, type_list<Head, Tail> >::value
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
StaticSymmetry.h 140 struct tensor_static_symgroup_do_apply<internal::type_list<first, next...>>
148 return tensor_static_symgroup_do_apply<internal::type_list<next...>>::template run<Op, RV, SGNumIndices>(idx, initial, args...);
156 return tensor_static_symgroup_do_apply<internal::type_list<next...>>::template run<Op, RV, SGNumIndices>(idx, initial, args...);
161 struct tensor_static_symgroup_do_apply<internal::type_list<EIGEN_TPL_PP_SPEC_HACK_USE(empty)>>
188 internal::type_list<typename internal::tensor_static_symgroup_element_ctor<Gen, NumIndices>::type...>
DynamicSymmetry.h 159 add_all(internal::type_list<Gen...>());
168 inline void add_all(internal::type_list<Gen1, GenNext...>)
171 add_all(internal::type_list<GenNext...>());
174 inline void add_all(internal::type_list<>)
  /external/v8/src/wasm/
function-body-decoder.h 82 ZoneVector<ValueType> type_list; member in struct:v8::internal::wasm::BodyLocalDecls
85 explicit BodyLocalDecls(Zone* zone) : encoded_size(0), type_list(zone) {}
wasm-text.cc 77 if (!decls.type_list.empty()) {
79 for (const ValueType &v : decls.type_list) {
function-body-decoder.cc 176 ZoneVector<ValueType>* type_list) {
177 DCHECK_NOT_NULL(type_list);
180 type_list->reserve(sig->parameter_count());
182 type_list->push_back(sig->GetParam(i));
194 if ((count + type_list->size()) > kV8MaxWasmFunctionLocals) {
231 type_list->insert(type_list->end(), count, type);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
except.h 106 tree type_list; variable
108 /* A TREE_LIST of INTEGER_CSTs that correspond to the type_list entries,
146 tree type_list; member in struct:eh_region_u::eh_region_u_allowed
  /art/dexlayout/
dex_visualize.cc 154 const dex_ir::TypeList* type_list = proto_id->Parameters(); local
155 if (type_list != nullptr) {
156 for (const dex_ir::TypeId* t : *type_list->GetTypeList()) {
dex_ir.cc 336 const DexFile::TypeList* type_list = dex_file.GetProtoParameters(disk_proto_id); local
337 TypeList* parameter_type_list = CreateTypeList(type_list, disk_proto_id.parameters_off_);
367 const DexFile::TypeList* type_list = dex_file.GetInterfacesList(disk_class_def); local
368 TypeList* interfaces_type_list = CreateTypeList(type_list, disk_class_def.interfaces_off_);
394 TypeList* type_list = type_lists_map_.GetExistingObject(offset); local
395 if (type_list == nullptr) {
401 type_list = new TypeList(type_vector);
402 AddItem(type_lists_map_, type_lists_, type_list, offset);
404 return type_list;
    [all...]
dex_writer.cc 285 for (std::unique_ptr<dex_ir::TypeList>& type_list : header_->GetCollections().TypeLists()) {
287 size[0] = type_list->GetTypeList()->size();
288 ProcessOffset(stream, type_list.get());
290 for (const dex_ir::TypeId* type_id : *type_list->GetTypeList()) {
    [all...]
dex_ir.h 249 TypeList* CreateTypeList(const DexFile::TypeList* type_list, uint32_t offset);
661 explicit TypeList(TypeIdVector* type_list) : type_list_(type_list) {
662 size_ = sizeof(uint32_t) + (type_list->size() * sizeof(uint16_t));
    [all...]
  /external/freetype/src/base/
ftrfork.c 61 FT_Long type_list; local
157 if ( FT_READ_SHORT( type_list ) )
159 if ( type_list < 0 )
162 error = FT_Stream_Seek( stream, (FT_ULong)( map_pos + type_list ) );
166 *map_offset = map_pos + type_list;
  /external/tensorflow/tensorflow/python/kernel_tests/
cast_op_test.py 70 type_list = [
74 type_list = [
78 for from_type in type_list:
79 for to_type in type_list:
  /external/python/cpython3/Objects/
object.c 91 static PyTypeObject *type_list; variable
92 /* All types are added to type_list, at least when
96 is set, they will be removed from the type_list
116 for (tp = type_list; tp; tp = tp->tp_next)
143 for (tp = type_list; tp; tp = tp->tp_next) {
167 if (type_list)
168 type_list->tp_prev = tp;
169 tp->tp_next = type_list;
173 * refcounts here. type_list gets a new reference to tp,
174 * while ownership of the reference type_list used to hol
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
object.c 78 static PyTypeObject *type_list; variable
79 /* All types are added to type_list, at least when
83 is set, they will be removed from the type_list
94 for (tp = type_list; tp; tp = tp->tp_next)
121 for (tp = type_list; tp; tp = tp->tp_next) {
145 if (type_list)
146 type_list->tp_prev = tp;
147 tp->tp_next = type_list;
151 * refcounts here. type_list gets a new reference to tp,
152 * while ownership of the reference type_list used to hold
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
object.c 78 static PyTypeObject *type_list; variable
79 /* All types are added to type_list, at least when
83 is set, they will be removed from the type_list
94 for (tp = type_list; tp; tp = tp->tp_next)
121 for (tp = type_list; tp; tp = tp->tp_next) {
145 if (type_list)
146 type_list->tp_prev = tp;
147 tp->tp_next = type_list;
151 * refcounts here. type_list gets a new reference to tp,
152 * while ownership of the reference type_list used to hold
    [all...]
  /external/python/cpython2/Objects/
object.c 78 static PyTypeObject *type_list; variable
79 /* All types are added to type_list, at least when
83 is set, they will be removed from the type_list
94 for (tp = type_list; tp; tp = tp->tp_next)
121 for (tp = type_list; tp; tp = tp->tp_next) {
145 if (type_list)
146 type_list->tp_prev = tp;
147 tp->tp_next = type_list;
151 * refcounts here. type_list gets a new reference to tp,
152 * while ownership of the reference type_list used to hol
    [all...]
  /external/tensorflow/tensorflow/core/framework/
op_def_util.cc 529 const auto& type_list = new_attr->default_value().list().type(); local
530 if (type_list.empty()) continue;
531 for (int i = 0; i < type_list.size(); ++i) {
535 &s, DataTypeString(static_cast<DataType>(type_list.Get(i))));
op_kernel_test.cc 664 status.emplace_back("type_list", context->GetAttr(attr_name, &type_list));
701 std::vector<DataType> type_list; member in class:tensorflow::__anon39587::GetAttrKernel
839 get_attr_kernel->ExpectOk({"type_list", "type_vector"});
840 ASSERT_EQ(2, get_attr_kernel->type_list.size());
841 EXPECT_EQ(DT_INT32, get_attr_kernel->type_list[0]);
842 EXPECT_EQ(DT_BOOL, get_attr_kernel->type_list[1]);
    [all...]
op_kernel.cc     [all...]
  /external/vulkan-validation-layers/scripts/
helper_file_generator.py     [all...]

Completed in 661 milliseconds

1 2