/external/icu/icu4c/source/common/ |
D | ucasemap.cpp | 124 appendResult(uint8_t *dest, int32_t destIndex, int32_t destCapacity, in appendResult() argument 142 if(length>(INT32_MAX-destIndex)) { in appendResult() 146 if(destIndex<destCapacity) { in appendResult() 151 U8_APPEND(dest, destIndex, destCapacity, c, isError); in appendResult() 154 destIndex+=length; in appendResult() 161 (char *)(dest+destIndex), destCapacity-destIndex, &destLength, in appendResult() 167 if(destLength>(INT32_MAX-destIndex)) { in appendResult() 170 destIndex+=destLength; in appendResult() 176 destIndex+=length; in appendResult() 187 if(destLength>(INT32_MAX-destIndex)) { in appendResult() [all …]
|
D | ustrcase.cpp | 41 appendResult(UChar *dest, int32_t destIndex, int32_t destCapacity, in appendResult() argument 58 if(length>(INT32_MAX-destIndex)) { in appendResult() 62 if(destIndex<destCapacity) { in appendResult() 67 U16_APPEND(dest, destIndex, destCapacity, c, isError); in appendResult() 70 destIndex+=length; in appendResult() 74 if((destIndex+length)<=destCapacity) { in appendResult() 76 dest[destIndex++]=*s++; in appendResult() 81 destIndex+=length; in appendResult() 86 destIndex+=length; in appendResult() 88 return destIndex; in appendResult() [all …]
|
D | usprep.cpp | 518 int32_t destIndex=0; in usprep_map() local 569 if(destIndex < destCapacity ){ in usprep_map() 570 dest[destIndex] = profile->mappingData[index+i]; in usprep_map() 572 destIndex++; /* for pre-flighting */ in usprep_map() 586 if(destIndex < destCapacity ){ in usprep_map() 587 dest[destIndex] = (UChar)ch; in usprep_map() 589 destIndex++; in usprep_map() 591 if(destIndex+1 < destCapacity ){ in usprep_map() 592 dest[destIndex] = U16_LEAD(ch); in usprep_map() 593 dest[destIndex+1] = U16_TRAIL(ch); in usprep_map() [all …]
|
D | utext.cpp | 503 int64_t destIndex, in utext_copy() argument 514 ut->pFuncs->copy(ut, nativeStart, nativeLimit, destIndex, move, status); in utext_copy() 1945 int64_t destIndex, in repTextCopy() argument 1955 if (start>limit || (start<destIndex && destIndex<limit)) in repTextCopy() 1963 int32_t destIndex32 = pinIndex(destIndex, length); in repTextCopy() 2209 int64_t destIndex, in unistrTextCopy() argument 2220 int32_t destIndex32 = pinIndex(destIndex, length); in unistrTextCopy()
|
/external/guava/guava/src/com/google/common/escape/ |
D | CharEscaper.java | 87 int destIndex = 0; in escapeSlow() local 106 int sizeNeeded = destIndex + charsSkipped + rlen; in escapeSlow() 109 dest = growBuffer(dest, destIndex, destSize); in escapeSlow() 114 s.getChars(lastEscape, index, dest, destIndex); in escapeSlow() 115 destIndex += charsSkipped; in escapeSlow() 120 System.arraycopy(r, 0, dest, destIndex, rlen); in escapeSlow() 121 destIndex += rlen; in escapeSlow() 129 int sizeNeeded = destIndex + charsLeft; in escapeSlow() 133 dest = growBuffer(dest, destIndex, sizeNeeded); in escapeSlow() 135 s.getChars(lastEscape, slen, dest, destIndex); in escapeSlow() [all …]
|
D | UnicodeEscaper.java | 181 int destIndex = 0; in escapeSlow() local 200 int sizeNeeded = destIndex + charsSkipped + escaped.length; in escapeSlow() 203 dest = growBuffer(dest, destIndex, destLength); in escapeSlow() 207 s.getChars(unescapedChunkStart, index, dest, destIndex); in escapeSlow() 208 destIndex += charsSkipped; in escapeSlow() 211 System.arraycopy(escaped, 0, dest, destIndex, escaped.length); in escapeSlow() 212 destIndex += escaped.length; in escapeSlow() 224 int endIndex = destIndex + charsSkipped; in escapeSlow() 226 dest = growBuffer(dest, destIndex, endIndex); in escapeSlow() 228 s.getChars(unescapedChunkStart, end, dest, destIndex); in escapeSlow() [all …]
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/ |
D | UnicodeEscaper.java | 192 int destIndex = 0; in escapeSlow() local 207 int sizeNeeded = destIndex + charsSkipped + escaped.length; in escapeSlow() 210 dest = growBuffer(dest, destIndex, destLength); in escapeSlow() 214 s.getChars(unescapedChunkStart, index, dest, destIndex); in escapeSlow() 215 destIndex += charsSkipped; in escapeSlow() 218 System.arraycopy(escaped, 0, dest, destIndex, escaped.length); in escapeSlow() 219 destIndex += escaped.length; in escapeSlow() 231 int endIndex = destIndex + charsSkipped; in escapeSlow() 233 dest = growBuffer(dest, destIndex, endIndex); in escapeSlow() 235 s.getChars(unescapedChunkStart, end, dest, destIndex); in escapeSlow() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | Edits.java | 227 private int srcIndex, replIndex, destIndex; field in Edits.Iterator 260 destIndex += newLength_; in updateIndexes() 372 index = remaining = oldLength_ = newLength_ = srcIndex = replIndex = destIndex = 0; in findSourceIndex() 391 destIndex += len; in findSourceIndex() 436 public int destinationIndex() { return destIndex; } in destinationIndex()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | Edits.java | 233 private int srcIndex, replIndex, destIndex; field in Edits.Iterator 266 destIndex += newLength_; in updateIndexes() 380 index = remaining = oldLength_ = newLength_ = srcIndex = replIndex = destIndex = 0; in findSourceIndex() 399 destIndex += len; in findSourceIndex() 450 public int destinationIndex() { return destIndex; } in destinationIndex()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | XMLStringDefault.java | 146 int destIndex = dstBegin; in getChars() local 149 dst[destIndex++] = m_str.charAt(i); in getChars()
|
/external/icu/icu4c/source/test/intltest/ |
D | utxttest.cpp | 315 int destIndex = 0; // Code point index of the destination for a copy/move test. in TestCMR() local 354 case 1: destIndex = 0; break; in TestCMR() 355 case 2: destIndex = 1; break; in TestCMR() 356 case 3: destIndex = srcIndex - 1; break; in TestCMR() 357 case 4: destIndex = srcIndex + srcLength + 1; break; in TestCMR() 358 case 5: destIndex = cpCount-1; break; in TestCMR() 359 case 6: destIndex = cpCount; break; in TestCMR() 361 if (destIndex<0 || destIndex>cpCount) { in TestCMR() 368 nativeDest = nativeMap[destIndex].nativeIdx; in TestCMR() 372 u16Dest = u16Map[destIndex].nativeIdx; in TestCMR()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/ |
D | TestStringPrep.java | 111 int destIndex = destString.indexOf('@'); in TestNFS4MixedPrep() local 112 if(destIndex < 0){ in TestNFS4MixedPrep()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
D | TestStringPrep.java | 110 int destIndex = destString.indexOf('@'); in TestNFS4MixedPrep() local 111 if(destIndex < 0){ in TestNFS4MixedPrep()
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | XMPUtilsImpl.java | 672 int destIndex = XMPNodeUtils.lookupLanguageItem(destNode, in appendSubtree() local 678 if (destIndex != -1) in appendSubtree() 680 destNode.removeChild(destIndex); in appendSubtree() 687 else if (destIndex == -1) in appendSubtree()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationDataBuilder.java | 756 int destIndex = dest.addConditionalCE32( in copyCE32() local 758 ce32 = CollationDataBuilder.makeBuilderContextCE32(destIndex); in copyCE32() 761 ConditionalCE32 prevDestCond = dest.getConditionalCE32(destIndex); in copyCE32() 762 destIndex = dest.addConditionalCE32( in copyCE32() 766 prevDestCond.next = destIndex; in copyCE32()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationDataBuilder.java | 757 int destIndex = dest.addConditionalCE32( in copyCE32() local 759 ce32 = CollationDataBuilder.makeBuilderContextCE32(destIndex); in copyCE32() 762 ConditionalCE32 prevDestCond = dest.getConditionalCE32(destIndex); in copyCE32() 763 destIndex = dest.addConditionalCE32( in copyCE32() 767 prevDestCond.next = destIndex; in copyCE32()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
D | DrawUtils.java | 317 int destIndex = destY * destBytesPerLine + destX * bytesPerPixel; in rotateOptimized() local 319 System.arraycopy(srcData.data, srcIndex, newData, destIndex, bytesPerPixel); in rotateOptimized()
|
/external/lzma/CPP/Common/ |
D | MyVector.h | 13 void MoveItems(unsigned destIndex, unsigned srcIndex) in MoveItems() argument 15 memmove(_items + destIndex, _items + srcIndex, (size_t)(_size - srcIndex) * (size_t)sizeof(T)); in MoveItems()
|
/external/swiftshader/src/D3D9/ |
D | Direct3DDevice9Ex.cpp | 614 …long Direct3DDevice9Ex::ProcessVertices(unsigned int srcStartIndex, unsigned int destIndex, unsign… in ProcessVertices() argument 616 …*vertexDeclaration = 0x%0.8p, unsigned long flags = %d", srcStartIndex, destIndex, vertexCount, de… in ProcessVertices() 618 …return Direct3DDevice9::ProcessVertices(srcStartIndex, destIndex, vertexCount, destBuffer, vertexD… in ProcessVertices()
|
D | Direct3DDevice9Ex.hpp | 142 …long __stdcall ProcessVertices(unsigned int srcStartIndex, unsigned int destIndex, unsigned int ve…
|
D | Direct3DDevice9.hpp | 139 …long __stdcall ProcessVertices(unsigned int srcStartIndex, unsigned int destIndex, unsigned int ve…
|
/external/icu/icu4c/source/i18n/ |
D | collationdatabuilder.cpp | 986 int32_t destIndex = dest.addConditionalCE32( in copyCE32() local 988 ce32 = CollationDataBuilder::makeBuilderContextCE32(destIndex); in copyCE32() 991 ConditionalCE32 *prevDestCond = dest.getConditionalCE32(destIndex); in copyCE32() 992 destIndex = dest.addConditionalCE32( in copyCE32() 996 prevDestCond->next = destIndex; in copyCE32()
|
D | uregex.cpp | 1772 int32_t *destIndex, // Index into dest buffer. Updated on return. 1778 int32_t di = *destIndex; 1795 *destIndex = di;
|
/external/icu/icu4c/source/common/unicode/ |
D | utext.h | 891 int64_t destIndex,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |