HomeSort by relevance Sort by last modified time
    Searched refs:GetTypeId (Results 26 - 50 of 87) sorted by null

12 3 4

  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 517 // GetTypeId<T>() returns the ID of type T. Different values will be
521 TypeId GetTypeId() {
530 // of GetTypeId< ::testing::Test>() to get the type ID of
689 GetTypeId<FixtureClass>(),
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 413 // GetTypeId<T>() returns the ID of type T. Different values will be
417 TypeId GetTypeId() {
426 // of GetTypeId< ::testing::Test>() to get the type ID of
586 GetTypeId<FixtureClass>(),
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 508 // GetTypeId<T>() returns the ID of type T. Different values will be
512 TypeId GetTypeId() {
521 // of GetTypeId< ::testing::Test>() to get the type ID of
680 GetTypeId<FixtureClass>(),
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h 413 // GetTypeId<T>() returns the ID of type T. Different values will be
417 TypeId GetTypeId() {
426 // of GetTypeId< ::testing::Test>() to get the type ID of
586 GetTypeId<FixtureClass>(),
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 402 // GetTypeId<T>() returns the ID of type T. Different values will be
406 TypeId GetTypeId() {
415 // of GetTypeId< ::testing::Test>() to get the type ID of
575 GetTypeId<FixtureClass>(),
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 402 // GetTypeId<T>() returns the ID of type T. Different values will be
406 TypeId GetTypeId() {
415 // of GetTypeId< ::testing::Test>() to get the type ID of
575 GetTypeId<FixtureClass>(),
    [all...]
  /art/runtime/verifier/
verifier_deps.cc 103 const DexFile::TypeId& type_id = dex_file.GetTypeId(class_def->class_idx_);
121 const DexFile::TypeId& type_id = dex_file.GetTypeId(type_idx);
123 const DexFile::TypeId& klass_type_id = klass_dex.GetTypeId(klass->GetClassDef()->class_idx_);
    [all...]
  /art/dexlayout/
dex_writer.cc 164 length = EncodeUIntValue(encoded_value->GetTypeId()->GetIndex(), buffer);
450 if (handler->GetTypeId() != nullptr) {
451 list_offset += WriteUleb128(handler->GetTypeId()->GetIndex(), list_offset);
dex_ir.h 222 TypeId* GetTypeId(uint32_t index) {
255 return index == DexFile::kDexNoIndex16 ? nullptr : GetTypeId(index);
672 TypeId* GetTypeId() const { return u_.type_val_; }
834 const TypeId* GetTypeId() const { return type_id_; }
    [all...]
dexlayout.cc 418 const char* tp = header->GetCollections().GetTypeId(index)->GetStringId()->Data();
550 dex_ir::TypeId* type_id = data->GetTypeId();
813 const dex_ir::TypeId* type_id = handler->GetTypeId();
    [all...]
  /art/profman/
profman.cc 479 const DexFile::TypeId& type_id = dex_file->GetTypeId(type_index);
488 std::string type_string(dex_file->GetTypeDescriptor(dex_file->GetTypeId(id.class_idx_)));
702 dex_file->GetTypeId(class_ref.type_index), *name_id, *proto_id);
    [all...]
  /art/runtime/
dex_file_test.cc 500 const DexFile::TypeId& klass = java_lang_dex_file_->GetTypeId(to_find.class_idx_);
515 const DexFile::TypeId& klass = java_lang_dex_file_->GetTypeId(to_find.class_idx_);
517 const DexFile::TypeId& type = java_lang_dex_file_->GetTypeId(to_find.type_idx_);
dex_file.cc 796 const TypeId& type_id = GetTypeId(dex::TypeIndex(mid));
835 const TypeId& type_id = GetTypeId(dex::TypeIndex(mid));
    [all...]
dex_file.h 591 const TypeId& GetTypeId(dex::TypeIndex idx) const {
645 const DexFile::TypeId& type_id = GetTypeId(field_id.class_idx_);
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest_unittest.cc 170 using testing::internal::GetTypeId;
268 // Tests GetTypeId.
271 EXPECT_EQ(GetTypeId<int>(), GetTypeId<int>());
272 EXPECT_EQ(GetTypeId<Test>(), GetTypeId<Test>());
279 EXPECT_NE(GetTypeId<int>(), GetTypeId<const int>());
280 EXPECT_NE(GetTypeId<int>(), GetTypeId<char>())
    [all...]
  /external/googletest/googletest/test/
gtest_unittest.cc 259 using testing::internal::GetTypeId;
360 // Tests GetTypeId.
363 EXPECT_EQ(GetTypeId<int>(), GetTypeId<int>());
364 EXPECT_EQ(GetTypeId<Test>(), GetTypeId<Test>());
371 EXPECT_NE(GetTypeId<int>(), GetTypeId<const int>());
372 EXPECT_NE(GetTypeId<int>(), GetTypeId<char>())
    [all...]
  /external/v8/testing/gtest/test/
gtest_unittest.cc 259 using testing::internal::GetTypeId;
360 // Tests GetTypeId.
363 EXPECT_EQ(GetTypeId<int>(), GetTypeId<int>());
364 EXPECT_EQ(GetTypeId<Test>(), GetTypeId<Test>());
371 EXPECT_NE(GetTypeId<int>(), GetTypeId<const int>());
372 EXPECT_NE(GetTypeId<int>(), GetTypeId<char>())
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_unittest.cc 259 using testing::internal::GetTypeId;
357 // Tests GetTypeId.
360 EXPECT_EQ(GetTypeId<int>(), GetTypeId<int>());
361 EXPECT_EQ(GetTypeId<Test>(), GetTypeId<Test>());
368 EXPECT_NE(GetTypeId<int>(), GetTypeId<const int>());
369 EXPECT_NE(GetTypeId<int>(), GetTypeId<char>())
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest_unittest.cc 259 using testing::internal::GetTypeId;
357 // Tests GetTypeId.
360 EXPECT_EQ(GetTypeId<int>(), GetTypeId<int>());
361 EXPECT_EQ(GetTypeId<Test>(), GetTypeId<Test>());
368 EXPECT_NE(GetTypeId<int>(), GetTypeId<const int>());
369 EXPECT_NE(GetTypeId<int>(), GetTypeId<char>())
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest_unittest.cc 259 using testing::internal::GetTypeId;
357 // Tests GetTypeId.
360 EXPECT_EQ(GetTypeId<int>(), GetTypeId<int>());
361 EXPECT_EQ(GetTypeId<Test>(), GetTypeId<Test>());
368 EXPECT_NE(GetTypeId<int>(), GetTypeId<const int>());
369 EXPECT_NE(GetTypeId<int>(), GetTypeId<char>())
    [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-internal.h 443 // GetTypeId<T>() returns the ID of type T. Different values will be
447 TypeId GetTypeId() {
456 // of GetTypeId< ::testing::Test>() to get the type ID of
647 GetTypeId<FixtureClass>(),
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-internal.h 443 // GetTypeId<T>() returns the ID of type T. Different values will be
447 TypeId GetTypeId() {
456 // of GetTypeId< ::testing::Test>() to get the type ID of
646 GetTypeId<FixtureClass>(),
    [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-internal.h 443 // GetTypeId<T>() returns the ID of type T. Different values will be
447 TypeId GetTypeId() {
456 // of GetTypeId< ::testing::Test>() to get the type ID of
646 GetTypeId<FixtureClass>(),
    [all...]
  /art/compiler/driver/
compiler_driver_test.cc 123 << " " << dex.GetTypeDescriptor(dex.GetTypeId(dex::TypeIndex(i)));
  /art/runtime/openjdkjvmti/
ti_redefine.cc     [all...]

Completed in 488 milliseconds

12 3 4