Searched defs:ByteString (Results 1 - 7 of 7) sorted by relevance

/external/okhttp/okio/okio/src/main/java/okio/
H A DByteString.java46 public class ByteString implements Serializable, Comparable<ByteString> { class in inherits:Serializable,Comparable
51 /** A singleton empty {@code ByteString}. */
52 public static final ByteString EMPTY = ByteString.of();
58 ByteString(byte[] data) { method in class:ByteString
65 public static ByteString of(byte... data) {
67 return new ByteString(data.clone());
74 public static ByteString of(byte[] data, int offset, int byteCount) {
80 return new ByteString(cop
[all...]
/external/protobuf/csharp/src/Google.Protobuf/
H A DByteString.cs44 public sealed class ByteString : IEnumerable<byte>, IEquatable<ByteString> class in namespace:Google.Protobuf
46 private static readonly ByteString empty = new ByteString(new byte[0]);
56 /// Constructs a new ByteString from the given byte array. The array is
59 internal static ByteString FromBytes(byte[] bytes)
61 return new ByteString(bytes);
68 internal static byte[] GetBuffer(ByteString bytes)
77 internal static ByteString AttachBytes(byte[] bytes)
79 return new ByteString(byte
86 private ByteString(byte[] bytes) method in class:Google.Protobuf.ByteString
[all...]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DByteString.java59 * Like {@link String}, the contents of a {@link ByteString} can never be
68 public abstract class ByteString implements Iterable<Byte>, Serializable { class in inherits:Iterable,Serializable
72 * this, we just copy their bytes on {@link #concat(ByteString)}.
79 * When copying an InputStream into a ByteString with .readFrom(),
87 * Empty {@code ByteString}.
89 public static final ByteString EMPTY = new LiteralByteString(Internal.EMPTY_BYTE_ARRAY);
147 ByteString() {} method in class:ByteString
162 * Return a {@link ByteString.ByteIterator} over the bytes in the ByteString.
233 // ByteString
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 480 milliseconds