Searched refs:oldText (Results 1 - 15 of 15) sorted by relevance

/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/Accessible2/
H A DAccessibleText.idl61 IAccessibleText::newText and IAccessibleText::oldText return this struct.
673 @param [out] oldText
679 [propget] HRESULT oldText
681 [out, retval] IA2TextSegment *oldText
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDOMStorageItemsView.js226 _editingCallback: function(editingNode, columnIdentifier, oldText, newText)
230 if (oldText)
231 domStorage.removeItem(oldText);
H A DUIUtils.js444 var oldText = isMultiline ? config.initialValue : getContent(element);
467 value: oldText
528 codeMirror.setValue(oldText);
531 this.value = oldText;
533 this.textContent = oldText;
546 committedCallback(this, getContent(this), oldText, context, moveDirection);
942 changes.push({ node: lastTextNode, type: "changed", oldText: lastText, newText: lastTextNode.textContent });
962 changes.push({ node: firstTextNode, type: "changed", oldText: firstText, newText: firstTextNode.textContent });
968 changes.push({ node: textNode, type: "changed", oldText: text, newText: textNode.textContent });
1004 entry.node.textContent = entry.oldText;
[all...]
H A DElementsTreeOutline.js811 entry.node.textContent = entry.oldText;
1548 _attributeEditingCommitted: function(element, newText, oldText, attributeName, moveDirection)
1605 if (oldText !== newText)
1611 _tagNameEditingCommitted: function(element, newText, oldText, tagName, moveDirection)
1641 if (newText === oldText) {
H A DDataGrid.js322 _editingCommitted: function(element, newText, oldText, context, moveDirection)
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DAccessibleTextImpl.h56 virtual HRESULT STDMETHODCALLTYPE get_oldText(IA2TextSegment* oldText);
H A DAccessibleTextImpl.cpp529 HRESULT AccessibleText::get_oldText(IA2TextSegment* oldText) argument
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorStyleSheet.h146 bool setPropertyText(unsigned index, const String& text, bool overwrite, String* oldText, ExceptionCode&);
204 bool setStyleText(const InspectorCSSId&, const String& text, String* oldText, ExceptionCode&);
H A DInspectorStyleSheet.cpp361 bool InspectorStyle::setPropertyText(unsigned index, const String& propertyText, bool overwrite, String* oldText, ExceptionCode& ec) argument
414 *oldText = allProperties.at(index).rawText;
1112 bool InspectorStyleSheet::setStyleText(const InspectorCSSId& id, const String& text, String* oldText, ExceptionCode& ec) argument
1120 if (oldText && !inspectorStyle->getText(oldText))
1129 bool InspectorStyleSheet::setPropertyText(const InspectorCSSId& id, unsigned propertyIndex, const String& text, bool overwrite, String* oldText, ExceptionCode& ec) argument
1137 bool success = inspectorStyle->setPropertyText(propertyIndex, text, overwrite, oldText, ec);
H A DInspectorCSSAgent.cpp434 String oldText; local
435 bool result = m_styleSheet->setPropertyText(m_cssId, m_propertyIndex, m_text, m_overwrite, &oldText, ec);
436 m_oldText = oldText.stripWhiteSpace();
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dunistr.h2408 * Replace all occurrences of characters in oldText with the characters
2410 * @param oldText the text containing the search text
2415 inline UnicodeString& findAndReplace(const UnicodeString& oldText,
2419 * Replace all occurrences of characters in oldText with characters
2424 * @param oldText the text containing the search text
2431 const UnicodeString& oldText,
2435 * Replace all occurrences of characters in oldText in the range
2442 * @param oldText the text containing the search text
2443 * @param oldStart the start of the search range in <TT>oldText</TT>
2444 * @param oldLength the length of the search range in <TT>oldText</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/icu/unicode/
H A Dunistr.h2344 * Replace all occurrences of characters in oldText with the characters
2346 * @param oldText the text containing the search text
2351 inline UnicodeString& findAndReplace(const UnicodeString& oldText,
2355 * Replace all occurrences of characters in oldText with characters
2360 * @param oldText the text containing the search text
2367 const UnicodeString& oldText,
2371 * Replace all occurrences of characters in oldText in the range
2378 * @param oldText the text containing the search text
2379 * @param oldStart the start of the search range in <TT>oldText</TT>
2380 * @param oldLength the length of the search range in <TT>oldText</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...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/tablelist/scripts/
H A DtablelistConfig.tcl2442 set oldText [lindex $oldItem $col]
2444 set oldText \
2445 [formatElem $win $key $row $col $oldText]
2447 set oldText [strToDispStr $oldText]
2448 set oldElemWidth [getElemWidth $win $oldText $auxWidth \
2828 set oldText $text
2909 set oldElemWidth [getElemWidth $win $oldText $oldAuxWidth \
2968 set oldText $text
3049 set oldElemWidth [getElemWidth $win $oldText
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dunistr.cpp1077 const UnicodeString& oldText,
1084 if(isBogus() || oldText.isBogus() || newText.isBogus()) {
1089 oldText.pinIndices(oldStart, oldLength);
1097 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
1099 // no more oldText's here: done
1102 // we found oldText, replace it by newText and go beyond it
1075 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
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderBlock.cpp6795 RefPtr<StringImpl> oldText = textObj->originalText(); local
6796 ASSERT(oldText);
6798 if (oldText && oldText->length() > 0) {
6802 while (length < oldText->length() && shouldSkipForFirstLetter((*oldText)[length]))
6810 for (unsigned scanLength = length; scanLength < oldText->length(); ++scanLength) {
6811 UChar c = (*oldText)[scanLength];
6823 new (renderArena()) RenderTextFragment(textObj->node() ? textObj->node() : textObj->document(), oldText.get(), length, oldText
[all...]

Completed in 357 milliseconds