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

12

/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.h368 * @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);
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);
H A DElementsTreeOutline.js1016 _attributeEditingCommitted: function(element, newText, oldText, attributeName, moveDirection)
1050 if (!/^\s*$/.test(newText))
1082 parseContainerElement.innerHTML = "<span " + newText + "></span>";
1116 _tagNameEditingCommitted: function(element, newText, oldText, tagName, moveDirection)
1145 newText = newText.trim();
1146 if (newText === oldText) {
1172 this.representedObject.setNodeName(newText, changeTagNameCallback);
1175 _textNodeEditingCommitted: function(element, newText)
1187 textNode.setNodeValue(newText, thi
[all...]
/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.cpp405 * @param newText An iterator over the text to analyze.
408 RuleBasedBreakIterator::adoptText(CharacterIterator* newText) { argument
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) { argument
437 fText = utext_openConstUnicodeString(fText, &newText, &status);
444 fSCharIter = new StringCharacterIterator(newText);
[all...]
/external/webkit/Source/WebCore/dom/
H A DText.cpp60 RefPtr<Text> newText = virtualCreate(oldStr->substring(offset)); local
66 parentNode()->insertBefore(newText.get(), nextSibling(), ec);
76 return newText.release();
146 PassRefPtr<Text> Text::replaceWholeText(const String& newText, ExceptionCode&) argument
172 if (newText.isEmpty()) {
178 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/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.cpp35 bool draw(SkCanvas* canvas, const SkString& newText, SkScalar x, SkScalar y, SkPaint& paint)
41 canvas->drawText(newText.c_str(), newText.size(), x, y, paint);
59 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;
/external/webkit/Source/WebCore/editing/
H A DTypingCommand.cpp174 String newText = text; local
182 newText = evt->text();
185 if (newText.isEmpty())
202 lastTypingCommand->insertText(newText, options & SelectInsertedText);
206 RefPtr<TypingCommand> cmd = TypingCommand::create(document, InsertText, newText, options, compositionType);

Completed in 3768 milliseconds

12