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

1 2 3 4

  /external/libcxx/test/std/utilities/type.index/type.index.overview/
copy_ctor.pass.cpp 12 // class type_index
14 // type_index(const type_index& ti);
21 std::type_index t1(typeid(int));
22 std::type_index t2 = t1;
copy_assign.pass.cpp 12 // class type_index
14 // type_index& operator=(const type_index& ti);
21 std::type_index t1(typeid(int));
22 std::type_index t2(typeid(double));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.overview/
copy_ctor.pass.cpp 12 // class type_index
14 // type_index(const type_index& ti);
21 std::type_index t1(typeid(int));
22 std::type_index t2 = t1;
copy_assign.pass.cpp 12 // class type_index
14 // type_index& operator=(const type_index& ti);
21 std::type_index t1(typeid(int));
22 std::type_index t2(typeid(double));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.overview/
copy_ctor.pass.cpp 12 // class type_index
14 // type_index(const type_index& ti);
21 std::type_index t1(typeid(int));
22 std::type_index t2 = t1;
copy_assign.pass.cpp 12 // class type_index
14 // type_index& operator=(const type_index& ti);
21 std::type_index t1(typeid(int));
22 std::type_index t2(typeid(double));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
ctor.pass.cpp 12 // class type_index
14 // type_index(const type_info& rhs);
21 std::type_index t1 = typeid(int);
eq.pass.cpp 12 // class type_index
14 // bool operator==(const type_index& rhs) const;
15 // bool operator!=(const type_index& rhs) const;
22 std::type_index t1 = typeid(int);
23 std::type_index t2 = typeid(int);
24 std::type_index t3 = typeid(long);
lt.pass.cpp 12 // class type_index
14 // bool operator< (const type_index& rhs) const;
15 // bool operator<=(const type_index& rhs) const;
16 // bool operator> (const type_index& rhs) const;
17 // bool operator>=(const type_index& rhs) const;
24 std::type_index t1 = typeid(int);
25 std::type_index t2 = typeid(int);
26 std::type_index t3 = typeid(long);
hash_code.pass.cpp 12 // class type_index
22 std::type_index t1 = typeid(int);
name.pass.cpp 12 // class type_index
23 std::type_index t1 = typeid(int);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.hash/
hash.pass.cpp 12 // class type_index
15 // struct hash<type_index>
16 // : public unary_function<type_index, size_t>
18 // size_t operator()(type_index index) const;
26 std::type_index t1 = typeid(int);
27 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.synopsis/
hash_type_index.pass.cpp 12 // struct hash<type_index>
13 // : public unary_function<type_index, size_t>
15 // size_t operator()(type_index index) const;
23 static_assert((std::is_base_of<std::unary_function<std::type_index, std::size_t>,
24 std::hash<std::type_index> >::value), "");
  /external/libcxx/test/std/utilities/type.index/type.index.hash/
hash.pass.cpp 12 // class type_index
15 // struct hash<type_index>
16 // : public unary_function<type_index, size_t>
18 // size_t operator()(type_index index) const;
26 typedef std::hash<std::type_index> H;
27 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" );
30 std::type_index t1 = typeid(int);
31 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /external/libcxx/test/std/utilities/type.index/type.index.synopsis/
hash_type_index.pass.cpp 12 // struct hash<type_index>
13 // : public unary_function<type_index, size_t>
15 // size_t operator()(type_index index) const;
29 typedef std::hash<std::type_index> H;
30 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" );
35 test_hash_enabled_for_type<std::type_index>(std::type_index(typeid(int)));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.hash/
hash.pass.cpp 12 // class type_index
15 // struct hash<type_index>
16 // : public unary_function<type_index, size_t>
18 // size_t operator()(type_index index) const;
26 typedef std::hash<std::type_index> H;
27 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" );
30 std::type_index t1 = typeid(int);
31 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /external/libcxx/test/std/utilities/type.index/type.index.members/
eq.pass.cpp 12 // class type_index
14 // bool operator==(const type_index& rhs) const;
15 // bool operator!=(const type_index& rhs) const;
22 std::type_index t1 = typeid(int);
23 std::type_index t2 = typeid(int);
24 std::type_index t3 = typeid(long);
lt.pass.cpp 12 // class type_index
14 // bool operator< (const type_index& rhs) const;
15 // bool operator<=(const type_index& rhs) const;
16 // bool operator> (const type_index& rhs) const;
17 // bool operator>=(const type_index& rhs) const;
24 std::type_index t1 = typeid(int);
25 std::type_index t2 = typeid(int);
26 std::type_index t3 = typeid(long);
ctor.pass.cpp 12 // class type_index
14 // type_index(const type_info& rhs);
23 std::type_index t1(info);
hash_code.pass.cpp 12 // class type_index
22 std::type_index t1 = typeid(int);
name.pass.cpp 12 // class type_index
23 std::type_index t1 = typeid(int);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.members/
eq.pass.cpp 12 // class type_index
14 // bool operator==(const type_index& rhs) const;
15 // bool operator!=(const type_index& rhs) const;
22 std::type_index t1 = typeid(int);
23 std::type_index t2 = typeid(int);
24 std::type_index t3 = typeid(long);
lt.pass.cpp 12 // class type_index
14 // bool operator< (const type_index& rhs) const;
15 // bool operator<=(const type_index& rhs) const;
16 // bool operator> (const type_index& rhs) const;
17 // bool operator>=(const type_index& rhs) const;
24 std::type_index t1 = typeid(int);
25 std::type_index t2 = typeid(int);
26 std::type_index t3 = typeid(long);
  /art/runtime/
type_reference.h 34 type_index(index) {}
37 dex::TypeIndex type_index; member in struct:art::TypeReference
45 return mr1.type_index < mr2.type_index;
54 StringReference sr1(tr1.dex_file, tr1.dex_file->GetTypeId(tr1.type_index).descriptor_idx_);
55 StringReference sr2(tr2.dex_file, tr2.dex_file->GetTypeId(tr2.type_index).descriptor_idx_);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.synopsis/
hash_type_index.pass.cpp 12 // struct hash<type_index>
13 // : public unary_function<type_index, size_t>
15 // size_t operator()(type_index index) const;
23 typedef std::hash<std::type_index> H;
24 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" );

Completed in 246 milliseconds

1 2 3 4