/cts/tests/tests/media/libmediandkjni/ |
native-mediadrm-jni.cpp | 113 JNIEnv* env, jbyteArray const &byteArray) { 115 env->GetByteArrayElements(byteArray, /*is_copy*/NULL)); 117 for (jsize i = 0; i < env->GetArrayLength(byteArray); ++i) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
sre_compile.py | 260 charmap = bytearray(256)
374 mapping = bytearray(256)
376 data = bytearray()
|
/external/flatbuffers/python/flatbuffers/ |
builder.py | 99 Bytes: The internal `bytearray` for the Builder. 125 self.Bytes = bytearray(initialSize) 291 bytes2 = bytearray(newSize)
|
/external/python/cpython2/Lib/ |
sre_compile.py | 260 charmap = bytearray(256) 374 mapping = bytearray(256) 376 data = bytearray()
|
/external/python/cpython2/Lib/test/ |
test_int.py | 346 class CustomByteArray(bytearray): pass 347 factories = [str, bytearray, CustomStr, CustomByteArray, buffer] 385 self.assertRaises(TypeError, int, bytearray('100'), 2)
|
/external/python/cpython3/Lib/ |
base64.py | 32 bytes_types = (bytes, bytearray) # Types acceptable as binary data 159 encoded = bytearray() 222 decoded = bytearray()
|
pprint.py | 318 write('bytearray(') 323 _dispatch[bytearray.__repr__] = _pprint_bytearray 558 _builtin_scalars = frozenset({str, bytes, bytearray, int, float, complex,
|
sre_compile.py | 254 charmap = bytearray(256) 356 mapping = bytearray(256) 358 data = bytearray()
|
/external/v8/src/ |
deoptimizer.h | 896 Handle<ByteArray> CreateByteArray(Factory* factory); 905 TranslationIterator(ByteArray* buffer, int index) 919 ByteArray* buffer_; [all...] |
/frameworks/base/core/java/android/text/ |
MeasuredParagraph.java | 25 import android.text.AutoGrowArray.ByteArray; 112 private @NonNull ByteArray mLevels = new ByteArray();
|
/frameworks/base/core/jni/ |
android_hardware_camera2_CameraMetadata.cpp | 315 jbyteArray byteArray = env->NewByteArray(byteCount); 319 ScopedByteArrayRW arrayWriter(env, byteArray); 322 return byteArray;
|
/frameworks/base/media/java/android/media/ |
MediaExtractor.java | 305 ArrayList<Byte> byteArray = new ArrayList<Byte>(data.length); 307 byteArray.add(i, Byte.valueOf(data[i])); 309 return byteArray;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
ChannelsTest.java | 154 byte[] byteArray = new byte[bufSize]; 157 readres = this.fins.read(byteArray); 165 readres = this.fins.read(byteArray);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_sys.py | 531 # bytearray 534 x = bytearray(sample) 537 check(iter(bytearray()), size('PP'))
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_sys.py | 531 # bytearray 534 x = bytearray(sample) 537 check(iter(bytearray()), size('PP'))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sys.py | 531 # bytearray 534 x = bytearray(sample) 537 check(iter(bytearray()), size('PP'))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sys.py | 531 # bytearray 534 x = bytearray(sample) 537 check(iter(bytearray()), size('PP'))
|
/external/python/cpython3/Lib/test/ |
test_ssl.py | 209 ssl.RAND_add(bytearray(b"this is a random bytearray object"), 75.0) 393 self.assertRaises(OSError, ss.recv_into, bytearray(b'x')) 395 self.assertRaises(OSError, ss.recvfrom_into, bytearray(b'x'), 1) [all...] |
test_sys.py | [all...] |
test_io.py | 303 buffer = bytearray(b" world\n\n\n") 321 data = bytearray(5) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_ssl.py | 188 self.assertRaises(socket.error, ss.recv_into, bytearray(b'x'))
190 self.assertRaises(socket.error, ss.recvfrom_into, bytearray(b'x'), 1)
[all...] |
/external/python/cpython3/Lib/asyncio/ |
selector_events.py | 546 _buffer_factory = bytearray # Constructs initial value for self._buffer. 745 if not isinstance(data, (bytes, bytearray, memoryview)): 816 _buffer_factory = bytearray [all...] |
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/ |
GenCfgOpt.py | 418 bytearray = []
422 bytearray.append("0x%02X" % (value & 0xFF))
424 newvalue = '{' + ','.join(bytearray) + '}'
730 bytearray = []
739 bytearray.append(value)
747 bytearray.append(value & 0xFF)
751 valuestr = self.GetBsfBitFields(SubItem, bytearray)
[all...] |
/external/flatbuffers/tests/ |
py_test.py | 69 CheckReadBuffer(bytearray(canonicalWireData), 0) 347 want = bytearray(want_ints) [all...] |
/external/python/cpython2/Doc/library/ |
io.rst | 229 also be :class:`bytearray` or :class:`memoryview` of arrays of bytes. 231 such as :class:`bytearray` is required. 393 array of bytes, either :class:`bytearray` or :class:`memoryview`. 401 of bytes, either :class:`bytes`, :class:`bytearray`, or 481 either :class:`bytearray` or :class:`memoryview`. 494 an array of bytes, either :class:`bytes`, :class:`bytearray`, 634 :class:`bytes`, :class:`bytearray`, or :class:`memoryview`. [all...] |