Searched defs:newText (Results 1 - 16 of 16) sorted by relevance

/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...]
H A Dunistr.cpp1034 const UnicodeString& newText,
1038 if(isBogus() || oldText.isBogus() || newText.isBogus()) {
1044 newText.pinIndices(newStart, newLength);
1056 // we found oldText, replace it by newText and go beyond it
1057 replace(pos, oldLength, newText, newStart, newLength);
1029 findAndReplace(int32_t start, int32_t length, const UnicodeString& oldText, int32_t oldStart, int32_t oldLength, const UnicodeString& newText, int32_t newStart, int32_t newLength) argument
/external/webkit/Source/WebCore/platform/gtk/
H A DDataObjectGtk.cpp49 void DataObjectGtk::setText(const String& newText) argument
52 m_text = newText;
/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);
H A DRange.cpp999 RefPtr<Text> newText = static_cast<Text*>(m_start.container())->splitText(m_start.offset(), ec); local
1002 m_start.container()->parentNode()->insertBefore(newNode.release(), newText.get(), ec);
1009 m_end.setToBeforeChild(newText.get());
/external/webkit/Source/WebCore/editing/
H A DSpellingCorrectionController.cpp231 String newText = plainText(replacementRange.get()); local
234 if (newText != m_correctionPanelInfo.replacementString)
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);
/external/clang/lib/ARCMigrate/
H A DARCMT.cpp562 llvm::SmallString<512> newText; local
563 llvm::raw_svector_ostream vecOS(newText);
567 StringRef(newText.data(), newText.size()), newFname);
/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/icu4c/test/intltest/
H A Dcitrtest.cpp38 void setText(const UnicodeString& newText){ argument
39 text = newText;
/external/icu4c/common/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...]
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.cpp634 String newText = lastContent->text(); local
635 newText.append(string);
636 lastContent->setText(newText.impl());
/external/webkit/Source/WebCore/inspector/
H A DInspectorStyleSheet.cpp559 bool InspectorStyle::replacePropertyInStyleText(const InspectorStyleProperty& property, const String& newText) argument
567 text.replace(range.start, range.end - range.start, newText);

Completed in 2145 milliseconds