HomeSort by relevance Sort by last modified time
    Searched defs:type_id (Results 1 - 25 of 42) sorted by null

1 2

  /external/libchrome/base/trace_event/
heap_profiler_heap_dump_writer.h 51 int type_id; member in struct:base::trace_event::internal::Entry
  /frameworks/base/tools/aapt2/compile/
IdAssigner.cpp 38 if (!type->id || type->id.value() == id.type_id()) {
39 type->id = id.type_id();
146 const uint8_t type_id = next_type_iter->first.type_id(); local
147 if (type_id > next_expected_type_id) {
156 next_expected_type_id = type_id + 1;
186 next_entry_iter->first.type_id() != type->id.value()) {
  /art/runtime/
type_lookup_table.cc 82 const DexFile::TypeId& type_id = dex_file.GetTypeId(class_def.class_idx_); local
83 const DexFile::StringId& str_id = dex_file.GetStringId(type_id.descriptor_idx_);
96 const DexFile::TypeId& type_id = dex_file.GetTypeId(class_def.class_idx_); local
97 const DexFile::StringId& str_id = dex_file.GetStringId(type_id.descriptor_idx_);
dex_file-inl.h 65 const TypeId& type_id = GetTypeId(idx); local
66 return StringDataAndUtf16LengthByIdx(type_id.descriptor_idx_, unicode_length);
73 const TypeId& type_id = GetTypeId(idx); local
74 return StringDataByIdx(type_id.descriptor_idx_);
77 inline const char* DexFile::GetTypeDescriptor(const TypeId& type_id) const {
78 return StringDataByIdx(type_id.descriptor_idx_);
82 const DexFile::TypeId& type_id = GetTypeId(field_id.type_idx_); local
83 return GetTypeDescriptor(type_id);
91 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_); local
92 return GetTypeDescriptor(type_id);
    [all...]
dex_file_test.cc 471 const DexFile::TypeId* type_id = java_lang_dex_file_->FindTypeId(type_str_idx); local
472 ASSERT_EQ(type_id, java_lang_dex_file_->FindTypeId(type_str));
473 ASSERT_TRUE(type_id != nullptr);
474 EXPECT_EQ(java_lang_dex_file_->GetIndexForTypeId(*type_id).index_, i);
class_linker_test.cc 437 const DexFile::TypeId& type_id = dex.GetTypeId(dex::TypeIndex(i)); local
438 const char* descriptor = dex.GetTypeDescriptor(type_id);
1270 const DexFile::TypeId* type_id = dex_file->FindTypeId("LStaticsFromCode;"); local
    [all...]
dex_file.cc 775 const TypeId& type_id = GetTypeId(dex::TypeIndex(mid)); local
776 const DexFile::StringId& str_id = GetStringId(type_id.descriptor_idx_);
784 return &type_id;
814 const TypeId& type_id = GetTypeId(dex::TypeIndex(mid)); local
815 if (string_idx > type_id.descriptor_idx_) {
817 } else if (string_idx < type_id.descriptor_idx_) {
820 return &type_id;
898 const DexFile::TypeId* type_id = FindTypeId(descriptor.c_str()); local
1319 const DexFile::TypeId& type_id = GetTypeId(type_idx); local
    [all...]
oat_file.cc 1393 const DexFile::TypeId* type_id = dex_file.FindTypeId(descriptor); local
    [all...]
  /external/v8/src/inspector/build/
generate_protocol_externs.py 54 def full_qualified_type_id(domain_name, type_id):
55 if type_id.find(".") == -1:
56 return "%s.%s" % (domain_name, type_id)
57 return type_id
89 type_id = full_qualified_type_id(domain_name, param["$ref"])
90 if type_id in ref_types:
91 return ref_types[type_id]
93 print "Type not found: " + type_id
94 return "!! Type not found: " + type_id
122 type_id = full_qualified_type_id(domain_name, type["id"] variable
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
instruction.h 89 uint32_t type_id() const { return type_id_; } function in class:spvtools::ir::Instruction
  /external/libtextclassifier/common/
workspace.h 58 static int type_id; member in struct:libtextclassifier::nlp_core::TypeId
62 int TypeId<T>::type_id = GetFreshTypeId(); member in class:libtextclassifier::nlp_core::TypeId
74 const int id = TypeId<W>::type_id;
121 const int id = TypeId<W>::type_id;
134 const int id = TypeId<W>::type_id;
143 const int id = TypeId<W>::type_id;
  /hardware/intel/common/libwsbm/src/
wsbm_driver.h 105 int type_id; member in struct:_ValidateNode
  /external/protobuf/src/google/protobuf/
extension_set_heavy.cc 602 // required int32 type_id = 2;
607 // If we see message data before the type_id, we'll append it to this so
617 uint32 type_id; local
618 if (!input->ReadVarint32(&type_id)) return false;
619 last_type_id = type_id;
622 // We saw some message data before the type_id. Have to parse it
640 // We haven't seen a type_id yet. Append this data to message_data.
650 // Already saw type_id, so we can parse this directly.
716 // type_id
wire_format.cc 713 // required int32 type_id = 2;
718 // Once we see a type_id, we'll look up the FieldDescriptor for the
722 // If we see message data before the type_id, we'll append it to this so
732 uint32 type_id; local
733 if (!input->ReadVarint32(&type_id)) return false;
734 last_type_id = type_id;
735 field = message_reflection->FindKnownExtensionByNumber(type_id);
738 // We saw some message data before the type_id. Have to parse it
755 // We haven't seen a type_id yet. Append this data to message_data.
765 // Already saw type_id, so we can parse this directly
    [all...]
wire_format_unittest.cc 445 raw.item(0).type_id());
448 raw.item(1).type_id());
449 EXPECT_EQ(kUnknownTypeId, raw.item(2).type_id());
572 // type_id.
583 uint32 type_id = message.GetDescriptor()->extension(0)->number(); local
585 type_id, &coded_output);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/c-family/
c-pretty-print.h 75 c_pretty_print_fn type_id; member in struct:c_pretty_print_info
122 pp_c_base (PPI)->type_id (pp_c_base (PPI), D)
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/val/
ValidationState.h 53 uint32_t type_id; member in struct:libspirv::spv_id_info_t
  /art/compiler/
verifier_deps_test.cc 255 const DexFile::TypeId* type_id = dex_file.FindTypeId(cls.c_str()); local
256 DCHECK(type_id != nullptr);
257 dex::TypeIndex index = dex_file.GetIndexForTypeId(*type_id);
    [all...]
  /external/libchrome/base/metrics/
persistent_memory_allocator_unittest.cc 765 uint32_t type_id; local
767 while ((ref = iter.GetNext(&type_id)) != 0) {
persistent_memory_allocator.cc 87 std::atomic<uint32_t> type_id; // Arbitrary number indicating data type. member in struct:__anon22576::base::PersistentMemoryAllocator::BlockHeader
197 *type_return = block->type_id.load(std::memory_order_relaxed);
304 first_block->type_id.load(std::memory_order_relaxed) != 0 ||
431 return block->type_id.load(std::memory_order_relaxed);
444 return block->type_id.compare_exchange_strong(from_type_id, to_type_id);
449 uint32_t type_id) {
450 Reference ref = AllocateImpl(req_size, type_id);
465 uint32_t type_id) {
558 block->type_id.load(std::memory_order_relaxed) != 0 ||
566 block->type_id.store(type_id, std::memory_order_relaxed)
    [all...]
  /frameworks/base/libs/androidfw/
LoadedArsc.cpp 186 const uint8_t type_id = get_type_id(resid); local
189 if (type_id == 0) {
196 return loaded_package->FindEntry(type_id - 1, entry_id, config, out_entry,
  /frameworks/base/tools/aapt2/
Resource.h 149 uint8_t type_id() const;
227 inline uint8_t ResourceId::type_id() const { function in class:aapt::ResourceId
  /art/runtime/verifier/
verifier_deps.cc 103 const DexFile::TypeId& type_id = dex_file.GetTypeId(class_def->class_idx_); local
106 CHECK_EQ(GetIdFromString(dex_file, klass->GetDescriptor(&temp)), type_id.descriptor_idx_);
108 return type_id.descriptor_idx_;
121 const DexFile::TypeId& type_id = dex_file.GetTypeId(type_idx); local
124 if (strcmp(dex_file.GetTypeDescriptor(type_id),
126 return type_id.descriptor_idx_;
    [all...]
  /art/profman/
profman.cc 431 const DexFile::TypeId& type_id = dex_file->GetTypeId(type_index); local
432 out_lines->insert(std::string(dex_file->GetTypeDescriptor(type_id)));
583 const DexFile::TypeId* type_id = dex_file->FindTypeId(klass_descriptor.c_str()); local
584 if (type_id == nullptr) {
587 dex::TypeIndex type_index = dex_file->GetIndexForTypeId(*type_id);
    [all...]
  /art/runtime/mirror/
class.cc 903 const DexFile::TypeId& type_id = dex_file.GetTypeId(GetClassDef()->class_idx_); local
1145 const DexFile::TypeId* type_id = dex_file.FindTypeId(GetDescriptor(&temp)); local
    [all...]

Completed in 1687 milliseconds

1 2