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

12

/macosx-10.9.5/ICU-511.35/icuSources/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.h396 * @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);
H A Duchriter.h341 void setText(const UChar* newText, int32_t newTextLength);
H A Dunistr.h2409 * in newText
2411 * @param newText the text containing the replacement text
2416 const UnicodeString& newText);
2420 * in newText
2425 * @param newText the text containing the replacement text
2432 const UnicodeString& newText);
2437 * in newText in the range
2445 * @param newText the text containing the replacement text
2446 * @param newStart the start of the replacement range in <TT>newText</TT>
2447 * @param newLength the length of the replacement range in <TT>newText</T
4170 findAndReplace(const UnicodeString& oldText, const UnicodeString& newText) argument
4176 findAndReplace(int32_t start, int32_t _length, const UnicodeString& oldText, const UnicodeString& newText) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorStyleTextEditor.h46 void replaceProperty(unsigned index, const String& newText);
55 void internalReplaceProperty(const InspectorStyleProperty&, const String& newText, SourceRange* removedRange, unsigned* insertedLength);
H A DInspectorStyleTextEditor.cpp122 void InspectorStyleTextEditor::replaceProperty(unsigned index, const String& newText) argument
130 long newLength = newText.length();
136 internalReplaceProperty(property, newText, &overwrittenRange, &insertedLength);
142 long textLength = newText.length();
149 m_disabledProperties->at(disabledIndex).rawText = newText;
226 void InspectorStyleTextEditor::internalReplaceProperty(const InspectorStyleProperty& property, const String& newText, SourceRange* removedRange, unsigned* insertedLength) argument
232 long newTextLength = newText.length();
233 String finalNewText = newText;
242 if (isHTMLLineBreak(newText.characters()[newTextLength - 1])) {
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextInsertionBaseCommand.cpp62 String newText = text;
68 newText = evt->text();
71 return newText;
H A DDictationCommand.cpp98 String newText = dispatchBeforeTextInsertedEvent(text, selectionForInsertion, false); local
101 if (newText == text)
102 cmd = DictationCommand::create(document, newText, alternatives);
106 cmd = DictationCommand::create(document, newText, Vector<DictationAlternative>());
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dschriter.cpp108 StringCharacterIterator::setText(const UnicodeString& newText) { argument
109 text = newText;
H A Dnormlzr.cpp398 Normalizer::setText(const UnicodeString& newText, argument
404 CharacterIterator *newIter = new StringCharacterIterator(newText);
419 Normalizer::setText(const CharacterIterator& newText, argument
425 CharacterIterator *newIter = newText.clone();
436 Normalizer::setText(const UChar* newText, argument
443 CharacterIterator *newIter = new UCharCharacterIterator(newText, length);
H A Duchriter.cpp350 void UCharCharacterIterator::setText(const UChar* newText, argument
352 text = newText;
353 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...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DText.cpp70 RefPtr<Text> newText = virtualCreate(oldStr.substring(offset)); local
76 parentNode()->insertBefore(newText.get(), nextSibling(), ec);
86 return newText.release();
152 PassRefPtr<Text> Text::replaceWholeText(const String& newText, ExceptionCode&) argument
177 if (newText.isEmpty()) {
183 setData(newText, IGNORE_EXCEPTION);
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/Accessible2/
H A DAccessibleText.idl61 IAccessibleText::newText and IAccessibleText::oldText return this struct.
646 @param [out] newText
653 [propget] HRESULT newText
655 [out, retval] IA2TextSegment *newText
/macosx-10.9.5/ICU-511.35/icuSources/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...]
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DDataObjectGtk.cpp53 void DataObjectGtk::setText(const String& newText) argument
56 m_text = newText;
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Danilabel.tcl45 set newText [string range $text 1 end][string index $text 0]
46 $w configure -text $newText
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDOMStorageItemsView.js226 _editingCallback: function(editingNode, columnIdentifier, oldText, newText)
232 domStorage.setItem(newText, editingNode.data.value);
235 domStorage.setItem(editingNode.data.key, newText);
H A DTextPrompt.js885 var newText;
892 newText = this._previous();
898 newText = this._next();
902 newText = this._previous();
908 newText = this._next();
912 if (newText !== undefined) {
914 this.text = newText;
H A DElementsTreeOutline.js798 entry.node.textContent = entry.newText;
1548 _attributeEditingCommitted: function(element, newText, oldText, attributeName, moveDirection)
1588 if (newText === " ") {
1598 if (!/^\s*$/.test(newText))
1605 if (oldText !== newText)
1606 this.representedObject.setAttribute(attributeName, newText, moveToNextAttributeIfNeeded.bind(this));
1611 _tagNameEditingCommitted: function(element, newText, oldText, tagName, moveDirection)
1640 newText = newText.trim();
1641 if (newText
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebTextCompletionController.mm78 NSString *newText = [match substringFromIndex:prefixLength];
79 [frame _replaceSelectionWithText:newText selectReplacement:YES smartReplace:NO];
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DAccessibleTextImpl.h55 virtual HRESULT STDMETHODCALLTYPE get_newText(IA2TextSegment* newText);
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkButton.c106 Tcl_Obj *newText; local
112 newText = value ? Tcl_NewStringObj(value, -1) : Tcl_NewStringObj("", 0);
114 Tcl_IncrRefCount(newText);
116 basePtr->base.textObj = newText;
/macosx-10.9.5/WebCore-7537.78.1/icu/unicode/
H A Dunistr.h2345 * in newText
2347 * @param newText the text containing the replacement text
2352 const UnicodeString& newText);
2356 * in newText
2361 * @param newText the text containing the replacement text
2368 const UnicodeString& newText);
2373 * in newText in the range
2381 * @param newText the text containing the replacement text
2382 * @param newStart the start of the replacement range in <TT>newText</TT>
2383 * @param newLength the length of the replacement range in <TT>newText</T
4044 findAndReplace(const UnicodeString& oldText, const UnicodeString& newText) argument
4050 findAndReplace(int32_t start, int32_t _length, const UnicodeString& oldText, const UnicodeString& newText) argument
[all...]

Completed in 565 milliseconds

12