HomeSort by relevance Sort by last modified time
    Searched defs:destIndex (Results 1 - 25 of 181) sorted by null

1 2 3 4 5 6 7 8

  /external/guava/guava/src/com/google/common/escape/
CharEscaper.java 87 int destIndex = 0;
106 int sizeNeeded = destIndex + charsSkipped + rlen;
109 dest = growBuffer(dest, destIndex, destSize);
114 s.getChars(lastEscape, index, dest, destIndex);
115 destIndex += charsSkipped;
120 System.arraycopy(r, 0, dest, destIndex, rlen);
121 destIndex += rlen;
129 int sizeNeeded = destIndex + charsLeft;
133 dest = growBuffer(dest, destIndex, sizeNeeded);
135 s.getChars(lastEscape, slen, dest, destIndex);
    [all...]
UnicodeEscaper.java 181 int destIndex = 0;
200 int sizeNeeded = destIndex + charsSkipped + escaped.length;
203 dest = growBuffer(dest, destIndex, destLength);
207 s.getChars(unescapedChunkStart, index, dest, destIndex);
208 destIndex += charsSkipped;
211 System.arraycopy(escaped, 0, dest, destIndex, escaped.length);
212 destIndex += escaped.length;
224 int endIndex = destIndex + charsSkipped;
226 dest = growBuffer(dest, destIndex, endIndex);
228 s.getChars(unescapedChunkStart, end, dest, destIndex);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 146 int destIndex = dstBegin;
149 dst[destIndex++] = m_str.charAt(i);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
TestStringPrep.java 116 int destIndex = destString.indexOf('@');
117 if(destIndex < 0){
  /external/icu/icu4c/source/test/intltest/
testutil.cpp 91 int32_t destIndex = destLength;
93 while (index < destIndex && i > 0) {
96 int32_t prevDestIndex = destIndex - expected[i].newLength;
109 destIndex = prevDestIndex;
118 int32_t destIndex = destLength;
123 int32_t prevDestIndex = destIndex - expected[i].newLength;
129 return destIndex;
136 destIndex = prevDestIndex;
139 return destIndex;
251 int32_t destIndex = 0
    [all...]
utxttest.cpp 308 int destIndex = 0; // Code point index of the destination for a copy/move test.
347 case 1: destIndex = 0; break;
348 case 2: destIndex = 1; break;
349 case 3: destIndex = srcIndex - 1; break;
350 case 4: destIndex = srcIndex + srcLength + 1; break;
351 case 5: destIndex = cpCount-1; break;
352 case 6: destIndex = cpCount; break;
354 if (destIndex<0 || destIndex>cpCount) {
361 nativeDest = nativeMap[destIndex].nativeIdx
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
TestStringPrep.java 113 int destIndex = destString.indexOf('@');
114 if(destIndex < 0){
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
UnicodeEscaper.java 173 int destIndex = 0;
192 int sizeNeeded = destIndex + charsSkipped + escaped.length;
195 dest = growBuffer(dest, destIndex, destLength);
199 s.getChars(unescapedChunkStart, index, dest, destIndex);
200 destIndex += charsSkipped;
203 System.arraycopy(escaped, 0, dest, destIndex, escaped.length);
204 destIndex += escaped.length;
216 int endIndex = destIndex + charsSkipped;
218 dest = growBuffer(dest, destIndex, endIndex);
220 s.getChars(unescapedChunkStart, end, dest, destIndex);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Edits.java 232 private int srcIndex, replIndex, destIndex;
265 destIndex += newLength_;
273 destIndex -= newLength_;
540 spanStart = destIndex;
549 spanStart = findSource ? srcIndex : destIndex;
567 destIndex -= n * newLength_;
574 destIndex -= num * newLength_;
581 index = remaining = oldLength_ = newLength_ = srcIndex = replIndex = destIndex = 0;
591 spanStart = destIndex;
606 destIndex += n * newLength_
    [all...]
  /external/icu/icu4c/source/common/unicode/
edits.h 152 srcIndex(0), replIndex(0), destIndex(0) {}
301 int32_t destinationIndex() const { return destIndex; }
327 int32_t srcIndex, replIndex, destIndex;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
UnicodeEscaper.java 192 int destIndex = 0;
207 int sizeNeeded = destIndex + charsSkipped + escaped.length;
210 dest = growBuffer(dest, destIndex, destLength);
214 s.getChars(unescapedChunkStart, index, dest, destIndex);
215 destIndex += charsSkipped;
218 System.arraycopy(escaped, 0, dest, destIndex, escaped.length);
219 destIndex += escaped.length;
231 int endIndex = destIndex + charsSkipped;
233 dest = growBuffer(dest, destIndex, endIndex);
235 s.getChars(unescapedChunkStart, end, dest, destIndex);
    [all...]
  /external/icu/icu4c/source/common/
usprep.cpp 518 int32_t destIndex=0;
569 if(destIndex < destCapacity ){
570 dest[destIndex] = profile->mappingData[index+i];
572 destIndex++; /* for pre-flighting */
586 if(destIndex < destCapacity ){
587 dest[destIndex] = (UChar)ch;
589 destIndex++;
591 if(destIndex+1 < destCapacity ){
592 dest[destIndex] = U16_LEAD(ch);
593 dest[destIndex+1] = U16_TRAIL(ch)
    [all...]
ustrcase.cpp 43 int32_t checkOverflowAndEditsError(int32_t destIndex, int32_t destCapacity,
46 if (destIndex > destCapacity) {
52 return destIndex;
65 appendResult(UChar *dest, int32_t destIndex, int32_t destCapacity,
78 return destIndex;
81 if(destIndex<destCapacity && c<=0xffff) { // BMP slightly-fastpath
82 dest[destIndex++]=(UChar)c;
83 return destIndex;
90 } else if(destIndex<destCapacity && result<=0xffff) { // BMP slightly-fastpath
91 dest[destIndex++]=(UChar)result
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Edits.java 239 private int srcIndex, replIndex, destIndex;
272 destIndex += newLength_;
280 destIndex -= newLength_;
550 spanStart = destIndex;
559 spanStart = findSource ? srcIndex : destIndex;
577 destIndex -= n * newLength_;
584 destIndex -= num * newLength_;
591 index = remaining = oldLength_ = newLength_ = srcIndex = replIndex = destIndex = 0;
601 spanStart = destIndex;
616 destIndex += n * newLength_
    [all...]
  /frameworks/base/core/java/android/os/
WorkSource.java 155 int destIndex = 1;
161 mUids[destIndex] = mUids[sourceIndex];
162 destIndex++;
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java 672 int destIndex = XMPNodeUtils.lookupLanguageItem(destNode,
678 if (destIndex != -1)
680 destNode.removeChild(destIndex);
687 else if (destIndex == -1)
    [all...]
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
StringUtils.java 281 int destIndex = 0;
287 destination[destIndex] = downCase ? Character.toLowerCase(codePoint) : codePoint;
288 destIndex++;
290 return destIndex;
  /external/icu/icu4c/source/i18n/
collationdatabuilder.cpp     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationDataBuilder.java 757 int destIndex = dest.addConditionalCE32(
759 ce32 = CollationDataBuilder.makeBuilderContextCE32(destIndex);
762 ConditionalCE32 prevDestCond = dest.getConditionalCE32(destIndex);
763 destIndex = dest.addConditionalCE32(
767 prevDestCond.next = destIndex;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterCaseTest.java     [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationDataBuilder.java 756 int destIndex = dest.addConditionalCE32(
758 ce32 = CollationDataBuilder.makeBuilderContextCE32(destIndex);
761 ConditionalCE32 prevDestCond = dest.getConditionalCE32(destIndex);
762 destIndex = dest.addConditionalCE32(
766 prevDestCond.next = destIndex;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterCaseTest.java     [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/propertysheet/1.0/
propertysheet-1.0.jar 

Completed in 1008 milliseconds

1 2 3 4 5 6 7 8