Home
last modified time | relevance | path

Searched refs:newBytes (Results 1 – 25 of 42) sorted by relevance

12

/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = EMPTY; in setContents()
100 newBytes = new byte[contents.length]; in setContents()
101 System.arraycopy(contents, 0, newBytes, 0, contents.length); in setContents()
103 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = EMPTY; in setContents()
100 newBytes = new byte[contents.length]; in setContents()
101 System.arraycopy(contents, 0, newBytes, 0, contents.length); in setContents()
103 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = EMPTY; in setContents()
100 newBytes = new byte[contents.length]; in setContents()
101 System.arraycopy(contents, 0, newBytes, 0, contents.length); in setContents()
103 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = EMPTY; in setContents()
100 newBytes = new byte[contents.length]; in setContents()
101 System.arraycopy(contents, 0, newBytes, 0, contents.length); in setContents()
103 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = EMPTY; in setContents()
100 newBytes = new byte[contents.length]; in setContents()
101 System.arraycopy(contents, 0, newBytes, 0, contents.length); in setContents()
103 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = EMPTY; in setContents()
100 newBytes = new byte[contents.length]; in setContents()
101 System.arraycopy(contents, 0, newBytes, 0, contents.length); in setContents()
103 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = EMPTY; in setContents()
100 newBytes = new byte[contents.length]; in setContents()
101 System.arraycopy(contents, 0, newBytes, 0, contents.length); in setContents()
103 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = EMPTY; in setContents()
100 newBytes = new byte[contents.length]; in setContents()
101 System.arraycopy(contents, 0, newBytes, 0, contents.length); in setContents()
103 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = (contents != null) ? new String(contents).getBytes() : EMPTY; in setContents()
99 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java88 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
89 setContentsInternal(newBytes); in setContents()
99 byte[] newBytes = (contents != null) ? new String(contents).getBytes() : EMPTY; in setContents()
100 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = (contents != null) ? new String(contents).getBytes() : EMPTY; in setContents()
99 setContentsInternal(newBytes); in setContents()
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
DFileEntry.java87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents()
88 setContentsInternal(newBytes); in setContents()
98 byte[] newBytes = (contents != null) ? new String(contents).getBytes() : EMPTY; in setContents()
99 setContentsInternal(newBytes); in setContents()
/external/icu/icu4c/source/i18n/
Dsortkey.cpp102 uint8_t *newBytes = static_cast<uint8_t *>(uprv_malloc(newCapacity)); in reallocate() local
103 if(newBytes == NULL) { return NULL; } in reallocate()
105 uprv_memcpy(newBytes, getBytes(), length); in reallocate()
108 fUnion.fFields.fBytes = newBytes; in reallocate()
111 return newBytes; in reallocate()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeDecompressor.java193 int newBytes = 0; in decompress() local
197 newBytes = fBuffer.length - fBufferLength; in decompress()
200 if(byteBufferLimit - byteBufferStart < newBytes) in decompress()
201 newBytes = byteBufferLimit - byteBufferStart; in decompress()
204 fBuffer, fBufferLength, newBytes); in decompress()
217 bytePos += newBytes; in decompress()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DUnicodeDecompressor.java190 int newBytes = 0; in decompress() local
194 newBytes = fBuffer.length - fBufferLength; in decompress()
197 if(byteBufferLimit - byteBufferStart < newBytes) in decompress()
198 newBytes = byteBufferLimit - byteBufferStart; in decompress()
201 fBuffer, fBufferLength, newBytes); in decompress()
214 bytePos += newBytes; in decompress()
DRuleBasedCollator.java1104 byte[] newBytes = new byte[newCapacity]; in Resize()
1105 System.arraycopy(buffer_, 0, newBytes, 0, length); in Resize()
1106 buffer_ = key_.bytes = newBytes; in Resize()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DBytesTrieBuilder.java167 byte[] newBytes=new byte[newCapacity]; in ensureCapacity()
169 newBytes, newBytes.length-bytesLength, bytesLength); in ensureCapacity()
170 bytes=newBytes; in ensureCapacity()
DBytesTrie.java501 byte[] newBytes=new byte[Math.min(2*bytes.length, 2*len)];
502 System.arraycopy(bytes, 0, newBytes, 0, length);
503 bytes=newBytes;
/external/icu/android_icu4j/src/main/java/android/icu/util/
DBytesTrieBuilder.java163 byte[] newBytes=new byte[newCapacity]; in ensureCapacity()
165 newBytes, newBytes.length-bytesLength, bytesLength); in ensureCapacity()
166 bytes=newBytes; in ensureCapacity()
DBytesTrie.java471 byte[] newBytes=new byte[Math.min(2*bytes.length, 2*len)];
472 System.arraycopy(bytes, 0, newBytes, 0, length);
473 bytes=newBytes;
/external/icu/icu4c/source/common/
Dbytestriebuilder.cpp384 char *newBytes=static_cast<char *>(uprv_malloc(newCapacity)); in ensureCapacity() local
385 if(newBytes==NULL) { in ensureCapacity()
392 uprv_memcpy(newBytes+(newCapacity-bytesLength), in ensureCapacity()
395 bytes=newBytes; in ensureCapacity()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUBinary.java741 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/
DICUBinary.java737 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/
DRuleBasedCollator.java1129 byte[] newBytes = new byte[newCapacity]; in Resize()
1130 System.arraycopy(buffer_, 0, newBytes, 0, length); in Resize()
1131 buffer_ = key_.bytes = newBytes; in Resize()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.ecf.identity_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...

12