Home
last modified time | relevance | path

Searched refs:type_id (Results 1 – 18 of 18) sorted by relevance

/external/harfbuzz_ng/src/
Dhb-gobject-structs.cc44 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; \
Dhb-gobject-enums.cc.tmpl51 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;
/external/boringssl/src/crypto/x509v3/
Dv3_genn.c67 ASN1_SIMPLE(OTHERNAME, type_id, ASN1_OBJECT),
155 if ((result = OBJ_cmp(a->type_id, b->type_id)) != 0) in OTHERNAME_cmp()
235 oth->type_id = oid; in GENERAL_NAME_set0_othername()
247 *poid = gen->d.otherName->type_id; in GENERAL_NAME_get0_otherName()
Dv3_alt.c590 gen->d.otherName->type_id = OBJ_txt2obj(objtmp, 0); in do_othername()
592 if (!gen->d.otherName->type_id) in do_othername()
/external/nanopb-c/generator/google/protobuf/internal/
Ddecoder.py580 type_id = -1
589 (type_id, pos) = local_DecodeVarint(buffer, pos)
603 if type_id == -1:
608 extension = extensions_by_number.get(type_id)
/external/protobuf/python/google/protobuf/internal/
Ddecoder.py690 type_id = -1
699 (type_id, pos) = local_DecodeVarint(buffer, pos)
713 if type_id == -1:
718 extension = extensions_by_number.get(type_id)
Dunknown_fields_test.py151 item.type_id = 1545009
Dreflection_test.py1710 self.assertEqual(raw.item[0].type_id, 1547769)
2420 item.type_id = 1545008
2428 item.type_id = 1545009
2436 item.type_id = 1545010
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt033backtracking.g111 | type_id
114 type_id
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt033backtracking.g127 | type_id
130 type_id
/external/protobuf/src/google/protobuf/
Dwire_format_unittest.cc441 raw.item(0).type_id()); in TEST()
444 raw.item(1).type_id()); in TEST()
445 EXPECT_EQ(kUnknownTypeId, raw.item(2).type_id()); in TEST()
579 uint32 type_id = message.GetDescriptor()->extension(0)->number(); in TEST() local
581 type_id, &coded_output); in TEST()
Dextension_set_heavy.cc597 uint32 type_id; in ParseMessageSetItem() local
598 if (!input->ReadVarint32(&type_id)) return false; in ParseMessageSetItem()
599 last_type_id = type_id; in ParseMessageSetItem()
Dwire_format.cc679 uint32 type_id; in ParseAndMergeMessageSetItem() local
680 if (!input->ReadVarint32(&type_id)) return false; in ParseAndMergeMessageSetItem()
681 last_type_id = type_id; in ParseAndMergeMessageSetItem()
682 field = message_reflection->FindKnownExtensionByNumber(type_id); in ParseAndMergeMessageSetItem()
Dunittest_mset.proto79 required int32 type_id = 2; field
/external/kernel-headers/original/uapi/linux/
Dethtool.h234 __u32 type_id; member
/external/selinux/checkpolicy/
Dpolicy_define.c1298 static int define_typebounds_helper(char *bounds_id, char *type_id) in define_typebounds_helper() argument
1313 if (!is_id_in_scope(SYM_TYPES, type_id)) { in define_typebounds_helper()
1314 yyerror2("type %s is not within scope", type_id); in define_typebounds_helper()
1318 type = hashtab_search(policydbp->p_types.table, type_id); in define_typebounds_helper()
1320 yyerror2("type %s is not declared", type_id); in define_typebounds_helper()
1334 type_id, in define_typebounds_helper()
/external/boringssl/src/include/openssl/
Dx509v3.h161 ASN1_OBJECT *type_id; member
/external/wpa_supplicant_8/src/utils/
Dhttp_curl.c209 res = OBJ_obj2txt(txt, sizeof(txt), o->type_id, 1); in add_alt_name_othername()