Searched refs:type_index (Results 1 – 16 of 16) sorted by relevance
/external/libcxx/include/ |
D | typeindex | 21 class type_index 24 type_index(const type_info& rhs) noexcept; 26 bool operator==(const type_index& rhs) const noexcept; 27 bool operator!=(const type_index& rhs) const noexcept; 28 bool operator< (const type_index& rhs) const noexcept; 29 bool operator<=(const type_index& rhs) const noexcept; 30 bool operator> (const type_index& rhs) const noexcept; 31 bool operator>=(const type_index& rhs) const noexcept; 38 struct hash<type_index> 39 : public unary_function<type_index, size_t> [all …]
|
/external/libcxx/test/std/utilities/type.index/type.index.hash/ |
D | hash.pass.cpp | 26 typedef std::hash<std::type_index> H; in main() 27 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" ); in main() 30 std::type_index t1 = typeid(int); in main() 31 assert(std::hash<std::type_index>()(t1) == t1.hash_code()); in main()
|
/external/libcxx/test/std/utilities/type.index/type.index.members/ |
D | eq.pass.cpp | 22 std::type_index t1 = typeid(int); in main() 23 std::type_index t2 = typeid(int); in main() 24 std::type_index t3 = typeid(long); in main()
|
D | lt.pass.cpp | 24 std::type_index t1 = typeid(int); in main() 25 std::type_index t2 = typeid(int); in main() 26 std::type_index t3 = typeid(long); in main()
|
D | hash_code.pass.cpp | 22 std::type_index t1 = typeid(int); in main()
|
D | ctor.pass.cpp | 23 std::type_index t1(info); in main()
|
D | name.pass.cpp | 23 std::type_index t1 = typeid(int); in main()
|
/external/v8/test/mjsunit/wasm/ |
D | wasm-module-builder.js | 76 constructor(name, type_index) { argument 78 this.type_index = type_index; 142 let type_index = (typeof type) == "number" ? type : this.addType(type); 143 let func = new WasmFunctionBuilder(name, type_index); 150 let type_index = (typeof type) == "number" ? type : this.addType(type); 151 this.imports.push({module: module, name: name, type: type_index}); 220 section.emit_varint(func.type_index);
|
/external/libcxx/test/std/utilities/type.index/type.index.overview/ |
D | copy_ctor.pass.cpp | 21 std::type_index t1(typeid(int)); in main() 22 std::type_index t2 = t1; in main()
|
D | copy_assign.pass.cpp | 21 std::type_index t1(typeid(int)); in main() 22 std::type_index t2(typeid(double)); in main()
|
/external/libcxx/test/std/utilities/type.index/type.index.synopsis/ |
D | hash_type_index.pass.cpp | 23 typedef std::hash<std::type_index> H; in main() 24 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" ); in main()
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 569 final int type_index = cls.addClassref ("[[Z"); in visit() local 571 type_index >>> 8, // indexbyte1 in visit() 572 type_index, // indexbyte2 in visit()
|
/external/libgdx/extensions/gdx-bullet/jni/src/extras/Serialize/BulletFileLoader/ |
D | bFile.cpp | 1585 …printf("tag='%s'\tptr=%p\ttype=%s\t[%4d]", bb->tag, bb,bf->types[bb->type_index].name,bb->m_array… in dumpChunks()
|
/external/selinux/libsepol/src/ |
D | policydb.c | 887 static int type_index(hashtab_key_t key, hashtab_datum_t datum, void *datap) in type_index() function 959 common_index, class_index, role_index, type_index, user_index,
|
/external/v8/src/ |
D | api.cc | 7507 HeapObjectStatistics* object_statistics, size_t type_index) { in GetHeapObjectStatisticsAtLastGC() argument 7513 if (type_index >= heap->NumberOfTrackedHeapObjectTypes()) return false; in GetHeapObjectStatisticsAtLastGC() 7517 size_t object_count = heap->ObjectCountAtLastGC(type_index); in GetHeapObjectStatisticsAtLastGC() 7518 size_t object_size = heap->ObjectSizeAtLastGC(type_index); in GetHeapObjectStatisticsAtLastGC() 7519 if (!heap->GetObjectTypeName(type_index, &object_type, &object_sub_type)) { in GetHeapObjectStatisticsAtLastGC()
|
/external/v8/include/ |
D | v8.h | 5860 size_t type_index);
|