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

12 3 4 5 6

  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderRetainedSupport.java 112 public boolean onQueryTextChange(String newText) {
116 String newFilter = !TextUtils.isEmpty(newText) ? newText : null;
  /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 398 * @param newText An iterator over the text to analyze. The BreakIterator
402 virtual void adoptText(CharacterIterator* newText);
407 * @param newText The text to analyze.
410 virtual void setText(const UnicodeString& newText);
uchriter.h 341 void setText(const UChar* newText, int32_t newTextLength);
  /external/webkit/Source/WebCore/inspector/front-end/
DOMStorageItemsView.js 132 _editingCallback: function(editingNode, columnIdentifier, oldText, newText)
139 domStorage.setItem(newText, editingNode.data[1]);
141 domStorage.setItem(editingNode.data[0], newText);
  /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))
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/
AddonSitesDialog.java 341 public String isValid(String newText) {
343 newText = newText == null ? null : newText.trim();
345 if (newText == null || newText.length() == 0) {
350 if (!newText.startsWith("file://") && //$NON-NLS-1$
351 !newText.startsWith("ftp://") && //$NON-NLS-1$
352 !newText.startsWith("http://") && //$NON-NLS-1$
353 !newText.startsWith("https://")) { //$NON-NLS-1
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentadoptnode30.js 89 var newText;
98 newText = doc.createTextNode("Document.adoptNode test for a TEXT_NODE");
99 adoptedText = doc.adoptNode(newText);
textiselementcontentwhitespace01.js 89 var newText;
97 newText = doc.createTextNode(" ");
98 hasWhitespace = newText.isElementContentWhitespace;
nodeinsertbefore17.js 97 var newText;
114 newText = doc.createTextNode("newText");
115 inserted = element.insertBefore(newText,refNode);
nodereplacechild30.js 95 var newText;
114 newText = doc.createTextNode("Text");
115 appendedChild = parent.appendChild(newText);
132 replaced = parent.replaceChild(newText,oldChild);
136 replaced = parent.replaceChild(oldChild,newText);
documentadoptnode31.js 92 var newText;
114 newText = newDoc.createTextNode("new Document.adoptNode test for a TEXT_NODE");
115 adoptedText = doc.adoptNode(newText);
documentadoptnode06.js 94 var newText;
129 newText = doc.createTextNode("Text Node");
131 appendedChild = newAttr.appendChild(newText);
documentnormalizedocument10.js 97 var newText;
110 newText = doc.createTextNode("Text Node");
111 appendedChild = elem.appendChild(newText);
  /external/webkit/Source/WebCore/dom/
Text.cpp 62 RefPtr<Text> newText = virtualCreate(oldStr->substring(offset));
68 parentNode()->insertBefore(newText.get(), nextSibling(), ec);
78 return newText.release();
148 PassRefPtr<Text> Text::replaceWholeText(const String& newText, ExceptionCode&)
174 if (newText.isEmpty()) {
180 setData(newText, ignored);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SearchViewActionBar.java 97 public boolean onQueryTextChange(String newText) {
98 mStatusView.setText("Query = " + newText);
  /external/webkit/Source/WebCore/platform/gtk/
DataObjectGtk.cpp 49 void DataObjectGtk::setText(const String& newText)
52 m_text = newText;
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 194 llvm::SmallString<512> newText;
195 llvm::raw_svector_ostream vecOS(newText);
199 StringRef(newText.data(), newText.size()), file->getName());
  /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 42 bool draw(SkCanvas* canvas, const SkString& newText, SkScalar x, SkScalar y, SkPaint& paint)
48 canvas->drawText(newText.c_str(), newText.size(), x, y, paint);
66 canvas->drawText(newText.c_str(), newText.size(), x, y + height - dy, paint);
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/wizards/buildingblocks/
NewProviderMainPage.java 64 public String isValid(String newText)
67 JavaConventions.validatePackageName(newText, JavaCore.VERSION_1_7,
69 if (status.isOK() && getBuildBlock().getAuthoritiesList().contains(newText))
79 Matcher matcher = pattern.matcher(newText);
91 if (status.isOK() && newText.equalsIgnoreCase(getBuildBlock().getDefaultAuthority()))
NewLauncherWizardPage.java 64 public String isValid(String newText)
67 if (((newText == null) || (newText.length() == 0) || (newText.contains(" ")))) //$NON-NLS-1$
  /external/icu4c/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) {
  /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) {

Completed in 4809 milliseconds

12 3 4 5 6