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

1 2

  /external/chromium_org/chrome/common/
automation_id.cc 23 std::string type_id; local
24 if (!dict->GetString("id", &type_id)) {
25 *error = "automation ID 'type_id' missing or invalid";
28 *id = AutomationId(static_cast<Type>(type), type_id);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
rtti.hpp 25 // ************** rtti::type_id ************** //
48 type_id() function in namespace:boost::rtti
56 #define BOOST_RTTI_CASE( type ) if( switch_by_id == ::boost::rtti::type_id<type>() )
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_protocol_externs.py 45 def full_qualified_type_id(domain_name, type_id):
46 if type_id.find(".") == -1:
47 return "%s.%s" % (domain_name, type_id)
48 return type_id
76 type_id = full_qualified_type_id(domain_name, param["$ref"])
77 if type_id in ref_types:
78 return ref_types[type_id]
80 print "Type not found: " + type_id
81 return "!! Type not found: " + type_id
104 type_id = full_qualified_type_id(domain_name, type["id"] variable
    [all...]
  /art/runtime/
dex_file_test.cc 218 const DexFile::TypeId* type_id = java_lang_dex_file_->FindTypeId(type_str_idx); local
219 ASSERT_TRUE(type_id != NULL);
220 EXPECT_EQ(java_lang_dex_file_->GetIndexForTypeId(*type_id), i);
object_utils.h 109 const DexFile::TypeId& type_id = dex_file.GetTypeId(GetClassDef()->class_idx_); local
110 return dex_file.GetTypeDescriptor(type_id);
class_linker_test.cc 330 const DexFile::TypeId& type_id = dex->GetTypeId(i); local
331 const char* descriptor = dex->GetTypeDescriptor(type_id);
1001 const DexFile::TypeId* type_id = dex_file->FindTypeId(dex_file->GetIndexForStringId(*string_id)); local
    [all...]
dex_file.cc 343 const TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id)); local
344 if (type_id == NULL) {
347 uint16_t type_idx = GetIndexForTypeId(*type_id);
483 const TypeId& type_id = GetTypeId(mid); local
484 if (string_idx > type_id.descriptor_idx_) {
486 } else if (string_idx < type_id.descriptor_idx_) {
489 return &type_id;
570 const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id)); local
571 if (type_id == NULL) {
574 uint16_t type_idx = GetIndexForTypeId(*type_id);
    [all...]
utils.cc 322 const DexFile::TypeId& type_id = dex_file.GetTypeId(type_idx); local
323 return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id));
    [all...]
