/external/chromium_org/third_party/harfbuzz-ng/src/ |
H A D | 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;
|
H A D | 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/chromium/net/base/ |
H A D | 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) { argument 353 return gz_filter->InitDecoding(type_id) ? gz_filter.release() : NULL; 357 Filter* Filter::InitSdchFilter(FilterType type_id, argument 362 return sdch_filter->InitDecoding(type_id) 366 PrependNewFilter(FilterType type_id, const FilterContext& filter_context, int buffer_size, Filter* filter_list) argument [all...] |
H A D | filter.h | 244 static Filter* PrependNewFilter(FilterType type_id, 251 static Filter* InitGZipFilter(FilterType type_id, int buffer_size); 252 static Filter* InitSdchFilter(FilterType type_id,
|
/external/chromium_org/net/base/ |
H A D | filter.cc | 137 FilterType type_id; local 139 type_id = FILTER_TYPE_DEFLATE; 142 type_id = FILTER_TYPE_GZIP; 144 type_id = FILTER_TYPE_SDCH; 148 type_id = FILTER_TYPE_UNSUPPORTED; 150 return type_id; 343 Filter* Filter::InitGZipFilter(FilterType type_id, int buffer_size) { argument 346 return gz_filter->InitDecoding(type_id) ? gz_filter.release() : NULL; 350 Filter* Filter::InitSdchFilter(FilterType type_id, argument 355 return sdch_filter->InitDecoding(type_id) 359 PrependNewFilter(FilterType type_id, const FilterContext& filter_context, int buffer_size, Filter* filter_list) argument [all...] |
H A D | filter.h | 244 static Filter* PrependNewFilter(FilterType type_id, 251 static Filter* InitGZipFilter(FilterType type_id, int buffer_size); 252 static Filter* InitSdchFilter(FilterType type_id,
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
H A D | 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 variable [all...] |
/external/chromium_org/ipc/ |
H A D | ipc_fuzzing_tests.cc | 166 bool RoundtripAckReply(int routing, uint32 type_id, int reply) { argument 167 IPC::Message* message = new IPC::Message(routing, type_id, 181 void ReplyMsgNotHandled(uint32 type_id) { argument 182 RoundtripAckReply(FUZZER_ROUTING_ID, MsgUnhandled::ID, type_id); 208 bool ExpectMessage(int value, uint32 type_id) { argument 209 if (!MsgHandlerInternal(type_id)) 228 bool ExpectMsgNotHandled(uint32 type_id) { argument 229 return ExpectMessage(type_id, MsgUnhandled::ID); 233 bool MsgHandlerInternal(uint32 type_id) { argument 239 return (type_id [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
H A D | 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;
|
H A D | v3_alt.c | 575 * no need to free type_id because it is static 584 gen->d.otherName->type_id = OBJ_txt2obj(objtmp, 0); 586 if (!gen->d.otherName->type_id)
|
/external/openssl/crypto/x509v3/ |
H A D | 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;
|
H A D | v3_alt.c | 575 * no need to free type_id because it is static 584 gen->d.otherName->type_id = OBJ_txt2obj(objtmp, 0); 586 if (!gen->d.otherName->type_id)
|
/external/chromium/chrome/browser/renderer_host/ |
H A D | 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/ |
H A D | 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/valgrind/unittest/ |
H A D | 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;
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
H A D | decoder.py | 564 required int32 type_id = 2; 580 type_id = -1 584 # Technically, type_id and message can appear in any order, so we need 589 (type_id, pos) = local_DecodeVarint(buffer, pos) 603 if type_id == -1: 604 raise _DecodeError('MessageSet item missing type_id.') 608 extension = extensions_by_number.get(type_id)
|
H A D | unknown_fields_test.py | 142 item.type_id = 1545009
|
/external/protobuf/python/google/protobuf/internal/ |
H A D | decoder.py | 491 required int32 type_id = 2; 506 type_id = -1 510 # Technically, type_id and message can appear in any order, so we need 515 (type_id, pos) = local_DecodeVarint(buffer, pos) 529 if type_id == -1: 530 raise _DecodeError('MessageSet item missing type_id.') 534 extension = extensions_by_number.get(type_id)
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
H A D | 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);
|
H A D | 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 ye [all...] |
H A D | 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...] |
/external/protobuf/src/google/protobuf/ |
H A D | 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 ye [all...] |
H A D | 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());
|
H A D | extension_set.cc | 929 // required int32 type_id = 2; 932 // Once we see a type_id, we'll construct a fake tag for this extension 937 // If we see message data before the type_id, we'll append it to this so 950 uint32 type_id; local 951 if (!input->ReadVarint32(&type_id)) return false; 952 fake_tag = WireFormatLite::MakeTag(type_id, 956 // We saw some message data before the type_id. Have to parse it 973 // We haven't seen a type_id yet. Append this data to message_data. 980 // Already saw type_id, so we can parse this directly. 1377 // type_id [all...] |
/external/checkpolicy/ |
H A D | policy_define.c | 1261 static int define_typebounds_helper(char *bounds_id, char *type_id) argument 1276 if (!is_id_in_scope(SYM_TYPES, type_id)) { 1277 yyerror2("type %s is not within scope", type_id); 1281 type = hashtab_search(policydbp->p_types.table, type_id); 1283 yyerror2("type %s is not declared", type_id); 1297 type_id,
|