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

  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
WireFormat.java 27 public enum WireFormat {
  /external/protobuf/src/google/protobuf/
wire_format.h 75 class LIBPROTOBUF_EXPORT WireFormat {
124 // WireFormat::SerializeWithCachedSizes() on the same object.
262 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
283 inline WireFormatLite::WireType WireFormat::WireTypeForField(
292 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
301 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
305 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
313 inline void WireFormat::VerifyUTF8String(const char* data, int size,
314 WireFormat::Operation op) {
316 WireFormat::VerifyUTF8StringFallback(data, size, op, NULL)
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
wire_format.h 75 class LIBPROTOBUF_EXPORT WireFormat {
124 // WireFormat::SerializeWithCachedSizes() on the same object.
242 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
263 inline WireFormatLite::WireType WireFormat::WireTypeForField(
272 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
281 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
285 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
293 inline void WireFormat::VerifyUTF8String(const char* data, int size,
294 WireFormat::Operation op) {
296 WireFormat::VerifyUTF8StringFallback(data, size, op)
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
wire_format.h 75 class LIBPROTOBUF_EXPORT WireFormat {
124 // WireFormat::SerializeWithCachedSizes() on the same object.
242 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
263 inline WireFormatLite::WireType WireFormat::WireTypeForField(
272 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
281 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
285 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
293 inline void WireFormat::VerifyUTF8String(const char* data, int size,
294 WireFormat::Operation op) {
296 WireFormat::VerifyUTF8StringFallback(data, size, op)
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
wire_format.h 75 class LIBPROTOBUF_EXPORT WireFormat {
124 // WireFormat::SerializeWithCachedSizes() on the same object.
242 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
263 inline WireFormatLite::WireType WireFormat::WireTypeForField(
272 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
281 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
285 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
293 inline void WireFormat::VerifyUTF8String(const char* data, int size,
294 WireFormat::Operation op) {
296 WireFormat::VerifyUTF8StringFallback(data, size, op)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
wire_format.h 75 class LIBPROTOBUF_EXPORT WireFormat {
124 // WireFormat::SerializeWithCachedSizes() on the same object.
261 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
282 inline WireFormatLite::WireType WireFormat::WireTypeForField(
291 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
300 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
304 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
312 inline void WireFormat::VerifyUTF8String(const char* data, int size,
313 WireFormat::Operation op) {
323 inline void WireFormat::VerifyUTF8StringNamedField
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
wire_format.h 75 class LIBPROTOBUF_EXPORT WireFormat {
124 // WireFormat::SerializeWithCachedSizes() on the same object.
242 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
263 inline WireFormatLite::WireType WireFormat::WireTypeForField(
272 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
281 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
285 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
293 inline void WireFormat::VerifyUTF8String(const char* data, int size,
294 WireFormat::Operation op) {
296 WireFormat::VerifyUTF8StringFallback(data, size, op)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 44 public final class WireFormat {
46 private WireFormat() {}
CodedInputStream.java 155 if (WireFormat.getTagFieldNumber(lastTag) == 0) {
189 switch (WireFormat.getTagWireType(tag)) {
190 case WireFormat.WIRETYPE_VARINT:
193 case WireFormat.WIRETYPE_FIXED64:
196 case WireFormat.WIRETYPE_LENGTH_DELIMITED:
199 case WireFormat.WIRETYPE_START_GROUP:
202 WireFormat.makeTag(WireFormat.getTagFieldNumber(tag),
203 WireFormat.WIRETYPE_END_GROUP));
205 case WireFormat.WIRETYPE_END_GROUP
    [all...]
CodedOutputStream.java 170 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED64);
177 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED32);
184 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
191 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
198 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
205 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED64);
212 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED32);
219 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
226 writeTag(fieldNumber, WireFormat.WIRETYPE_LENGTH_DELIMITED);
233 writeTag(fieldNumber, WireFormat.WIRETYPE_START_GROUP)
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/2.5.0/
protobuf-java-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/2.6.1/
protobuf-java-2.6.1.jar 
  /prebuilts/tools/common/offline-m2/com/google/protobuf/protobuf-java/2.5.0/
protobuf-java-2.5.0.jar 
  /prebuilts/tools/common/offline-m2/com/google/protobuf/protobuf-java/2.6.1/
protobuf-java-2.6.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0-beta-2/
protobuf-java-3.0.0-beta-2.jar 
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler/0.12.613/
kotlin-compiler-0.12.613.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/0.13.1513/
kotlin-compiler-embeddable-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/0.13.1514/
kotlin-compiler-embeddable-0.13.1514.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.0.0/
kotlin-compiler-embeddable-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.0.0-beta-1103/
kotlin-compiler-embeddable-1.0.0-beta-1103.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.0.0-beta-4584/
kotlin-compiler-embeddable-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.0.0-rc-1036/
kotlin-compiler-embeddable-1.0.0-rc-1036.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.0.2/
kotlin-compiler-embeddable-1.0.2.jar 

Completed in 5127 milliseconds