/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
Chars.java | 53 * The number of bytes required to represent a primitive {@code char} 56 public static final int BYTES = Character.SIZE / Byte.SIZE;
|
Doubles.java | 54 * The number of bytes required to represent a primitive {@code double} 59 public static final int BYTES = Double.SIZE / Byte.SIZE;
|
Floats.java | 54 * The number of bytes required to represent a primitive {@code float} 59 public static final int BYTES = Float.SIZE / Byte.SIZE;
|
Shorts.java | 52 * The number of bytes required to represent a primitive {@code short} 55 public static final int BYTES = Short.SIZE / Byte.SIZE;
|
Ints.java | 55 * The number of bytes required to represent a primitive {@code int} 58 public static final int BYTES = Integer.SIZE / Byte.SIZE;
|
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
RubyMessage.java | 285 * MessageClass.encode(msg) => bytes 300 * Decodes the given data (as a string containing bytes in protocol buffers wire 332 * Decodes the given data (as a string containing bytes in protocol buffers wire 505 case BYTES: 510 case BYTES: 559 case BYTES: [all...] |
RubyMap.java | 84 * :string, :bytes. 87 * :string, :bytes, :enum, :message. 117 case BYTES:
|
RubyRepeatedField.java | 376 case BYTES:
|
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
JsonFormat.java | 567 || valueField.getType() != FieldDescriptor.Type.BYTES) { 896 case BYTES: [all...] |
/external/python/apitools/apitools/base/protorpclite/ |
messages.py | 566 BYTES: String of 8-bit bytes. 580 BYTES = 12 [all...] |
/external/guava/guava/src/com/google/common/primitives/ |
Doubles.java | 59 * The number of bytes required to represent a primitive {@code double} 64 public static final int BYTES = Double.SIZE / Byte.SIZE;
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
CharsTest.java | 226 Chars.fromByteArray(new byte[Chars.BYTES - 1]); 247 byte[] bytes = Chars.toByteArray(c); 248 assertEquals((byte) hi, bytes[0]); 249 assertEquals((byte) lo, bytes[1]);
|
ShortsTest.java | 260 byte[] b = new byte[Shorts.BYTES]; 375 List<Byte> bytes = Arrays.asList((byte) 0, (byte) 1, (byte) 2); local 382 assertTrue(Arrays.equals(array, Shorts.toArray(bytes)));
|
/external/pdfium/fxbarcode/pdf417/ |
BC_PDF417HighLevelEncoder.cpp | 61 ByteString bytes; local 62 CBC_UtilCodingConvert::UnicodeToUTF8(wideMsg, bytes); 64 int32_t len = bytes.GetLength(); 66 wchar_t ch = (wchar_t)(bytes[i] & 0xff); 67 if (ch == '?' && bytes[i] != '?') { 73 std::vector<uint8_t> byteArr(bytes.begin(), bytes.end()); 80 } else if (compaction == BYTES) { 258 void CBC_PDF417HighLevelEncoder::encodeBinary(std::vector<uint8_t>* bytes, 275 t += (*bytes)[idx + i] & 0xff [all...] |
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
AbstractMessage.java | 148 * Compares two bytes fields. The parameters must be either a byte array or a 204 * of bytes fields because immutable messages and mutable messages use 205 * different Java type to reprensent a bytes field and this method should be 220 if (descriptor.getType() == FieldDescriptor.Type.BYTES) { 233 // Compares a singular bytes field. 243 // Compare non-bytes fields.
|
FieldSet.java | 511 byte[] bytes = (byte[]) value; 512 byte[] copy = new byte[bytes.length]; 513 System.arraycopy(bytes, 0, copy, 0, bytes.length); 687 case BYTES: 797 * Compute the number of bytes that would be needed to encode a 820 * Compute the number of bytes that would be needed to encode a 843 case BYTES : 882 * Compute the number of bytes needed to encode a particular field.
|
/external/protobuf/php/ext/google/protobuf/ |
def.c | 266 CONVERT(BYTES, "bytes");
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
defs.c | 568 CONVERT(BYTES, bytes); 590 CONVERT(BYTES, bytes); 616 CONVERT(BYTES, bytes); 645 CONVERT(BYTES, bytes); 672 * :bytes, :message. [all...] |
/external/protobuf/src/google/protobuf/ |
extension_set_heavy.cc | 478 HANDLE_TYPE( BYTES, Bytes, string); 507 HANDLE_TYPE( BYTES, Bytes, *string_value);
|
extension_set.cc | [all...] |
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
NativeCryptoTest.java | [all...] |
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
NativeCryptoTest.java | [all...] |
/external/mksh/src/ |
funcs.c | [all...] |
/external/python/apitools/apitools/gen/ |
command_registry.py | 38 messages.Variant.BYTES: 'string',
|
/external/grpc-grpc/third_party/nanopb/generator/ |
nanopb_generator.py | 111 '''Returns the maximum number of bytes a varint can take when encoded.''' 325 self.pbtype = 'BYTES' 327 # Inline STATIC for BYTES is like STATIC for STRING. 355 elif self.rules == 'REPEATED' and self.pbtype in ['STRING', 'BYTES']: 356 # String/bytes arrays need to be defined as pointers to pointers 372 if self.pbtype == 'BYTES' and self.allocation == 'STATIC' and not self.inline: 400 elif self.pbtype == 'BYTES': 413 elif self.pbtype == 'BYTES': 473 elif self.pbtype == 'BYTES': 515 elif self.pbtype in ['BYTES', 'STRING'] and self.allocation != 'STATIC' [all...] |