HomeSort by relevance Sort by last modified time
    Searched defs:type_list (Results 1 - 13 of 13) sorted by null

  /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) {}
  /art/dexlayout/
dex_visualize.cc 152 const dex_ir::TypeList* type_list = proto_id->Parameters(); local
153 if (type_list != nullptr) {
154 for (const dex_ir::TypeId* t : *type_list->GetTypeList()) {
dex_writer.cc 272 std::unique_ptr<dex_ir::TypeList>& type_list = type_list_pair.second; local
273 size[0] = type_list->GetTypeList()->size();
274 uint32_t offset = type_list->GetOffset();
276 for (const dex_ir::TypeId* type_id : *type_list->GetTypeList()) {
dex_ir.cc 340 const DexFile::TypeList* type_list = dex_file.GetProtoParameters(disk_proto_id); local
341 TypeList* parameter_type_list = CreateTypeList(type_list, disk_proto_id.parameters_off_);
371 const DexFile::TypeList* type_list = dex_file.GetInterfacesList(disk_class_def); local
372 TypeList* interfaces_type_list = CreateTypeList(type_list, disk_class_def.interfaces_off_);
    [all...]
dexlayout.cc 251 const dex_ir::TypeList* type_list = proto->Parameters(); local
252 if (type_list != nullptr) {
253 for (const dex_ir::TypeId* type_id : *type_list->GetTypeList()) {
    [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/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/pdfium/third_party/freetype/src/base/
ftrfork.c 61 FT_Long type_list; local
133 if ( FT_READ_USHORT( type_list ) )
135 if ( type_list == -1 )
138 error = FT_Stream_Seek( stream, (FT_ULong)( map_pos + type_list ) );
142 *map_offset = map_pos + type_list;
  /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
  /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...]
  /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...]
  /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...]

Completed in 799 milliseconds