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

1 23 4 5 6 7

  /frameworks/support/v4/java/android/support/v4/widget/
SearchViewCompat.java 156 public boolean onQueryTextChange(String newText) {
157 return listener.onQueryTextChange(newText);
359 * @param newText the new content of the query text field.
364 public boolean onQueryTextChange(String newText) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
WindowFocusObserver.java 83 public boolean onQueryTextChange(String newText) {
ContentBrowserActivity.java 243 public boolean onQueryTextChange(String newText) {
ContentBrowserNavActivity.java 245 public boolean onQueryTextChange(String newText) {
VideoPlayerActivity.java 260 public boolean onQueryTextChange(String newText) {
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_controller.h 159 - (BOOL)handleInputText:(NSString*)newText;
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_controller.h 159 - (BOOL)handleInputText:(NSString*)newText;
  /external/chromium_org/third_party/icu/source/common/
rbbi.cpp 405 * @param newText An iterator over the text to analyze.
408 RuleBasedBreakIterator::adoptText(CharacterIterator* newText) {
415 fCharIter = newText;
418 if (newText==NULL || newText->startIndex() != 0) {
423 fText = utext_openCharacterIterator(fText, newText, &status);
431 * @param newText An iterator over the text to analyze.
434 RuleBasedBreakIterator::setText(const UnicodeString& newText) {
437 fText = utext_openConstUnicodeString(fText, &newText, &status);
444 fSCharIter = new StringCharacterIterator(newText);
    [all...]
  /external/icu4c/common/
rbbi.cpp 435 * @param newText An iterator over the text to analyze.
438 RuleBasedBreakIterator::adoptText(CharacterIterator* newText) {
445 fCharIter = newText;
448 if (newText==NULL || newText->startIndex() != 0) {
453 fText = utext_openCharacterIterator(fText, newText, &status);
461 * @param newText An iterator over the text to analyze.
464 RuleBasedBreakIterator::setText(const UnicodeString& newText) {
467 fText = utext_openConstUnicodeString(fText, &newText, &status);
474 fSCharIter = new StringCharacterIterator(newText);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
JoinContactActivity.java 174 public boolean onQueryTextChange(String newText) {
175 mListFragment.setQueryString(newText, true);
  /packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java 232 final String newText = s.toString();
233 if (newText.equals(mSearchQuery)) {
239 mSearchQuery = newText;
246 if (TextUtils.isEmpty(newText) && getInSearchUi()) {
251 } else if (!TextUtils.isEmpty(newText)) {
257 enterSearchUi(dialpadSearch, newText);
261 mSmartDialSearchFragment.setQueryString(newText, false);
263 mRegularSearchFragment.setQueryString(newText, false);
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 236 final String newText = getActivity().getString(R.string.text_input_blah_blah);
237 final String afterText = beforeText.substring(0, 3) + newText;
260 editText.getEditableText().replace(3, 4, newText);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java 463 @Override public boolean onQueryTextChange(String newText) {
466 mCurFilter = !TextUtils.isEmpty(newText) ? newText : null;
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 449 public boolean onQueryTextChange(String newText) {
452 mCurFilter = !TextUtils.isEmpty(newText) ? newText : null;
  /packages/apps/Camera/src/com/android/camera/ui/
Switch.java 499 StringBuilder newText = new StringBuilder();
500 newText.append(oldText).append(' ').append(switchText);
501 info.setText(newText);
  /packages/apps/Camera2/src/com/android/camera/ui/
Switch.java 487 StringBuilder newText = new StringBuilder();
488 newText.append(oldText).append(' ').append(switchText);
489 info.setText(newText);
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 652 SmallString<512> newText;
653 llvm::raw_svector_ostream vecOS(newText);
657 StringRef(newText.data(), newText.size()), newFname);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ElementsTreeOutline.js 804 entry.node.textContent = entry.newText;
    [all...]
JavaScriptSourceFrame.js 376 function finishEditing(committed, element, newText)
385 breakpoint.setCondition(newText);
387 this._setBreakpoint(lineNumber, newText, true);
  /external/chromium_org/third_party/icu/source/common/unicode/
unistr.h     [all...]
  /external/icu4c/common/unicode/
unistr.h     [all...]
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactsListFragment.java 349 public boolean onQueryTextChange(String newText) {
353 String newFilter = !TextUtils.isEmpty(newText) ? newText : null;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.cpp 178 String newText = dispatchBeforeTextInsertedEvent(text, selectionForInsertion, compositionType == TextCompositionUpdate);
192 lastTypingCommand->insertText(newText, options & SelectInsertedText);
196 RefPtr<TypingCommand> cmd = TypingCommand::create(document, InsertText, newText, options, compositionType);
  /frameworks/base/core/java/android/widget/
Switch.java 845 StringBuilder newText = new StringBuilder();
846 newText.append(oldText).append(' ').append(switchText);
847 info.setText(newText);
  /cts/tests/tests/widget/src/android/widget/cts/
ListViewTest.java 781 final CharSequence newText = ((TextView) newItem.findViewById(android.R.id.text1))
784 Assert.assertFalse(oldText.equals(newText));
818 final CharSequence newText = ((TextView) newItem.findViewById(android.R.id.text1))
822 Assert.assertEquals(oldText, newText);

Completed in 1467 milliseconds

1 23 4 5 6 7