/external/skia/src/core/ |
D | SkBlitRow_D32.cpp | 37 const SkPMColor* SK_RESTRICT srcEnd = src + count; in S32_Blend_BlitRow32() local 38 while (src != srcEnd) { in S32_Blend_BlitRow32() 68 const SkPMColor* SK_RESTRICT srcEnd = src + count; in S32A_Opaque_BlitRow32() local 69 while (src != srcEnd) { in S32A_Opaque_BlitRow32() 109 const SkPMColor* SK_RESTRICT srcEnd = src + count; in S32A_Blend_BlitRow32() local 110 while (src != srcEnd) { in S32A_Blend_BlitRow32()
|
/external/webkit/Source/WebCore/platform/text/brew/ |
D | TextCodecBrew.cpp | 104 unsigned char* srcEnd = srcBegin + srcSize; in decode() local 108 while (src < srcEnd) { in decode() 140 m_numBufferedBytes = srcEnd - src; in decode() 169 unsigned char* srcEnd = srcBegin + srcSize; in encode() local 173 while (src < srcEnd) { in encode()
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | Vector.h | 118 static void move(const T* src, const T* srcEnd, T* dst) 120 while (src != srcEnd) { 131 static void moveOverlapping(const T* src, const T* srcEnd, T* dst) 134 move(src, srcEnd, dst); 136 T* dstEnd = dst + (srcEnd - src); 137 while (src != srcEnd) { 138 --srcEnd; 140 new (dstEnd) T(*srcEnd); 141 srcEnd->~T(); 150 static void move(const T* src, const T* srcEnd, T* dst) [all …]
|
/external/icu4c/test/cintltst/ |
D | ncnvtst.c | 748 const char* srcEnd; in TestRegressionUTF8() local 755 srcEnd = src8 + 3; in TestRegressionUTF8() 756 ucnv_toUnicode(conv8, &pivBeg, pivEnd, &srcBeg, srcEnd, 0, FALSE, &err); in TestRegressionUTF8() 757 if (srcBeg != srcEnd) { in TestRegressionUTF8() 761 srcEnd = src8 + 4; in TestRegressionUTF8() 762 ucnv_toUnicode(conv8, &pivBeg, pivEnd, &srcBeg, srcEnd, 0, TRUE, &err); in TestRegressionUTF8() 763 if (srcBeg != srcEnd) { in TestRegressionUTF8() 852 const char* srcEnd; in TestRegressionUTF32() local 859 srcEnd = srcBE + 5; in TestRegressionUTF32() 860 ucnv_toUnicode(convBE, &pivBeg, pivEnd, &srcBeg, srcEnd, 0, FALSE, &err); in TestRegressionUTF32() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XStringForChars.java | 211 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) in getChars() argument 213 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd); in getChars() local
|
D | XString.java | 277 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) in getChars() argument 279 str().getChars(srcBegin, srcEnd, dst, dstBegin); in getChars()
|
D | XStringForFSB.java | 252 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) in getChars() argument 257 int n = srcEnd - srcBegin; in getChars()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | XMLStringDefault.java | 143 public void getChars(int srcBegin, int srcEnd, char dst[], in getChars() argument 147 for (int i = srcBegin; i < srcEnd; i++) in getChars()
|
D | XMLString.java | 122 public abstract void getChars(int srcBegin, int srcEnd, char dst[], in getChars() argument
|
D | FastStringBuffer.java | 1250 private void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) in getChars() argument
|
/external/webkit/Source/WebCore/platform/win/ |
D | ClipboardUtilitiesWin.cpp | 563 unsigned srcEnd = cfhtml.find("\n", lineStart, false); in fragmentFromCFHTML() local 565 String rawSrcURL = cfhtml.substring(srcStart, srcEnd-srcStart); in fragmentFromCFHTML()
|
/external/webkit/Source/WebCore/platform/ |
D | KURL.cpp | 220 static int copyPathRemovingDots(char* dst, const char* src, int srcStart, int srcEnd); 1025 static int copyPathRemovingDots(char* dst, const char* src, int srcStart, int srcEnd) in copyPathRemovingDots() argument 1030 if (srcStart != srcEnd) { in copyPathRemovingDots() 1032 const char* baseStringEnd = src + srcEnd; in copyPathRemovingDots()
|