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

  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.cpp 110 unsigned char* dstBegin = reinterpret_cast<unsigned char*>(dstBuffer.data());
111 unsigned char* dst = dstBegin;
145 int numChars = (dst - dstBegin) / sizeof(UChar);
175 unsigned char* dstBegin = dstBuffer.data();
176 unsigned char* dst = dstBegin;
196 int numBytes = dst - dstBegin;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java 199 * @param dstBegin the start offset in the destination array.
206 * <li><code>dstBegin</code> is negative
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);
XStringForFSB.java 240 * @param dstBegin the start offset in the destination array.
247 * <li><code>dstBegin</code> is negative
248 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
252 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
262 if (n > (dst.length - dstBegin))
263 n = (dst.length - dstBegin);
266 int d = dstBegin;
XString.java 265 * @param dstBegin the start offset in the destination array.
272 * <li><code>dstBegin</code> is negative
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...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLStringDefault.java 131 * @param dstBegin the start offset in the destination array.
138 * <li><code>dstBegin</code> is negative
139 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
144 int dstBegin)
146 int destIndex = dstBegin;
XMLString.java 110 * @param dstBegin the start offset in the destination array.
117 * <li><code>dstBegin</code> is negative
118 * <li><code>dstBegin+(srcEnd-srcBegin)</code> is larger than
123 int dstBegin);
FastStringBuffer.java     [all...]

Completed in 418 milliseconds