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

1 2 3

  /external/chromium_org/chrome/browser/android/
activity_type_ids.cc 11 Type GetActivityType(int type_id) {
12 if (type_id >= ACTIVITY_NONE && type_id <= ACTIVITY_MAX_VALUE)
13 return Type(type_id);
15 NOTREACHED() << "Unhandled Activity id was passed in: " << type_id;
activity_type_ids.h 19 Type GetActivityType(int type_id);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-gobject-enums.cc.tmpl 51 static gsize type_id = 0;
53 if (g_once_init_enter (&type_id))
67 g_once_init_leave (&type_id, id);
70 return type_id;
hb-gobject-structs.cc 44 static gsize type_id = 0; \
45 if (g_once_init_enter (&type_id)) { \
49 g_once_init_leave (&type_id, id); \
51 return type_id; \
  /external/harfbuzz_ng/src/
hb-gobject-enums.cc.tmpl 51 static gsize type_id = 0;
53 if (g_once_init_enter (&type_id))
67 g_once_init_leave (&type_id, id);
70 return type_id;
hb-gobject-structs.cc 44 static gsize type_id = 0; \
45 if (g_once_init_enter (&type_id)) { \
49 g_once_init_leave (&type_id, id); \
51 return type_id; \
  /hardware/intel/img/psb_video/src/
psb_ws_driver.c 41 psb_alloc(struct _WsbmVNodeFuncs *func, int type_id) {
42 if (type_id == 0) {
48 vNode->base.type_id = 0;
56 node->type_id = 1;
68 if (node->type_id == 0)
78 * a private part when node->type_id == 0 we only care to clear in that
85 if (node->type_id == 0) {
  /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>() )
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
argument.hpp 68 : argument( p, rtti::type_id<T>() )
71 : argument( p, rtti::type_id<T>() )
86 assert( arg_.p_value_type == rtti::type_id<T>() ); // detect logic error
97 assert( arg_.p_value_type == rtti::type_id<T>() ); // detect logic error
  /external/chromium_org/net/filter/
filter.cc 140 FilterType type_id; local
142 type_id = FILTER_TYPE_DEFLATE;
145 type_id = FILTER_TYPE_GZIP;
147 type_id = FILTER_TYPE_SDCH;
151 type_id = FILTER_TYPE_UNSUPPORTED;
153 return type_id;
348 Filter* Filter::InitGZipFilter(FilterType type_id, int buffer_size) {
351 return gz_filter->InitDecoding(type_id) ? gz_filter.release() : NULL;
355 Filter* Filter::InitSdchFilter(FilterType type_id,
360 return sdch_filter->InitDecoding(type_id) ? sdch_filter.release() : NULL
    [all...]
filter.h 252 static Filter* PrependNewFilter(FilterType type_id,
259 static Filter* InitGZipFilter(FilterType type_id, int buffer_size);
260 static Filter* InitSdchFilter(FilterType type_id,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
typed_parameter.hpp 44 : cla::parameter( ID, m_arg_factory, rtti::type_id<T>() == rtti::type_id<bool>() )
id_policy.hpp 85 : identification_policy( rtti::type_id<MostDerived>() )
argument_factory.hpp 150 actual_arg.reset( p.p_optional_value && (rtti::type_id<T>() != rtti::type_id<bool>())
  /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
106 type_id = full_qualified_type_id(domain_name, type["id"] variable
    [all...]
  /external/chromium_org/ipc/
ipc_fuzzing_tests.cc 166 bool RoundtripAckReply(int routing, uint32 type_id, int reply) {
167 IPC::Message* message = new IPC::Message(routing, type_id,
181 void ReplyMsgNotHandled(uint32 type_id) {
182 RoundtripAckReply(FUZZER_ROUTING_ID, MsgUnhandled::ID, type_id);
208 bool ExpectMessage(int value, uint32 type_id) {
209 if (!MsgHandlerInternal(type_id))
228 bool ExpectMsgNotHandled(uint32 type_id) {
229 return ExpectMessage(type_id, MsgUnhandled::ID);
233 bool MsgHandlerInternal(uint32 type_id) {
239 return (type_id == last_msg_->type())
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_genn.c 67 ASN1_SIMPLE(OTHERNAME, type_id, ASN1_OBJECT),
155 if ((result = OBJ_cmp(a->type_id, b->type_id)) != 0)
235 oth->type_id = oid;
247 *poid = gen->d.otherName->type_id;
  /external/openssl/crypto/x509v3/
v3_genn.c 67 ASN1_SIMPLE(OTHERNAME, type_id, ASN1_OBJECT),
155 if ((result = OBJ_cmp(a->type_id, b->type_id)) != 0)
235 oth->type_id = oid;
247 *poid = gen->d.otherName->type_id;
  /external/chromium_org/chrome/browser/metrics/
android_metrics_provider.cc 24 int GetActivityFlag(int type_id) {
25 ActivityTypeIds::Type type = ActivityTypeIds::GetActivityType(type_id);
  /art/runtime/
dex_file.h 511 uint16_t GetIndexForTypeId(const TypeId& type_id) const {
512 CHECK_GE(&type_id, type_ids_) << GetLocation();
513 CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation();
514 size_t result = &type_id - type_ids_;
521 const TypeId& type_id = GetTypeId(idx); local
522 return StringDataAndUtf16LengthByIdx(type_id.descriptor_idx_, unicode_length);
526 const TypeId& type_id = GetTypeId(idx); local
527 return StringDataByIdx(type_id.descriptor_idx_);
531 const char* GetTypeDescriptor(const TypeId& type_id) const {
532 return StringDataByIdx(type_id.descriptor_idx_)
563 const DexFile::TypeId& type_id = GetTypeId(field_id.class_idx_); local
569 const DexFile::TypeId& type_id = GetTypeId(field_id.type_idx_); local
603 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_); local
    [all...]
dex_file.cc 431 const TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id)); local
432 if (type_id != nullptr) {
433 uint16_t type_idx = GetIndexForTypeId(*type_id);
588 const TypeId& type_id = GetTypeId(mid); local
589 if (string_idx > type_id.descriptor_idx_) {
591 } else if (string_idx < type_id.descriptor_idx_) {
594 return &type_id;
675 const DexFile::TypeId* type_id = FindTypeId(GetIndexForStringId(*string_id)); local
676 if (type_id == NULL) {
679 uint16_t type_idx = GetIndexForTypeId(*type_id);
    [all...]
  /hardware/intel/common/libwsbm/src/
wsbm_driver.h 105 int type_id; member in struct:_ValidateNode
  /hardware/intel/img/hwcomposer/ips/common/
WsbmWrapper.c 51 vNode->base.type_id = 0;
61 node->type_id = 1;
69 if(node->type_id == 0) {
79 if(node->type_id == 0) {
  /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)
  /art/compiler/driver/
compiler_driver-inl.h 141 const DexFile::TypeId* type_id = local
143 if (type_id != nullptr) {
145 storage_idx = dex_file->GetIndexForTypeId(*type_id);

Completed in 698 milliseconds

1 2 3