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

  /frameworks/base/core/jni/android/graphics/
TextLayout.cpp 156 const jchar *workText = text;
171 workText = buffer; // use the shaped text
184 const jchar* workLimit = workText + len;
187 while (workText < workLimit && *workText == ' ') {
188 ++workText;
192 while (workLimit > workText && *(workLimit - 1) == ' ') {
197 *outBytes = (workLimit - workText) << 1;
198 *outText = workText;
209 const jchar *workText;
    [all...]
  /external/icu4c/i18n/
nfsubs.cpp     [all...]
nfrule.cpp 765 UnicodeString workText(text);
769 // parsed. If it does, strip that off the front of workText;
787 stripPrefix(workText, prefix, pp);
788 int32_t prefixLength = text.length() - workText.length();
845 double partialResult = matchToDelimiter(workText, start, tempBaseValue
    [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 494 const jchar *workText;
497 if (TextLayout::prepareText(paint, text, count, flags, &workText, &workBytes, &buffer)) {
498 renderer->drawText((const char*) workText, workBytes, count, x, y, paint);
    [all...]

Completed in 119 milliseconds