HomeSort by relevance Sort by last modified time
    Searched refs:newText (Results 1 - 25 of 59) sorted by null

1 2 3

  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 43 CharSequence newText = tv.getText();
45 assertTrue(newText == oldText);
47 assertEquals(5, newText.length());
48 assertEquals('o', newText.charAt(0));
49 assertEquals("o Wor", newText.toString());
51 assertEquals(" Wo", newText.subSequence(1, 4));
54 ((GetChars) newText).getChars(1, 4, c2, 2);
  /external/chromium/third_party/icu/public/common/unicode/
schriter.h 135 * @param newText The string to be iterated over
138 void setText(const UnicodeString& newText);
172 * @param newText The string to be iterated over
176 void setText(const UChar* newText, int32_t newTextLength);
rbbi.h 368 * @param newText An iterator over the text to analyze. The BreakIterator
372 virtual void adoptText(CharacterIterator* newText);
377 * @param newText The text to analyze.
380 virtual void setText(const UnicodeString& newText);
uchriter.h 341 void setText(const UChar* newText, int32_t newTextLength);
  /external/icu4c/common/unicode/
schriter.h 135 * @param newText The string to be iterated over
138 void setText(const UnicodeString& newText);
172 * @param newText The string to be iterated over
176 void setText(const UChar* newText, int32_t newTextLength);
normlzr.h 671 * @param newText a string that replaces the current input text
675 void setText(const UnicodeString& newText,
682 * @param newText a CharacterIterator object that replaces the current input text
686 void setText(const CharacterIterator& newText,
693 * @param newText a string that replaces the current input text
698 void setText(const UChar* newText,
rbbi.h 368 * @param newText An iterator over the text to analyze. The BreakIterator
372 virtual void adoptText(CharacterIterator* newText);
377 * @param newText The text to analyze.
380 virtual void setText(const UnicodeString& newText);
uchriter.h 341 void setText(const UChar* newText, int32_t newTextLength);
  /libcore/luni/src/main/java/com/ibm/icu4jni/text/
NativeBreakIterator.java 109 public void setText(CharacterIterator newText) {
110 this.charIter = newText;
112 for (char c = newText.first(); c != CharacterIterator.DONE; c = newText.next()) {
118 public void setText(String newText) {
119 setText(new StringCharacterIterator(newText));
  /libcore/luni/src/main/java/java/text/
RuleBasedBreakIterator.java 134 public void setText(CharacterIterator newText) {
136 newText.current();
137 wrapped.setText(newText);
BreakIterator.java 385 * @param newText
388 public void setText(String newText) {
389 wrapped.setText(newText);
474 * @param newText
478 public abstract void setText(CharacterIterator newText);
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowEditor.java 125 public void changeText(int position, String newText) {
126 if (newText != null) {
133 text.setText(newText);
135 } else if (!newText.equals(text.getText())) {
136 text.setText(newText);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
TextImpl.java 50 Text newText = document.createTextNode(
56 getParentNode().appendChild(newText);
58 getParentNode().insertBefore(newText, refNode);
  /external/chromium/third_party/icu/source/common/
schriter.cpp 106 StringCharacterIterator::setText(const UnicodeString& newText) {
107 text = newText;
  /external/icu4c/common/
schriter.cpp 106 StringCharacterIterator::setText(const UnicodeString& newText) {
107 text = newText;
normlzr.cpp 399 Normalizer::setText(const UnicodeString& newText,
405 CharacterIterator *newIter = new StringCharacterIterator(newText);
420 Normalizer::setText(const CharacterIterator& newText,
426 CharacterIterator *newIter = newText.clone();
437 Normalizer::setText(const UChar* newText,
444 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
  /external/webkit/WebCore/platform/gtk/
DataObjectGtk.cpp 41 void DataObjectGtk::setText(const String& newText)
44 m_text = newText;
DataObjectGtk.h 58 void setText(const String& newText);
  /external/webkit/WebCore/inspector/front-end/
DOMStorageItemsView.js 130 _editingCallback: function(editingNode, columnIdentifier, oldText, newText)
137 domStorage.setItem(newText, editingNode.data[1]);
139 domStorage.setItem(editingNode.data[0], newText);
  /external/webkit/WebCore/dom/
Text.cpp 66 RefPtr<Text> newText = virtualCreate(oldStr->substring(offset));
72 parentNode()->insertBefore(newText.get(), nextSibling(), ec);
82 return newText.release();
152 PassRefPtr<Text> Text::replaceWholeText(const String& newText, ExceptionCode&)
178 if (newText.isEmpty()) {
184 setData(newText, ignored);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
RemotePackagesPage.java 342 public String isValid(String newText) {
344 if (newText == null || newText.length() == 0) {
349 if (!newText.startsWith("file://") && //$NON-NLS-1$
350 !newText.startsWith("ftp://") && //$NON-NLS-1$
351 !newText.startsWith("http://") && //$NON-NLS-1$
352 !newText.startsWith("https://")) { //$NON-NLS-1$
360 if (newText.equalsIgnoreCase(s.getUrl())) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
EditingUtil.java 45 * Append newText to the text field represented by connection.
48 public static void appendText(InputConnection connection, String newText) {
61 newText = " " + newText;
64 connection.setComposingText(newText, 1);
  /external/chromium/third_party/icu/source/test/cintltst/
utransts.c 96 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
97 u_strncpy(newText, x->text, start);
98 u_strncpy(newText + start, text, textLength);
99 u_strcpy(newText + start + textLength, x->text + limit);
101 x->text = newText;
108 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
109 u_strncpy(newText, x->text, dest);
110 u_strncpy(newText + dest, x->text + start, limit - start);
111 u_strcpy(newText + dest + limit - start, x->text + dest);
113 x->text = newText;
    [all...]
  /external/icu4c/test/cintltst/
utransts.c 96 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
97 u_strncpy(newText, x->text, start);
98 u_strncpy(newText + start, text, textLength);
99 u_strcpy(newText + start + textLength, x->text + limit);
101 x->text = newText;
108 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1));
109 u_strncpy(newText, x->text, dest);
110 u_strncpy(newText + dest, x->text + start, limit - start);
111 u_strcpy(newText + dest + limit - start, x->text + dest);
113 x->text = newText;
    [all...]
  /external/skia/src/views/
SkWidget.cpp 35 bool draw(SkCanvas* canvas, const SkString& newText, SkScalar x, SkScalar y, SkPaint& paint)
41 canvas->drawText(newText.c_str(), newText.size(), x, y, paint);
59 canvas->drawText(newText.c_str(), newText.size(), x, y + height - dy, paint);

Completed in 3486 milliseconds

1 2 3