HomeSort by relevance Sort by last modified time
    Searched refs:newText (Results 26 - 50 of 168) sorted by null

12 3 4 5 6 7

  /developers/samples/android/content/LoaderCursor/src/com/example/android/content/loadercursor/
CursorLoaderListFragment.java 131 * @param newText the new content of the query text field
134 public boolean onQueryTextChange(String newText) {
136 String newFilter = !TextUtils.isEmpty(newText) ? newText : null;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCursor.java 127 public boolean onQueryTextChange(String newText) {
131 String newFilter = !TextUtils.isEmpty(newText) ? newText : null;
LoaderRetained.java 132 public boolean onQueryTextChange(String newText) {
136 String newFilter = !TextUtils.isEmpty(newText) ? newText : null;
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CursorFragment.java 84 public boolean onQueryTextChange(String newText) {
88 mCurFilter = !TextUtils.isEmpty(newText) ? newText : null;
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCursorSupport.java 110 public boolean onQueryTextChange(String newText) {
114 String newFilter = !TextUtils.isEmpty(newText) ? newText : null;
LoaderRetainedSupport.java 112 public boolean onQueryTextChange(String newText) {
116 String newFilter = !TextUtils.isEmpty(newText) ? newText : null;
  /external/chromium_org/third_party/icu/source/common/unicode/
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);
  /external/icu4c/common/unicode/
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 396 * @param newText An iterator over the text to analyze. The BreakIterator
400 virtual void adoptText(CharacterIterator* newText);
405 * @param newText The text to analyze.
408 virtual void setText(const UnicodeString& newText);
uchriter.h 341 void setText(const UChar* newText, int32_t newTextLength);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
RenamePackageAction.java 131 public String isValid(String newText) {
133 astValidator.newName(newText);
138 if (newText.equals(oldPackageNameString))
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Text.cpp 65 RefPtr<Text> newText = cloneWithData(oldStr.substring(offset));
71 parentNode()->insertBefore(newText.get(), nextSibling(), es);
81 return newText.release();
143 PassRefPtr<Text> Text::replaceWholeText(const String& newText)
168 if (newText.isEmpty()) {
174 setData(newText);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SearchViewActionBar.java 97 public boolean onQueryTextChange(String newText) {
98 mStatusView.setText("Query = " + newText);
  /external/chromium_org/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/chromium_org/third_party/icu/source/common/
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);
uchriter.cpp 349 void UCharCharacterIterator::setText(const UChar* newText,
351 text = newText;
352 if(newText == 0 || newTextLength < 0) {
  /external/icu4c/common/
normlzr.cpp 398 Normalizer::setText(const UnicodeString& newText,
404 CharacterIterator *newIter = new StringCharacterIterator(newText);
419 Normalizer::setText(const CharacterIterator& newText,
425 CharacterIterator *newIter = newText.clone();
436 Normalizer::setText(const UChar* newText,
443 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
uchriter.cpp 350 void UCharCharacterIterator::setText(const UChar* newText,
352 text = newText;
353 if(newText == 0 || newTextLength < 0) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMStorageItemsView.js 246 _editingCallback: function(editingNode, columnIdentifier, oldText, newText)
252 domStorage.setItem(newText, editingNode.data.value || '');
255 domStorage.setItem(editingNode.data.key || '', newText);
TextPrompt.js 866 var newText;
873 newText = this._previous();
879 newText = this._next();
883 newText = this._previous();
889 newText = this._next();
893 if (newText !== undefined) {
895 this.text = newText;
  /packages/apps/Music/src/com/android/music/
CreatePlaylist.java 83 String newText = mPlaylist.getText().toString();
84 if (newText.trim().length() == 0) {
89 if (idForplaylist(newText) >= 0) {
  /frameworks/base/core/java/android/content/
ClipData.java 394 CharSequence newText = Html.fromHtml(htmlText);
395 if (newText != null) {
396 return newText;
500 CharSequence newText = Html.fromHtml(text);
501 return newText != null ? newText : text;
    [all...]

Completed in 2069 milliseconds

12 3 4 5 6 7