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

  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 29 * java.lang.Integer} have the same type parameter: {@code TypeId<Integer>}.
34 public final class TypeId<T> {
36 public static final TypeId<Boolean> BOOLEAN
37 = new TypeId<Boolean>(com.android.dx.rop.type.Type.BOOLEAN);
40 public static final TypeId<Byte> BYTE = new TypeId<Byte>(com.android.dx.rop.type.Type.BYTE);
43 public static final TypeId<Character> CHAR
44 = new TypeId<Character>(com.android.dx.rop.type.Type.CHAR);
47 public static final TypeId<Double> DOUBLE = new TypeId<Double>(com.android.dx.rop.type.Type.DOUBLE)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-internal.h 469 // unique IDs to fixture classes and compare them. The TypeId type is
470 // used to hold such IDs. The user should treat TypeId as an opaque
471 // type: the only operation allowed on TypeId values is to compare
473 typedef void* TypeId;
479 inline TypeId GetTypeId() {
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-internal.h 488 // unique IDs to fixture classes and compare them. The TypeId type is
489 // used to hold such IDs. The user should treat TypeId as an opaque
490 // type: the only operation allowed on TypeId values is to compare
492 typedef const void* TypeId;
510 TypeId GetTypeId() {
523 TypeId GetTestTypeId();
599 TypeId fixture_class_id,
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 486 // unique IDs to fixture classes and compare them. The TypeId type is
487 // used to hold such IDs. The user should treat TypeId as an opaque
488 // type: the only operation allowed on TypeId values is to compare
490 typedef const void* TypeId;
508 TypeId GetTypeId() {
521 TypeId GetTestTypeId();
597 TypeId fixture_class_id,
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 464 // unique IDs to fixture classes and compare them. The TypeId type is
465 // used to hold such IDs. The user should treat TypeId as an opaque
466 // type: the only operation allowed on TypeId values is to compare
468 typedef const void* TypeId;
486 TypeId GetTypeId() {
499 GTEST_API_ TypeId GetTestTypeId();
564 TypeId fixture_class_id,
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 470 // unique IDs to fixture classes and compare them. The TypeId type is
471 // used to hold such IDs. The user should treat TypeId as an opaque
472 // type: the only operation allowed on TypeId values is to compare
474 typedef const void* TypeId;
492 TypeId GetTypeId() {
505 GTEST_API_ TypeId GetTestTypeId();
570 TypeId fixture_class_id,
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-internal.h 470 // unique IDs to fixture classes and compare them. The TypeId type is
471 // used to hold such IDs. The user should treat TypeId as an opaque
472 // type: the only operation allowed on TypeId values is to compare
474 typedef const void* TypeId;
492 TypeId GetTypeId() {
505 GTEST_API_ TypeId GetTestTypeId();
570 TypeId fixture_class_id,
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 498 // unique IDs to fixture classes and compare them. The TypeId type is
499 // used to hold such IDs. The user should treat TypeId as an opaque
500 // type: the only operation allowed on TypeId values is to compare
502 typedef const void* TypeId;
520 TypeId GetTypeId() {
533 GTEST_API_ TypeId GetTestTypeId();
598 TypeId fixture_class_id,
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp 153 unsigned TypeId = EPT->getType();
155 if (TypeId < (sizeof(PrimitiveTypePackerAPINameMap) / sizeof(const char*)))
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 47 private static TypeId<DexMakerTest> TEST_TYPE = TypeId.get(DexMakerTest.class);
48 private static TypeId<?> INT_ARRAY = TypeId.get(int[].class);
49 private static TypeId<boolean[]> BOOLEAN_ARRAY = TypeId.get(boolean[].class);
50 private static TypeId<long[]> LONG_ARRAY = TypeId.get(long[].class);
51 private static TypeId<Object[]> OBJECT_ARRAY = TypeId.get(Object[].class)
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 425 // - a typeid expression (5.2.8) whose operand is of a polymorphic class type;
432 namespace TypeId {
435 constexpr const std::type_info &ti1 = typeid(*p); // expected-error {{must be initialized by a constant expression}} expected-note {{typeid applied to expression of polymorphic type 'TypeId::S'}}
438 constexpr const std::type_info &ti2 = typeid(t);
  /external/ceres-solver/internal/ceres/gtest/
gtest.h 484 // both the typeid and dynamic_cast features are present.
    [all...]

Completed in 805 milliseconds