HomeSort by relevance Sort by last modified time
    Searched defs:MakeTag (Results 1 - 4 of 4) sorted by null

  /external/protobuf/csharp/src/Google.Protobuf/
WireFormat.cs 99 public static uint MakeTag(int fieldNumber, WireType wireType)
  /external/v8/tools/release/
auto_tag.py 149 class MakeTag(Step):
195 MakeTag,
  /external/protobuf/src/google/protobuf/
wire_format.h 187 // This is different from MakeTag(field->number(), field->type()) in the case
189 static uint32 MakeTag(const FieldDescriptor* field);
300 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
301 return WireFormatLite::MakeTag(field->number(), WireTypeForField(field));
wire_format_lite.h 150 // This is different from MakeTag(field->number(), field->type()) in the case
152 static uint32 MakeTag(int field_number, WireType type);
182 // This macro does the same thing as WireFormatLite::MakeTag(), but the
184 // as a switch case or a template input. WireFormatLite::MakeTag() is more
589 inline uint32 WireFormatLite::MakeTag(int field_number, WireType type) {

Completed in 932 milliseconds