Home
last modified time | relevance | path

Searched refs:destIndex (Results 1 – 18 of 18) sorted by relevance

/external/icu4c/common/
Ducasemap.cpp122 appendResult(uint8_t *dest, int32_t destIndex, int32_t destCapacity, in appendResult() argument
141 if(destIndex<destCapacity) { in appendResult()
146 U8_APPEND(dest, destIndex, destCapacity, c, isError); in appendResult()
149 destIndex+=U8_LENGTH(c); in appendResult()
155 (char *)(dest+destIndex), destCapacity-destIndex, &destLength, in appendResult()
158 destIndex+=destLength; in appendResult()
164 destIndex+=U8_LENGTH(c); in appendResult()
171 destIndex+=destLength; in appendResult()
174 return destIndex; in appendResult()
221 int32_t srcIndex, destIndex; in _caseMap() local
[all …]
Dustrcase.cpp40 appendResult(UChar *dest, int32_t destIndex, int32_t destCapacity, in appendResult() argument
58 if(destIndex<destCapacity) { in appendResult()
63 U16_APPEND(dest, destIndex, destCapacity, c, isError); in appendResult()
66 destIndex+=U16_LENGTH(c); in appendResult()
70 if((destIndex+length)<=destCapacity) { in appendResult()
72 dest[destIndex++]=*s++; in appendResult()
77 destIndex+=length; in appendResult()
83 destIndex+=U16_LENGTH(c); in appendResult()
85 destIndex+=length; in appendResult()
88 return destIndex; in appendResult()
[all …]
Dunorm_it.c135 int32_t srcIndex, destIndex, limit; in moveContentsTowardStart() local
147 api->start=destIndex=0; in moveContentsTowardStart()
149 chars[destIndex]=chars[srcIndex]; in moveContentsTowardStart()
150 states[destIndex++]=states[srcIndex++]; in moveContentsTowardStart()
154 states[destIndex]=states[srcIndex]; in moveContentsTowardStart()
156 api->limit=destIndex; in moveContentsTowardStart()
162 int32_t srcIndex, destIndex, start; in moveContentsTowardEnd() local
165 destIndex=((UNormIterator *)api)->capacity; in moveContentsTowardEnd()
166 srcIndex=destIndex-delta; in moveContentsTowardEnd()
175 api->limit=destIndex; in moveContentsTowardEnd()
[all …]
Dusprep.cpp522 int32_t destIndex=0; in usprep_map() local
573 if(destIndex < destCapacity ){ in usprep_map()
574 dest[destIndex] = profile->mappingData[index+i]; in usprep_map()
576 destIndex++; /* for pre-flighting */ in usprep_map()
590 if(destIndex < destCapacity ){ in usprep_map()
591 dest[destIndex] = (UChar)ch; in usprep_map()
593 destIndex++; in usprep_map()
595 if(destIndex+1 < destCapacity ){ in usprep_map()
596 dest[destIndex] = U16_LEAD(ch); in usprep_map()
597 dest[destIndex+1] = U16_TRAIL(ch); in usprep_map()
[all …]
Dutext.cpp501 int64_t destIndex, in utext_copy() argument
512 ut->pFuncs->copy(ut, nativeStart, nativeLimit, destIndex, move, status); in utext_copy()
1943 int64_t destIndex, in repTextCopy() argument
1953 if (start>limit || (start<destIndex && destIndex<limit)) in repTextCopy()
1961 int32_t destIndex32 = pinIndex(destIndex, length); in repTextCopy()
2204 int64_t destIndex, in unistrTextCopy() argument
2215 int32_t destIndex32 = pinIndex(destIndex, length); in unistrTextCopy()
/external/icu4c/layout/
DGlyphIterator.cpp22 …srcIndex(-1), destIndex(-1), lookupFlags(theLookupFlags), featureMask(theFeatureMask), glyphGroup(… in GlyphIterator()
53 destIndex = that.destIndex; in GlyphIterator()
71 destIndex = that.destIndex; in GlyphIterator()
89 destIndex = that.destIndex; in GlyphIterator()
DGlyphIterator.h90 le_int32 destIndex; variable
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DHighRegisterPrefix.java142 private static SimpleInsn moveInsnFor(RegisterSpec src, int destIndex) { in moveInsnFor() argument
144 RegisterSpec.make(destIndex, src.getType()), in moveInsnFor()
/external/icu4c/test/intltest/
Dutxttest.cpp305 int destIndex = 0; // Code point index of the destination for a copy/move test. in TestCMR() local
344 case 1: destIndex = 0; break; in TestCMR()
345 case 2: destIndex = 1; break; in TestCMR()
346 case 3: destIndex = srcIndex - 1; break; in TestCMR()
347 case 4: destIndex = srcIndex + srcLength + 1; break; in TestCMR()
348 case 5: destIndex = cpCount-1; break; in TestCMR()
349 case 6: destIndex = cpCount; break; in TestCMR()
351 if (destIndex<0 || destIndex>cpCount) { in TestCMR()
358 nativeDest = nativeMap[destIndex].nativeIdx; in TestCMR()
362 u16Dest = u16Map[destIndex].nativeIdx; in TestCMR()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DXMLStringDefault.java146 int destIndex = dstBegin; in getChars() local
149 dst[destIndex++] = m_str.charAt(i); in getChars()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPUtilsImpl.java672 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/webkit/Source/WebCore/platform/graphics/chromium/
DUniscribeHelper.cpp152 int destIndex = 0; in justify() local
157 for (int i = 0; i < shaping.glyphLength(); i++, destIndex++) { in justify()
158 memcpy(&visualAttributes[destIndex], &shaping.m_visualAttributes[i], in justify()
160 advances[destIndex] = shaping.m_advance[i]; in justify()
/external/icu4c/i18n/
Duspoof_conf.cpp475 int32_t destIndex = 0; in outputData() local
483 stringLengths[destIndex++] = static_cast<uint16_t>(offset); in outputData()
484 stringLengths[destIndex++] = static_cast<uint16_t>(length); in outputData()
Duregex.cpp1743 int32_t *destIndex, // Index into dest buffer. Updated on return.
1749 int32_t di = *destIndex;
1766 *destIndex = di;
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_bar_folder_controller.mm1257 int destIndex = 0;
1265 destIndex = [button bookmarkNode]->child_count();
1269 destIndex = [self indexForDragToPoint:point];
1271 destIndex += [[parentButton_ cell] startingChildIndex];
1278 [self bookmarkModel]->Copy(sourceNode, destParent, destIndex);
1280 [self bookmarkModel]->Move(sourceNode, destParent, destIndex);
1685 int destIndex = [self indexForDragToPoint:point];
1689 if (destIndex >= 0 && destIndex < numButtons) {
1692 [buttons_ objectAtIndex:static_cast<NSUInteger>(destIndex)];
1698 } else if (destIndex == numButtons) {
[all …]
Dbookmark_bar_controller.mm1919 int destIndex = 0;
1927 destIndex = [button bookmarkNode]->child_count();
1931 destIndex = [self indexForDragToPoint:point];
1937 bookmarkModel_->Copy(sourceNode, destParent, destIndex);
1939 bookmarkModel_->Move(sourceNode, destParent, destIndex);
2434 int destIndex = [self indexForDragToPoint:point];
2439 if (destIndex == 0) {
2441 } else if (destIndex > 0 && destIndex < numButtons) {
2444 [buttons_ objectAtIndex:static_cast<NSUInteger>(destIndex-1)];
2450 } else if (destIndex == numButtons) {
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DDrawUtils.java317 int destIndex = destY * destBytesPerLine + destX * bytesPerPixel; in rotateOptimized() local
319 System.arraycopy(srcData.data, srcIndex, newData, destIndex, bytesPerPixel); in rotateOptimized()
/external/icu4c/common/unicode/
Dutext.h889 int64_t destIndex,