dex_file.h 458 uint16_t GetIndexForTypeId(const TypeId& type_id) const {
459 CHECK_GE(&type_id, type_ids_) << GetLocation();
460 CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation();
461 size_t result = &type_id - type_ids_;
468 const TypeId& type_id = GetTypeId(idx); local
469 return StringDataAndLengthByIdx(type_id.descriptor_idx_, unicode_length);
473 const TypeId& type_id = GetTypeId(idx); local
474 return StringDataByIdx(type_id.descriptor_idx_);
478 const char* GetTypeDescriptor(const TypeId& type_id) const {
479 return StringDataByIdx(type_id.descriptor_idx_)
510 const DexFile::TypeId& type_id = GetTypeId(field_id.class_idx_); local
516 const DexFile::TypeId& type_id = GetTypeId(field_id.type_idx_); local
550 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_); local
    [all...]
  /external/chromium/chrome/browser/renderer_host/
gtk_key_bindings_handler.cc 124 GType type_id = g_type_register_static_simple( local
132 g_once_init_leave(&type_id_volatile, type_id);
  /external/chromium_org/content/browser/renderer_host/
gtk_key_bindings_handler.cc 113 GType type_id = g_type_register_static_simple( local
121 g_once_init_leave(&type_id_volatile, type_id);
  /external/chromium/net/base/
filter.cc 143 FilterType type_id; local
145 type_id = FILTER_TYPE_DEFLATE;
148 type_id = FILTER_TYPE_GZIP;
150 type_id = FILTER_TYPE_SDCH;
154 type_id = FILTER_TYPE_UNSUPPORTED;
156 return type_id;
350 Filter* Filter::InitGZipFilter(FilterType type_id, int buffer_size) {
353 return gz_filter->InitDecoding(type_id) ? gz_filter.release() : NULL;
357 Filter* Filter::InitSdchFilter(FilterType type_id,
362 return sdch_filter->InitDecoding(type_id) ? sdch_filter.release() : NULL
    [all...]
  /external/chromium_org/net/base/
filter.cc 143 FilterType type_id; local
145 type_id = FILTER_TYPE_DEFLATE;
148 type_id = FILTER_TYPE_GZIP;
150 type_id = FILTER_TYPE_SDCH;
154 type_id = FILTER_TYPE_UNSUPPORTED;
156 return type_id;
349 Filter* Filter::InitGZipFilter(FilterType type_id, int buffer_size) {
352 return gz_filter->InitDecoding(type_id) ? gz_filter.release() : NULL;
356 Filter* Filter::InitSdchFilter(FilterType type_id,
361 return sdch_filter->InitDecoding(type_id) ? sdch_filter.release() : NULL
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
extension_set_heavy.cc 558 // required int32 type_id = 2;
561 // Once we see a type_id, we'll construct a fake tag for this extension
566 // If we see message data before the type_id, we'll append it to this so
576 uint32 type_id; local
577 if (!input->ReadVarint32(&type_id)) return false;
578 fake_tag = WireFormatLite::MakeTag(type_id,
582 // We saw some message data before the type_id. Have to parse it
599 // We haven't seen a type_id yet. Append this data to message_data.
609 // Already saw type_id, so we can parse this directly.
674 // type_id
    [all...]
wire_format.cc 329 // required int32 type_id = 2;
332 // Once we see a type_id, we'll construct a fake tag for this extension
337 // Once we see a type_id, we'll look up the FieldDescriptor for the
341 // If we see message data before the type_id, we'll append it to this so
351 uint32 type_id; local
352 if (!input->ReadVarint32(&type_id)) return false;
354 type_id, WireFormatLite::WIRETYPE_LENGTH_DELIMITED);
355 field = message_reflection->FindKnownExtensionByNumber(type_id);
358 // We saw some message data before the type_id. Have to parse it
375 // We haven't seen a type_id yet. Append this data to message_data
    [all...]
wire_format_unittest.cc 362 raw.item(0).type_id());
365 raw.item(1).type_id());
366 EXPECT_EQ(kUnknownTypeId, raw.item(2).type_id());
489 // type_id.
500 uint32 type_id = message.GetDescriptor()->extension(0)->number(); local
502 type_id, &coded_output);
    [all...]
  /external/protobuf/src/google/protobuf/
wire_format.cc 632 // required int32 type_id = 2;
635 // Once we see a type_id, we'll construct a fake tag for this extension
640 // Once we see a type_id, we'll look up the FieldDescriptor for the
644 // If we see message data before the type_id, we'll append it to this so
657 uint32 type_id; local
658 if (!input->ReadVarint32(&type_id)) return false;
660 type_id, WireFormatLite::WIRETYPE_LENGTH_DELIMITED);
661 field = message_reflection->FindKnownExtensionByNumber(type_id);
664 // We saw some message data before the type_id. Have to parse it
681 // We haven't seen a type_id yet. Append this data to message_data
    [all...]
extension_set.cc 950 uint32 type_id; local
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/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/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/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/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/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/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/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)
  /art/runtime/mirror/
object_test.cc 211 const DexFile::TypeId* type_id = java_lang_dex_file_->FindTypeId( local
213 ASSERT_TRUE(type_id != NULL);
214 uint32_t type_idx = java_lang_dex_file_->GetIndexForTypeId(*type_id);
  /external/valgrind/unittest/
bigtest.cc 163 int type_id = v_find(types, stat_type); local
164 if (type_id == -1)
170 cost_m->At(type_id, param_id) = cost;
  /art/compiler/driver/
compiler_driver.cc 714 const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx); local
715 const char* descriptor = dex_file->GetTypeDescriptor(type_id);
1035 const DexFile::TypeId* type_id = local
1220 const DexFile::TypeId* type_id = local
    [all...]

Completed in 3182 milliseconds

1 2