HomeSort by relevance Sort by last modified time
    Searched defs:TypeId (Results 1 - 11 of 11) 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/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 469 StringRef TypeId = getTok().getIdentifier();
471 Type = StringSwitch<COFF::COMDATType>(TypeId)
482 return TokError(Twine("unrecognized COMDAT type '" + TypeId + "'"));
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-internal.h 427 // unique IDs to fixture classes and compare them. The TypeId type is
428 // used to hold such IDs. The user should treat TypeId as an opaque
429 // type: the only operation allowed on TypeId values is to compare
431 typedef const void* TypeId;
449 TypeId GetTypeId() {
462 GTEST_API_ TypeId GetTestTypeId();
528 TypeId fixture_class_id,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/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/gtest/include/gtest/internal/
gtest-internal.h 395 // unique IDs to fixture classes and compare them. The TypeId type is
396 // used to hold such IDs. The user should treat TypeId as an opaque
397 // type: the only operation allowed on TypeId values is to compare
399 typedef const void* TypeId;
417 TypeId GetTypeId() {
430 GTEST_API_ TypeId GetTestTypeId();
496 TypeId fixture_class_id,
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 499 // unique IDs to fixture classes and compare them. The TypeId type is
500 // used to hold such IDs. The user should treat TypeId as an opaque
501 // type: the only operation allowed on TypeId values is to compare
503 typedef const void* TypeId;
521 TypeId GetTypeId() {
534 GTEST_API_ TypeId GetTestTypeId();
599 TypeId fixture_class_id,
    [all...]
  /external/mesa3d/src/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/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...]
  /art/runtime/
dex_file.h 155 struct TypeId {
159 DISALLOW_COPY_AND_ASSIGN(TypeId);
508 // Returns the TypeId at the specified index.
509 const TypeId& GetTypeId(uint32_t idx) const {
514 uint16_t GetIndexForTypeId(const TypeId& type_id) const {
524 const TypeId& type_id = GetTypeId(idx);
529 const TypeId& type_id = GetTypeId(idx);
534 const char* GetTypeDescriptor(const TypeId& type_id) const {
539 const TypeId* FindTypeId(uint32_t string_idx) const;
560 const FieldId* FindFieldId(const DexFile::TypeId& declaring_klass
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
gtest.h 544 // both the typeid and dynamic_cast features are present.
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h 544 // both the typeid and dynamic_cast features are present.
    [all...]

Completed in 1778 milliseconds