/external/webkit/JavaScriptCore/wtf/ |
H A D | Vector.h | 127 static void move(const T* src, const T* srcEnd, T* dst) argument 129 while (src != srcEnd) { 136 static void moveOverlapping(const T* src, const T* srcEnd, T* dst) argument 139 move(src, srcEnd, dst); 141 T* dstEnd = dst + (srcEnd - src); 142 while (src != srcEnd) { 143 --srcEnd; 145 new (dstEnd) T(*srcEnd); 146 srcEnd->~T(); 155 static void move(const T* src, const T* srcEnd, argument 159 moveOverlapping(const T* src, const T* srcEnd, T* dst) argument 171 uninitializedCopy(const T* src, const T* srcEnd, T* dst) argument 184 uninitializedCopy(const T* src, const T* srcEnd, T* dst) argument 252 move(const T* src, const T* srcEnd, T* dst) argument 257 moveOverlapping(const T* src, const T* srcEnd, T* dst) argument 262 uninitializedCopy(const T* src, const T* srcEnd, T* dst) argument [all...] |
/external/icu4c/test/cintltst/ |
H A D | ncnvtst.c | 746 const char* srcEnd; local 753 srcEnd = src8 + 3; 754 ucnv_toUnicode(conv8, &pivBeg, pivEnd, &srcBeg, srcEnd, 0, FALSE, &err); 755 if (srcBeg != srcEnd) { 759 srcEnd = src8 + 4; 760 ucnv_toUnicode(conv8, &pivBeg, pivEnd, &srcBeg, srcEnd, 0, TRUE, &err); 761 if (srcBeg != srcEnd) { 850 const char* srcEnd; local 857 srcEnd = srcBE + 5; 858 ucnv_toUnicode(convBE, &pivBeg, pivEnd, &srcBeg, srcEnd, 882 const char* srcEnd; local [all...] |
/external/chromium/third_party/icu/source/test/cintltst/ |
H A D | ncnvtst.c | 729 const char* srcEnd; local 736 srcEnd = src8 + 3; 737 ucnv_toUnicode(conv8, &pivBeg, pivEnd, &srcBeg, srcEnd, 0, FALSE, &err); 738 if (srcBeg != srcEnd) { 742 srcEnd = src8 + 4; 743 ucnv_toUnicode(conv8, &pivBeg, pivEnd, &srcBeg, srcEnd, 0, TRUE, &err); 744 if (srcBeg != srcEnd) { 833 const char* srcEnd; local 840 srcEnd = srcBE + 5; 841 ucnv_toUnicode(convBE, &pivBeg, pivEnd, &srcBeg, srcEnd, 865 const char* srcEnd; local [all...] |
/external/webkit/WebCore/platform/win/ |
H A D | ClipboardUtilitiesWin.cpp | 403 unsigned srcEnd = cf_html.find("\n", lineStart, false); local 405 String rawSrcURL = cf_html.substring(srcStart, srcEnd-srcStart);
|
/external/webkit/WebCore/platform/ |
H A D | KURL.cpp | 218 static int copyPathRemovingDots(char* dst, const char* src, int srcStart, int srcEnd); 955 static int copyPathRemovingDots(char* dst, const char* src, int srcStart, int srcEnd) argument 960 if (srcStart != srcEnd) { 962 const char* baseStringEnd = src + srcEnd;
|