HomeSort by relevance Sort by last modified time
    Searched refs:newBytes (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /frameworks/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 102 uint8_t *newBytes = static_cast<uint8_t *>(uprv_malloc(newCapacity));
103 if(newBytes == NULL) { return NULL; }
105 uprv_memcpy(newBytes, getBytes(), length);
108 fUnion.fFields.fBytes = newBytes;
111 return newBytes;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BytesTrieBuilder.java 163 byte[] newBytes=new byte[newCapacity];
165 newBytes, newBytes.length-bytesLength, bytesLength);
166 bytes=newBytes;
BytesTrie.java 471 byte[] newBytes=new byte[Math.min(2*bytes.length, 2*len)];
472 System.arraycopy(bytes, 0, newBytes, 0, length);
473 bytes=newBytes;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrieBuilder.java 167 byte[] newBytes=new byte[newCapacity];
169 newBytes, newBytes.length-bytesLength, bytesLength);
170 bytes=newBytes;
BytesTrie.java 501 byte[] newBytes=new byte[Math.min(2*bytes.length, 2*len)];
502 System.arraycopy(bytes, 0, newBytes, 0, length);
503 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;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeDecompressor.java 190 int newBytes = 0;
194 newBytes = fBuffer.length - fBufferLength;
196 // verify there are newBytes bytes in byteBuffer
197 if(byteBufferLimit - byteBufferStart < newBytes)
198 newBytes = byteBufferLimit - byteBufferStart;
201 fBuffer, fBufferLength, newBytes);
214 bytePos += newBytes;
RuleBasedCollator.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeDecompressor.java 193 int newBytes = 0;
197 newBytes = fBuffer.length - fBufferLength;
199 // verify there are newBytes bytes in byteBuffer
200 if(byteBufferLimit - byteBufferStart < newBytes)
201 newBytes = byteBufferLimit - byteBufferStart;
204 fBuffer, fBufferLength, newBytes);
217 bytePos += newBytes;
  /external/icu/icu4c/source/common/
bytestriebuilder.cpp 384 char *newBytes=static_cast<char *>(uprv_malloc(newCapacity));
385 if(newBytes==NULL) {
392 uprv_memcpy(newBytes+(newCapacity-bytesLength),
395 bytes=newBytes;
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 147 byte[] newBytes = "6789A".getBytes("US-ASCII");
148 fc.write(ByteBuffer.wrap(newBytes));
150 int expectedNewLength = positionBeyondSize + newBytes.length;
  /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 741 byte[] newBytes = new byte[capacity];
742 System.arraycopy(bytes, 0, newBytes, 0, length);
743 bytes = newBytes;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUBinary.java 737 byte[] newBytes = new byte[capacity];
738 System.arraycopy(bytes, 0, newBytes, 0, length);
739 bytes = newBytes;
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
RuleBasedCollator.java     [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.identity_3.2.0.v20130604-1622.jar 
  /external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
NanoTest.java     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
yjp-controller-api-redist.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
icu4j-53.1.jar 

Completed in 395 milliseconds

1 2 3 4