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

12 3 4 5 6 7

  /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))
  /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);
WindowFocusObserver.java 83 public boolean onQueryTextChange(String newText) {
  /external/icu4c/common/unicode/
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);
  /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 216 SmallString<512> newText;
217 llvm::raw_svector_ostream vecOS(newText);
221 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/legacy/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);
  /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) {
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/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...]
  /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) {
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_controller.h 159 - (BOOL)handleInputText:(NSString*)newText;

Completed in 1040 milliseconds

12 3 4 5 6 7