HomeSort by relevance Sort by last modified time
    Searched full:combinedtext (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
TextPainter.h 35 void setCombinedText(RenderCombineText* combinedText) { m_combinedText = combinedText; }
InlineTextBox.cpp 440 RenderCombineText* combinedText = styleToUse->hasTextCombine() && renderer().isCombineText() && toRenderCombineText(renderer()).isCombined() ? &toRenderCombineText(renderer()) : 0;
442 bool shouldRotate = !isHorizontal() && !combinedText;
460 if (combinedText)
461 combinedText->adjustTextOrigin(textOrigin, boxRect);
480 if (!combinedText) {
486 combinedText->getStringToRender(m_start, string, length);
515 if (combinedText)
516 textPainter.setCombinedText(combinedText);
550 if (combinedText)
553 if (combinedText)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
MyanmarReordering.java 119 final CharSequence combinedText;
121 combinedText = getCharSequence();
124 combinedText = null;
129 return null == combinedText ? Event.createConsumedEvent(newEvent)
130 : Event.createSoftwareTextEvent(combinedText, Event.NOT_A_KEY_CODE);
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field.mm 465 base::scoped_nsobject<NSMutableAttributedString> combinedText(
467 NSRange range = NSMakeRange([combinedText length], 0);
468 [combinedText replaceCharactersInRange:range withString:suggestText];
469 [combinedText addAttribute:NSForegroundColorAttributeName
472 [cell setAttributedStringValue:combinedText];
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlParser.java 290 StringBuilder combinedText = new StringBuilder(combinedTextLen);
294 combinedText.append(text.getText());
300 output.add(HtmlDocument.createText(combinedText.toString(), originalInput));
    [all...]

Completed in 297 milliseconds