Searched refs:newText (Results 1 - 25 of 55) sorted by relevance

123

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Ddocumentadoptnode30.js89 var newText;
98 newText = doc.createTextNode("Document.adoptNode test for a TEXT_NODE");
99 adoptedText = doc.adoptNode(newText);
H A Dtextiselementcontentwhitespace01.js89 var newText;
97 newText = doc.createTextNode(" ");
98 hasWhitespace = newText.isElementContentWhitespace;
H A Ddocumentadoptnode31.js92 var newText;
114 newText = newDoc.createTextNode("new Document.adoptNode test for a TEXT_NODE");
115 adoptedText = doc.adoptNode(newText);
H A Dnodeinsertbefore17.js97 var newText;
114 newText = doc.createTextNode("newText");
115 inserted = element.insertBefore(newText,refNode);
H A Ddocumentnormalizedocument10.js97 var newText;
110 newText = doc.createTextNode("Text Node");
111 appendedChild = elem.appendChild(newText);
H A Dnodereplacechild30.js95 var newText;
114 newText = doc.createTextNode("Text");
115 appendedChild = parent.appendChild(newText);
132 replaced = parent.replaceChild(newText,oldChild);
136 replaced = parent.replaceChild(oldChild,newText);
H A Ddocumentadoptnode06.js94 var newText;
129 newText = doc.createTextNode("Text Node");
131 appendedChild = newAttr.appendChild(newText);
/external/icu4c/common/unicode/
H A Dschriter.h135 * @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);
H A Dnormlzr.h671 * @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,
H A Drbbi.h398 * @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);
H A Duchriter.h341 void setText(const UChar* newText, int32_t newTextLength);
/external/chromium/chrome/browser/ui/cocoa/
H A Dfind_pasteboard.h40 // Sets the current find text to |newText| and sends a
42 // it the new text different from the current text. |newText| must not be nil.
43 - (void)setFindText:(NSString*)newText;
/external/webkit/Source/WebCore/inspector/front-end/
H A DDOMStorageItemsView.js132 _editingCallback: function(editingNode, columnIdentifier, oldText, newText)
139 domStorage.setItem(newText, editingNode.data[1]);
141 domStorage.setItem(editingNode.data[0], newText);
H A DResourceView.js144 editContent: function(newText, callback)
148 this._resource.setContent(newText, majorChange, callback);
/external/icu4c/common/
H A Dschriter.cpp108 StringCharacterIterator::setText(const UnicodeString& newText) { argument
109 text = newText;
H A Dnormlzr.cpp399 Normalizer::setText(const UnicodeString& newText, argument
405 CharacterIterator *newIter = new StringCharacterIterator(newText);
420 Normalizer::setText(const CharacterIterator& newText, argument
426 CharacterIterator *newIter = newText.clone();
437 Normalizer::setText(const UChar* newText, argument
444 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
H A Duchriter.cpp349 void UCharCharacterIterator::setText(const UChar* newText, argument
351 text = newText;
352 if(newText == 0 || newTextLength < 0) {
H A Drbbi.cpp435 * @param newText An iterator over the text to analyze.
438 RuleBasedBreakIterator::adoptText(CharacterIterator* newText) { argument
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) { argument
467 fText = utext_openConstUnicodeString(fText, &newText, &status);
474 fSCharIter = new StringCharacterIterator(newText);
[all...]
/external/smali/util/src/main/java/ds/tree/
H A DRadixTreeImpl.java184 String newText = key.substring(numberOfMatchingCharacters, key.length());
186 if (child.getKey().startsWith(newText.charAt(0) + "")) {
188 insert(newText, child, value);
196 n.setKey(newText);
297 String newText = key.substring(numberOfMatchingCharacters, key.length());
299 if (child.getKey().startsWith(newText.charAt(0) + "")) {
300 result = searchPefix(newText, child);
357 String newText = prefix.substring(numberOfMatchingCharacters, prefix.length());
360 if (child.getKey().startsWith(newText.charAt(0) + "")) {
361 visit(newText, visito
[all...]
/external/webkit/Source/WebCore/dom/
H A DText.cpp62 RefPtr<Text> newText = virtualCreate(oldStr->substring(offset)); local
68 parentNode()->insertBefore(newText.get(), nextSibling(), ec);
78 return newText.release();
148 PassRefPtr<Text> Text::replaceWholeText(const String& newText, ExceptionCode&) argument
174 if (newText.isEmpty()) {
180 setData(newText, ignored);
/external/webkit/Source/WebCore/platform/gtk/
H A DDataObjectGtk.cpp49 void DataObjectGtk::setText(const String& newText) argument
52 m_text = newText;
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp194 llvm::SmallString<512> newText; local
195 llvm::raw_svector_ostream vecOS(newText);
199 StringRef(newText.data(), newText.size()), file->getName());
/external/icu4c/test/cintltst/
H A Dutransts.c96 UChar* newText = (UChar*) malloc(sizeof(UChar) * (newLen+1)); local
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)); local
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/
H A DSkWidget.cpp42 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/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_folder_controller.h159 - (BOOL)handleInputText:(NSString*)newText;

Completed in 6446 milliseconds

123