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

  /dalvik/dx/src/com/android/dx/command/dump/
Args.java 27 boolean rawBytes = false;
BaseDumper.java 40 private final boolean rawBytes;
87 this.rawBytes = args.rawBytes;
93 this.separator = rawBytes ? "|" : "";
124 separator = rawBytes ? "|" : "";
135 boolean rawBytes = getRawBytes();
137 String hex = rawBytes ? hexDump(offset, len) : "";
217 return rawBytes;
227 if (rawBytes) {
240 int w1 = rawBytes ? (getWidth1() + 1) : 0
    [all...]
  /external/guava/guava/src/com/google/common/net/
InetAddresses.java 268 ByteBuffer rawBytes = ByteBuffer.allocate(2 * IPV6_PART_COUNT);
271 rawBytes.putShort(parseHextet(parts[i]));
274 rawBytes.putShort((short) 0);
277 rawBytes.putShort(parseHextet(parts[parts.length - i]));
282 return rawBytes.array();
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
WireFormatTest.java 63 ByteString rawBytes = message.toByteString();
64 assertEquals(rawBytes.size(), message.getSerializedSize());
66 TestAllTypes message2 = TestAllTypes.parseFrom(rawBytes);
74 ByteString rawBytes = message.toByteString();
75 assertEquals(rawBytes.size(), message.getSerializedSize());
77 TestPackedTypes message2 = TestPackedTypes.parseFrom(rawBytes);
88 ByteString rawBytes = message.toByteString();
89 assertEquals(rawBytes.size(), message.getSerializedSize());
91 TestAllTypes message2 = TestAllTypes.parseFrom(rawBytes);
100 ByteString rawBytes = message.toByteString()
    [all...]
DynamicMessageTest.java 172 ByteString rawBytes = message.toByteString();
173 TestAllTypes message2 = TestAllTypes.parseFrom(rawBytes);
178 assertEquals(TestUtil.getAllSet().toByteString(), rawBytes);
186 ByteString rawBytes = message.toByteString();
189 DynamicMessage.parseFrom(TestAllTypes.getDescriptor(), rawBytes);
193 Message message3 = message2.getParserForType().parseFrom(rawBytes);
198 ByteString rawBytes = TestUtil.getAllExtensionsSet().toByteString();
200 TestAllExtensions.getDescriptor(), rawBytes,
206 rawBytes, TestUtil.getExtensionRegistry());
216 ByteString rawBytes = message.toByteString()
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Instruction.java 69 public byte[] rawBytes;
91 if (newInsn.rawBytes != null) {
92 newInsn.rawBytes = new byte[rawBytes.length];
93 for (int i = 0; i < rawBytes.length; i++) {
94 newInsn.rawBytes[i] = rawBytes[i];
127 rawBytes = new byte[2 * getSize()];
129 file.read(rawBytes);
131 vregA = info.format.getA(rawBytes);
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
MessageReflection.java 899 ByteString rawBytes = null; // If we encounter "message" before "typeId"
932 rawBytes = null;
937 rawBytes = input.readBytes();
948 if (rawBytes != null && typeId != 0) { // Zero is not a valid type ID.
951 rawBytes, extension, extensionRegistry, target);
953 if (rawBytes != null) {
955 .addLengthDelimited(rawBytes).build());
962 ByteString rawBytes,
    [all...]
  /external/zxing/core/
core.jar 
  /external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /external/cldr/tools/java/libs/
guava.jar 
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 
  /external/guice/lib/
guava-19.0.jar 

Completed in 601 milliseconds