HomeSort by relevance Sort by last modified time
    Searched refs:srcEnd (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.cpp 104 unsigned char* srcEnd = srcBegin + srcSize;
108 while (src < srcEnd) {
140 m_numBufferedBytes = srcEnd - src;
169 unsigned char* srcEnd = srcBegin + srcSize;
173 while (src < srcEnd) {
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java 196 * @param srcEnd index after the last character in the string
203 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
204 * <li><code>srcEnd</code> is greater than the length of this
207 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
211 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
213 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd);
XString.java 262 * @param srcEnd index after the last character in the string
269 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
270 * <li><code>srcEnd</code> is greater than the length of this
273 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
277 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
279 str().getChars(srcBegin, srcEnd, dst, dstBegin);
    [all...]
XStringForFSB.java 237 * @param srcEnd index after the last character in the string
244 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
245 * <li><code>srcEnd</code> is greater than the length of this
248 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
252 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
257 int n = srcEnd - srcBegin;
  /external/skia/src/core/
SkBlitRow_D32.cpp 29 const SkPMColor* SK_RESTRICT srcEnd = src + count;
30 while (src != srcEnd) {
60 const SkPMColor* SK_RESTRICT srcEnd = src + count;
61 while (src != srcEnd) {
101 const SkPMColor* SK_RESTRICT srcEnd = src + count;
102 while (src != srcEnd) {
  /external/webkit/Source/JavaScriptCore/wtf/
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/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 128 * @param srcEnd index after the last character in the string
135 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
136 * <li><code>srcEnd</code> is greater than the length of this
139 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
143 public void getChars(int srcBegin, int srcEnd, char dst[],
147 for (int i = srcBegin; i < srcEnd; i++)
XMLString.java 107 * @param srcEnd index after the last character in the string
114 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
115 * <li><code>srcEnd</code> is greater than the length of this
118 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
122 public abstract void getChars(int srcBegin, int srcEnd, char dst[],
FastStringBuffer.java     [all...]
  /external/icu4c/test/cintltst/
ncnvtst.c     [all...]
  /external/webkit/Source/WebCore/platform/
KURL.cpp 220 static int copyPathRemovingDots(char* dst, const char* src, int srcStart, int srcEnd);
    [all...]
  /external/webkit/Source/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 563 unsigned srcEnd = cfhtml.find("\n", lineStart, false);
565 String rawSrcURL = cfhtml.substring(srcStart, srcEnd-srcStart);

Completed in 731 milliseconds