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

1 2

  /external/bluetooth/glib/gobject/
gboxed.c 144 static GType type_id = 0; local
146 if (!type_id)
147 type_id = g_boxed_type_register_static (g_intern_static_string ("GClosure"),
150 return type_id;
156 static GType type_id = 0; local
158 if (!type_id)
159 type_id = g_boxed_type_register_static (g_intern_static_string ("GValue"),
162 return type_id;
168 static GType type_id = 0; local
170 if (!type_id)
188 static GType type_id = 0; local
200 static GType type_id = 0; local
228 static GType type_id = 0; local
255 static GType type_id = 0; local
265 static GType type_id = 0; local
    [all...]
  /external/webkit/Source/WebCore/inspector/
generate-inspector-idl 95 def full_qualified_type_id(domain_name, type_id):
96 if type_id.find(".") == -1:
97 return "%s.%s" % (domain_name, type_id)
98 return type_id
105 type_id = full_qualified_type_id(domain_name, param["$ref"])
106 if type_id in ref_types:
107 ref_type = ref_types[type_id]
120 type_id = full_qualified_type_id(domain_name, type["id"]) variable
121 ref_types[type_id] = type;
  /external/chromium/chrome/browser/userfeedback/proto/
extension.proto 63 required int32 type_id = 3;
85 optional int32 type_id = 8;
105 required int32 type_id = 3;
  /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...]
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/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;
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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
DnaBlockData.java 47 private static final int TYPE_ID = 'T' << 24 | 'Y' << 16 | 'P' << 8 | 'E'; //TYPE
94 if (identifier != TYPE_ID) {
95 throw new BlenderFileException("Invalid identifier! '" + this.toString(TYPE_ID) + "' expected and found: " + this.toString(identifier));
  /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...]
unittest_mset.proto 68 required int32 type_id = 2;
extension_set.cc 950 uint32 type_id; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 115 | type_id
118 type_id
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
c-pretty-print.h 74 c_pretty_print_fn type_id; member in struct:c_pretty_print_info
121 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)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleXmlTransfer.java 67 private static final int TYPE_ID = registerType(TYPE_NAME);
103 return new int[] { TYPE_ID };
  /external/protobuf/python/google/protobuf/internal/
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)
wire_format_test.py 230 # 4 bytes for tags, plus 1 byte for length, plus 1 byte for type_id,
236 # 4 bytes for tags, plus 2 bytes for length, plus 1 byte for type_id,
242 # 4 bytes for tags, plus 2 bytes for length, plus 2 byte for type_id,
wire_format.py 207 # is field number 1, one with field number 2 (type_id) and one with field
211 # Add the number of bytes for type_id.
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t033backtracking.g 111 | type_id
114 type_id
  /external/antlr/antlr-3.4/runtime/Python/tests/
t033backtracking.g 127 | type_id
130 type_id
  /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);
  /cts/tools/dasm/src/java_cup/
parser.cup 174 type_id, term_name_list, non_term_name_list, production, prod_part_list,
329 type_id
339 type_id
545 type_id ::= multipart_id;
  /frameworks/base/core/java/android/net/
Uri.java 457 static final int TYPE_ID = 1;
479 parcel.writeInt(TYPE_ID);
824 static final int TYPE_ID = 2;
849 parcel.writeInt(TYPE_ID);
    [all...]

Completed in 892 milliseconds

1 2