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

1 2

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
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...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
typeindex 45 * @brief Class type_index
48 * The class type_index provides a simple wrapper for type_info
52 struct type_index
54 type_index(const type_info& __rhs) noexcept
58 operator==(const type_index& __rhs) const noexcept
62 operator!=(const type_index& __rhs) const noexcept
66 operator<(const type_index& __rhs) const noexcept
70 operator<=(const type_index& __rhs) const noexcept
74 operator>(const type_index& __rhs) const noexcept
78 operator>=(const type_index& __rhs) const noexcep
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
typeindex 45 @brief The class type_index provides a simple wrapper for type_info
49 struct type_index
51 type_index(const type_info& __rhs)
55 operator==(const type_index& __rhs) const
59 operator!=(const type_index& __rhs) const
63 operator<(const type_index& __rhs) const
67 operator<=(const type_index& __rhs) const
71 operator>(const type_index& __rhs) const
75 operator>=(const type_index& __rhs) const
92 /// std::hash specialization for type_index
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
typeindex 45 @brief The class type_index provides a simple wrapper for type_info
49 struct type_index
51 type_index(const type_info& __rhs)
55 operator==(const type_index& __rhs) const
59 operator!=(const type_index& __rhs) const
63 operator<(const type_index& __rhs) const
67 operator<=(const type_index& __rhs) const
71 operator>(const type_index& __rhs) const
75 operator>=(const type_index& __rhs) const
92 /// std::hash specialization for type_index
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
typeindex 45 @brief The class type_index provides a simple wrapper for type_info
49 struct type_index
51 type_index(const type_info& __rhs)
55 operator==(const type_index& __rhs) const
59 operator!=(const type_index& __rhs) const
63 operator<(const type_index& __rhs) const
67 operator<=(const type_index& __rhs) const
71 operator>(const type_index& __rhs) const
75 operator>=(const type_index& __rhs) const
92 /// std::hash specialization for type_index
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
typeindex 45 @brief The class type_index provides a simple wrapper for type_info
49 struct type_index
51 type_index(const type_info& __rhs) noexcept
55 operator==(const type_index& __rhs) const noexcept
59 operator!=(const type_index& __rhs) const noexcept
63 operator<(const type_index& __rhs) const noexcept
67 operator<=(const type_index& __rhs) const noexcept
71 operator>(const type_index& __rhs) const noexcept
75 operator>=(const type_index& __rhs) const noexcept
92 /// std::hash specialization for type_index
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
typeindex 45 @brief The class type_index provides a simple wrapper for type_info
49 struct type_index
51 type_index(const type_info& __rhs)
55 operator==(const type_index& __rhs) const
59 operator!=(const type_index& __rhs) const
63 operator<(const type_index& __rhs) const
67 operator<=(const type_index& __rhs) const
71 operator>(const type_index& __rhs) const
75 operator>=(const type_index& __rhs) const
92 /// std::hash specialization for type_index
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
typeindex 45 @brief The class type_index provides a simple wrapper for type_info
49 struct type_index
51 type_index(const type_info& __rhs) noexcept
55 operator==(const type_index& __rhs) const noexcept
59 operator!=(const type_index& __rhs) const noexcept
63 operator<(const type_index& __rhs) const noexcept
67 operator<=(const type_index& __rhs) const noexcept
71 operator>(const type_index& __rhs) const noexcept
75 operator>=(const type_index& __rhs) const noexcept
92 /// std::hash specialization for type_index
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
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);
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);
ctor.pass.cpp 12 // class type_index
14 // type_index(const type_info& rhs);
21 std::type_index t1 = typeid(int);
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);
  /ndk/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());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.overview/
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));
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;
  /ndk/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/qemu/android/
hw-events.c 203 android_event_bufprint_type_str( char* buff, char* end, int type_index )
205 return eventList_bufprintCode( _ev_types_tab, type_index, buff, end );
hw-events.h 540 extern char* android_event_bufprint_type_str( char* buff, char* end, int type_index );
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsTest.java 256 final int TYPE_INDEX = 2;
285 assertEquals(Phones.TYPE_HOME, cursor.getInt(TYPE_INDEX));
305 assertEquals(Phones.TYPE_CUSTOM, cursor.getInt(TYPE_INDEX));
338 final int TYPE_INDEX = 4;
371 assertEquals(Organizations.TYPE_WORK, cursor.getInt(TYPE_INDEX));
391 assertEquals(Organizations.TYPE_CUSTOM, cursor.getInt(TYPE_INDEX));
421 final int TYPE_INDEX = 4;
458 assertEquals(Calls.INCOMING_TYPE, cursor.getInt(TYPE_INDEX));
485 assertEquals(Calls.MISSED_TYPE, cursor.getInt(TYPE_INDEX));
517 final int TYPE_INDEX = 5
    [all...]
SettingsTest.java 108 final int TYPE_INDEX = 3;
138 assertEquals(2, cursor.getInt(TYPE_INDEX));
157 assertEquals(4, cursor.getInt(TYPE_INDEX));
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 129 * @param typeIndex <code>type_index</code> in <code>annotation</code>.
  /packages/apps/Settings/src/com/android/settings/
ApnEditor.java 141 private static final int TYPE_INDEX = 15;
263 mApnType.setText(mCursor.getString(TYPE_INDEX));
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 569 final int type_index = cls.addClassref ("[[Z"); local
571 type_index >>> 8, // indexbyte1
572 type_index, // indexbyte2
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 1740 int type_index = successor_block_info->key; local
    [all...]

Completed in 1842 milliseconds

1 2