/dalvik/dx/src/com/android/dx/dex/file/ |
StringDataItem.java | 21 import com.android.dx.util.ByteArray; 72 ByteArray bytes = value.getBytes();
|
/libcore/luni/src/main/native/ |
NativeCollation.cpp | 92 uint8_t byteArray[UCOL_MAX_BUFFER * 2]; 94 uint8_t* usedByteArray = byteArray; 97 size_t byteArraySize = ucol_getSortKey(collator, chars, charCount, usedByteArray, sizeof(byteArray) - 1); 98 if (byteArraySize > sizeof(byteArray) - 1) {
|
java_net_InetAddress.cpp | 133 ScopedLocalRef<jbyteArray> byteArray(env, env->NewByteArray(addressLength)); 134 if (byteArray.get() == NULL) { 140 env->SetByteArrayRegion(byteArray.get(), 142 env->SetObjectArrayElement(addressArray, index, byteArray.get()); 296 static jstring InetAddress_byteArrayToIpString(JNIEnv* env, jobject, jbyteArray byteArray) { 297 if (byteArray == NULL) { 302 if (!byteArrayToSocketAddress(env, NULL, byteArray, 0, &ss)) {
|
/dalvik/dx/src/com/android/dx/command/dump/ |
BaseDumper.java | 23 import com.android.dx.util.ByteArray; 126 public void parsed(ByteArray bytes, int offset, int len, String human) { 146 public void startParsingMember(ByteArray bytes, int offset, String name, 152 public void endParsingMember(ByteArray bytes, int offset, String name, 173 protected final void setAt(ByteArray arr, int offset) {
|
/libcore/luni/src/test/java/tests/api/java/io/ |
DataInputStreamTest.java | 276 byte[] byteArray = new byte[testLength]; 279 is.readFully(byteArray, 0, -1); 286 is.readFully(byteArray, 0, byteArray.length + 1); 293 is.readFully(byteArray, 1, byteArray.length); 300 is.readFully(byteArray, -1, byteArray.length); 316 is.readFully(byteArray, 0, 1);
|
BufferedOutputStreamTest.java | 171 byte[] byteArray = new byte[10]; 181 bos.write(byteArray, -1, 1); 188 bos.write(byteArray, 0, -1); 195 bos.write(byteArray, 1, 10);
|
DataOutputStreamTest.java | 155 byte[] byteArray = new byte[10]; 165 os.write(byteArray, -1, 1); 172 os.write(byteArray, 0, -1); 179 os.write(byteArray, 1, 10);
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstUtf8.java | 19 import com.android.dx.util.ByteArray; 36 private final ByteArray bytes; 79 public static String utf8BytesToString(ByteArray bytes) { 186 this.bytes = new ByteArray(stringToUtf8Bytes(string)); 194 public CstUtf8(ByteArray bytes) { 346 public ByteArray getBytes() {
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
StdAttributeFactory.java | 57 import com.android.dx.util.ByteArray; 218 ByteArray bytes = cf.getBytes(); 322 ByteArray bytes = cf.getBytes(); 356 ByteArray bytes = cf.getBytes(); 385 ByteArray bytes = cf.getBytes(); 413 ByteArray bytes = cf.getBytes(); 470 ByteArray bytes = cf.getBytes(); 511 ByteArray bytes = cf.getBytes(); 534 ByteArray bytes = cf.getBytes(); 559 private LocalVariableList parseLocalVariables(ByteArray bytes [all...] |
DirectClassFile.java | 37 import com.android.dx.util.ByteArray; 80 private final ByteArray bytes; 173 public DirectClassFile(ByteArray bytes, String filePath, 202 this(new ByteArray(bytes), filePath, strictParse); 228 * Gets the {@link ByteArray} that this instance's data comes from. 232 public ByteArray getBytes() { 561 private final ByteArray bytes; 579 public DcfTypeList(ByteArray bytes, int offset, int size,
|
AttributeFactory.java | 25 import com.android.dx.util.ByteArray; 82 ByteArray bytes = cf.getBytes(); 124 ByteArray bytes = cf.getBytes();
|
AnnotationParser.java | 45 import com.android.dx.util.ByteArray; 61 private final ByteArray bytes; 67 private final ByteArray.MyDataInputStream input; 112 // ByteArray.MyDataInputStream should never throw. 136 // ByteArray.MyDataInputStream should never throw. 161 // ByteArray.MyDataInputStream should never throw.
|
MemberListParser.java | 28 import com.android.dx.util.ByteArray; 118 ByteArray bytes = cf.getBytes(); 177 ByteArray bytes = cf.getBytes();
|
/dalvik/dx/src/com/android/dx/util/ |
Output.java | 91 * Writes a {@link ByteArray} to this instance. 95 public void write(ByteArray bytes);
|
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);
|
/external/webkit/JavaScriptCore/runtime/ |
JSByteArray.cpp | 36 const ClassInfo JSByteArray::s_defaultInfo = { "ByteArray", 0, 0, 0 }; 38 JSByteArray::JSByteArray(ExecState* exec, NonNullPassRefPtr<Structure> structure, ByteArray* storage, const JSC::ClassInfo* classInfo)
|
/external/v8/src/ |
interpreter-irregexp.h | 39 static bool Match(Handle<ByteArray> code,
|
/external/webkit/WebCore/html/canvas/ |
CanvasPixelArray.cpp | 40 : m_data(WTF::ByteArray::create(length))
|
/external/webkit/WebCore/manual-tests/resources/ |
ArrayParameterTestApplet.class | |
ArrayParameterTestApplet.java | 43 System.out.println("byteArray called");
|
/dalvik/dx/src/com/android/dx/command/annotool/ |
AnnotationLister.java | 27 import com.android.dx.util.ByteArray; 71 ByteArray ba = new ByteArray(bytes);
|
/frameworks/base/core/java/com/google/android/mms/pdu/ |
EncodedStringValue.java | 108 byte[] byteArray = new byte[mData.length]; 110 System.arraycopy(mData, 0, byteArray, 0, mData.length); 111 return byteArray;
|
/packages/apps/Browser/tests/src/com/android/browser/ |
JNIBindingsTest.java | 104 public boolean testArray(byte[] byteArray, char[] charArray, double[] doubleArray, 117 assertNotNull(byteArray); 125 assertEquals(Arrays.toString(expectedByteArray), Arrays.toString(byteArray));
|
/dalvik/dx/src/com/android/dx/cf/cst/ |
ConstantPoolParser.java | 35 import com.android.dx.util.ByteArray; 45 private final ByteArray bytes; 68 public ConstantPoolParser(ByteArray bytes) { 326 ByteArray ubytes = bytes.slice(at, at + length);
|
/external/webkit/JavaScriptCore/ |
Android.v8.wtf.mk | 36 wtf/ByteArray.cpp \
|