/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/ |
UnsafeByteSequence.java | 52 byte[] newBytes = new byte[(count + length) * 2]; 53 System.arraycopy(bytes, 0, newBytes, 0, count); 54 bytes = newBytes; 62 byte[] newBytes = new byte[count * 2]; 63 System.arraycopy(bytes, 0, newBytes, 0, count); 64 bytes = newBytes;
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
FileEntry.java | 87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
88 setContentsInternal(newBytes);
98 byte[] newBytes = EMPTY;
100 newBytes = new byte[contents.length];
101 System.arraycopy(contents, 0, newBytes, 0, contents.length);
103 setContentsInternal(newBytes);
|
/external/icu/icu4c/source/i18n/ |
sortkey.cpp | 100 uint8_t *newBytes = static_cast<uint8_t *>(uprv_malloc(newCapacity)); 101 if(newBytes == NULL) { return NULL; } 103 uprv_memcpy(newBytes, getBytes(), length); 106 fUnion.fFields.fBytes = newBytes; 109 return newBytes;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
BytesTrieBuilder.java | 165 byte[] newBytes=new byte[newCapacity]; 167 newBytes, newBytes.length-bytesLength, bytesLength); 168 bytes=newBytes;
|
ByteArrayWrapper.java | 115 byte[] newbytes = new byte[capacity]; 116 copyBytes(bytes, 0, newbytes, 0, size); 117 bytes = newbytes;
|
BytesTrie.java | 498 byte[] newBytes=new byte[Math.min(2*bytes.length, 2*len)]; 499 System.arraycopy(bytes, 0, newBytes, 0, length); 500 bytes=newBytes; [all...] |
/libcore/luni/src/main/java/libcore/io/ |
IoUtils.java | 241 byte[] newBytes = new byte[newCapacity]; 242 System.arraycopy(bytes, 0, newBytes, 0, capacity); 243 bytes = newBytes;
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
FileChannelTest.java | 127 byte[] newBytes = "6789A".getBytes("US-ASCII"); 128 fc.write(ByteBuffer.wrap(newBytes)); 130 int expectedNewLength = positionBeyondSize + newBytes.length;
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
BytesTrieBuilder.java | 161 byte[] newBytes=new byte[newCapacity]; 163 newBytes, newBytes.length-bytesLength, bytesLength); 164 bytes=newBytes;
|
ByteArrayWrapper.java | 110 byte[] newbytes = new byte[capacity]; 111 copyBytes(bytes, 0, newbytes, 0, size); 112 bytes = newbytes;
|
BytesTrie.java | 468 byte[] newBytes=new byte[Math.min(2*bytes.length, 2*len)]; 469 System.arraycopy(bytes, 0, newBytes, 0, length); 470 bytes=newBytes; [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
UnicodeDecompressor.java | 188 int newBytes = 0; 192 newBytes = fBuffer.length - fBufferLength; 194 // verify there are newBytes bytes in byteBuffer 195 if(byteBufferLimit - byteBufferStart < newBytes) 196 newBytes = byteBufferLimit - byteBufferStart; 199 fBuffer, fBufferLength, newBytes); 212 bytePos += newBytes;
|
RuleBasedCollator.java | [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
UnicodeDecompressor.java | 191 int newBytes = 0; 195 newBytes = fBuffer.length - fBufferLength; 197 // verify there are newBytes bytes in byteBuffer 198 if(byteBufferLimit - byteBufferStart < newBytes) 199 newBytes = byteBufferLimit - byteBufferStart; 202 fBuffer, fBufferLength, newBytes); 215 bytePos += newBytes;
|
/packages/apps/TV/usbtuner/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
UnicodeDecompressor.java | 191 int newBytes = 0; 195 newBytes = fBuffer.length - fBufferLength; 197 // verify there are newBytes bytes in byteBuffer 198 if(byteBufferLimit - byteBufferStart < newBytes) 199 newBytes = byteBufferLimit - byteBufferStart; 202 fBuffer, fBufferLength, newBytes); 215 bytePos += newBytes;
|
/external/icu/icu4c/source/common/ |
bytestriebuilder.cpp | 382 char *newBytes=static_cast<char *>(uprv_malloc(newCapacity)); 383 if(newBytes==NULL) { 390 uprv_memcpy(newBytes+(newCapacity-bytesLength), 393 bytes=newBytes;
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadThread.java | 571 final long newBytes = mInfoDelta.mTotalBytes - curSize; 573 StorageUtils.ensureAvailableSpace(mContext, outFd, newBytes); 657 final long newBytes = (mInfoDelta.mCurrentBytes + len) - curSize; 659 StorageUtils.ensureAvailableSpace(mContext, outFd, newBytes); [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
LiteralByteStringTest.java | 265 byte[] newBytes = stringUnderTest.toByteArray(); 267 Arrays.equals(referenceBytes, newBytes));
|
NanoTest.java | [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
InetAddressTest.java | 72 byte[] newBytes = address.getAddress(); 73 assertSame((byte) 0, newBytes[0]);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICUBinary.java | 739 byte[] newBytes = new byte[capacity]; 740 System.arraycopy(bytes, 0, newBytes, 0, length); 741 bytes = newBytes;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUBinary.java | 735 byte[] newBytes = new byte[capacity]; 736 System.arraycopy(bytes, 0, newBytes, 0, length); 737 bytes = newBytes;
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
RuleBasedCollator.java | [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZISelLowering.cpp | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.ecf.identity_3.1.0.v20100529-0735.jar | |