HomeSort by relevance Sort by last modified time
    Searched full:bytearray (Results 101 - 125 of 550) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
xsrfutil.py 116 for x, y in zip(bytearray(token), bytearray(expected_token)):
  /external/dexmaker/src/dx/java/com/android/dx/util/
Output.java 91 * Writes a {@link ByteArray} to this instance.
95 public void write(ByteArray bytes);
  /external/guava/guava/src/com/google/common/hash/
AbstractNonStreamingHashFunction.java 145 return hashBytes(stream.byteArray(), 0, stream.length());
154 byte[] byteArray() {
  /external/javassist/src/main/javassist/bytecode/
EnclosingMethodAttribute.java 81 return ByteArray.readU16bit(get(), 0);
88 return ByteArray.readU16bit(get(), 2);
ConstantAttribute.java 56 return ByteArray.readU16bit(get(), 0);
SourceFileAttribute.java 56 return getConstPool().getUtf8Info(ByteArray.readU16bit(get(), 0));
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
DirectReadOnlyFloatBufferAdapter.java 47 this.floatArray = TypedArrays.createFloat32Array(byteBuffer.byteArray.buffer(), byteBuffer.byteArray.byteOffset(), capacity);
DirectReadOnlyIntBufferAdapter.java 47 this.intArray = TypedArrays.createInt32Array(byteBuffer.byteArray.buffer(), byteBuffer.byteArray.byteOffset(), capacity);
DirectReadOnlyShortBufferAdapter.java 46 this.shortArray = TypedArrays.createInt16Array(byteBuffer.byteArray.buffer(), byteBuffer.byteArray.byteOffset(), capacity);
DirectReadWriteFloatBufferAdapter.java 47 this.floatArray = TypedArrays.createFloat32Array(byteBuffer.byteArray.buffer(), byteBuffer.byteArray.byteOffset(), capacity);
DirectReadWriteIntBufferAdapter.java 46 this.intArray = TypedArrays.createInt32Array(byteBuffer.byteArray.buffer(), byteBuffer.byteArray.byteOffset(), capacity);
DirectReadWriteShortBufferAdapter.java 47 this.shortArray = TypedArrays.createInt16Array(byteBuffer.byteArray.buffer(), byteBuffer.byteArray.byteOffset(), capacity);
  /external/v8/src/
string-stream.h 17 class ByteArray;
144 void PrintByteArray(ByteArray* ba);
  /external/chromium-trace/catapult/telemetry/telemetry/core/
platform_unittest.py 41 special_colored_pixel = bytearray([217, 115, 43])
  /external/sfntly/cpp/src/sfntly/data/
growable_memory_byte_array.cc 27 : ByteArray(0, INT_MAX, true) {
  /hardware/bsp/intel/peripheral/libmraa/examples/python/
bmp85.py 46 x.write(bytearray(b'0xf40x2e'))
spi.py 35 txbuf = bytearray(4)
  /libcore/luni/src/main/native/
NetworkUtilities.cpp 75 ScopedLocalRef<jbyteArray> byteArray(env, env->NewByteArray(addressLength));
76 if (byteArray.get() == NULL) {
79 env->SetByteArrayRegion(byteArray.get(), 0, addressLength,
88 NULL, byteArray.get(), scope_id);
  /packages/providers/BlockedNumberProvider/src/com/android/providers/blockednumber/
BlockedNumberBackupAgent.java 209 byte[] byteArray = new byte[data.getDataSize()];
210 data.readEntityData(byteArray, 0, byteArray.length);
211 DataInputStream dataInput = new DataInputStream(new ByteArrayInputStream(byteArray));
  /cts/tests/tests/media/src/android/media/cts/
AudioRecordNative.java 88 public int read(@NonNull byte[] byteArray,
91 mNativeRecordInJavaObj, byteArray, offsetInSamples, sizeInSamples, readFlags);
154 private static native int nativeReadByteArray(long record, @NonNull byte[] byteArray,
AudioTrackNative.java 95 public int write(@NonNull byte[] byteArray,
98 mNativeTrackInJavaObj, byteArray, offsetInSamples, sizeInSamples, writeFlags);
161 private static native int nativeWriteByteArray(long track, @NonNull byte[] byteArray,
  /cts/tests/tests/os/src/android/os/cts/
BundleTest.java 199 byte[] byteArray = mBundle.getByteArray(KEY);
200 assertNotNull(byteArray);
201 assertEquals(3, byteArray.length);
202 assertEquals(1, byteArray[0]);
203 assertEquals(2, byteArray[1]);
204 assertEquals(3, byteArray[2]);
206 byteArray = mBundle.getByteArray(KEY);
207 assertNotNull(byteArray);
208 assertEquals(3, byteArray.length);
209 assertEquals(1, byteArray[0])
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 25 import com.android.dx.util.ByteArray;
82 ByteArray bytes = cf.getBytes();
124 ByteArray bytes = cf.getBytes();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/
Draw9PatchEditor.java 146 byte[] byteArray = outputStream.toByteArray();
150 file.setContents(new ByteArrayInputStream(byteArray), true, false, monitor);
152 file.create(new ByteArrayInputStream(byteArray), true, monitor);
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 29 public final class ByteArray {
48 public ByteArray(byte[] bytes, int start, int end) {
75 public ByteArray(byte[] bytes) {
96 public ByteArray slice(int start, int end) {
98 return new ByteArray(bytes, start + this.start, end + this.start);

Completed in 1183 milliseconds

1 2 3 45 6 7 8 91011>>