HomeSort by relevance Sort by last modified time
    Searched full:bytearray (Results 176 - 200 of 390) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
Resources.resx 42 mimetype="application/x-microsoft.net.object.bytearray.base64">
76 mimetype: application/x-microsoft.net.object.bytearray.base64
VSPackage.resx 43 mimetype="application/x-microsoft.net.object.bytearray.base64">
77 mimetype: application/x-microsoft.net.object.bytearray.base64
  /external/chromium_org/v8/src/
regexp-macro-assembler-irregexp.cc 358 Handle<ByteArray> table, Label* on_bit_set) {
425 Handle<ByteArray> array = isolate_->factory()->NewByteArray(length());
  /external/clang/tools/clang-format-vs/ClangFormat/
Resources.resx 34 <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
66 mimetype: application/x-microsoft.net.object.bytearray.base64
VSPackage.resx 35 <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
67 mimetype: application/x-microsoft.net.object.bytearray.base64
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 20 import javassist.bytecode.ByteArray;
350 ByteArray.write16bit(value, buf, 0);
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 27 ReadableFontData::ReadableFontData(ByteArray* array)
165 int32_t ReadableFontData::CopyTo(ByteArray* ba) {
  /frameworks/base/core/jni/android/graphics/
BitmapRegionDecoder.cpp 103 static jobject nativeNewInstanceFromByteArray(JNIEnv* env, jobject, jbyteArray byteArray,
109 AutoJavaByteArray ar(env, byteArray);
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
ParserTest.java 98 final byte[] byteArray = hexStringToByteArray(hexStr);
99 return new ByteArrayInputStream(byteArray);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_memoryio.py 418 b = bytearray(b"hello")
425 b = bytearray(b"hello world")
429 b = bytearray(b"")
442 b = bytearray()
619 bytearray(state[0]) # Check if state[0] supports the buffer interface.
629 memio.__setstate__((bytearray(b"no error"), 0, None))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_memoryio.py 418 b = bytearray(b"hello")
425 b = bytearray(b"hello world")
429 b = bytearray(b"")
442 b = bytearray()
619 bytearray(state[0]) # Check if state[0] supports the buffer interface.
629 memio.__setstate__((bytearray(b"no error"), 0, None))
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java 52 byte[] byteArray;
111 Arrays.binarySearch(byteArray, counter) == counter);
118 byteArray[counter] -= 50;
122 Arrays.binarySearch(byteArray, (byte) (counter - 50)) == counter);
    [all...]
  /art/runtime/mirror/
object.h 43 typedef PrimitiveArray<int8_t> ByteArray;
154 ByteArray* AsByteArray() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
156 ByteArray* AsByteSizedArray() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
array.cc 131 template class PrimitiveArray<int8_t>; // ByteArray
object-inl.h 276 inline ByteArray* Object::AsByteArray() {
280 return down_cast<ByteArray*>(this);
284 inline ByteArray* Object::AsByteSizedArray() {
289 return down_cast<ByteArray*>(this);
    [all...]
  /external/chromium_org/v8/src/ia32/
deoptimizer-ia32.cc 68 Handle<ByteArray> new_reloc =
120 ByteArray* reloc_info = code->relocation_info();
153 reloc_info->address() + ByteArray::kHeaderSize);
  /external/chromium_org/v8/src/x87/
deoptimizer-x87.cc 68 Handle<ByteArray> new_reloc =
120 ByteArray* reloc_info = code->relocation_info();
153 reloc_info->address() + ByteArray::kHeaderSize);
  /frameworks/av/media/ndk/
NdkMediaDrm.cpp 578 Vector<uint8_t> byteArray;
579 byteArray.appendArray(value, valueSize);
582 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);
  /frameworks/base/media/jni/
android_media_MediaDrm.cpp 401 static Vector<uint8_t> JByteArrayToVector(JNIEnv *env, jbyteArray const &byteArray) {
403 size_t length = env->GetArrayLength(byteArray);
405 env->GetByteArrayRegion(byteArray, 0, length, (jbyte *)vector.editArray());
503 jbyteArray byteArray = VectorToJByteArray(env, *iter);
504 env->CallBooleanMethod(arrayList, gFields.arraylist.add, byteArray);
505 env->DeleteLocalRef(byteArray);
    [all...]
  /developers/samples/android/wearable/wear/AgendaData/Application/src/main/java/com/example/android/agendadata/
CalendarQueryService.java 226 byte[] byteArray = stream.toByteArray();
228 return byteArray;
  /development/samples/wearable/AgendaData/Application/src/main/java/com/example/android/wearable/agendadata/
CalendarQueryService.java 226 byte[] byteArray = stream.toByteArray();
228 return byteArray;
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/urlhandler/
protocol_loop.py 45 self.loop_buffer = bytearray()
126 data = bytearray()
  /external/lldb/test/
lldbutil.py 48 # Integer (byte size 1, 2, 4, and 8) to bytearray conversion
52 """Utility function to convert an integer into a bytearray.
54 It returns the bytearray in the little endian format. It is easy to get the
60 return bytearray([val])
74 return bytearray(map(ord, packed))
77 """Utility function to convert a bytearray into an integer.
79 It interprets the bytearray in the little endian format. For a big endian
80 bytearray, just do ba.reverse() on the object before passing it in.
  /external/chromium_org/third_party/tlslite/tlslite/
tlsconnection.py 78 return bytesToNumber(bytearray(s.decode("hex")))
630 bytearray(0), cipherSuites,
708 if bytearray(p) in serverHello.next_protos:
709 return bytearray(p)
714 return bytearray(nextProtos[0])
    [all...]

Completed in 2329 milliseconds

1 2 3 4 5 6 78 91011>>