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

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DDOMStorageItemsView.js225 _editingCallback: function(editingNode, columnIdentifier, oldText, newText)
229 if (typeof oldText === "string")
230 domStorage.removeItem(oldText);
H A DUIUtils.js552 var oldText = isMultiline ? config.initialValue : getContent(element);
578 value: oldText
653 codeMirror.setValue(oldText);
656 this.value = oldText;
658 this.textContent = oldText;
671 committedCallback(this, getContent(this), oldText, context, moveDirection);
1076 changes.push({ node: lastTextNode, type: "changed", oldText: lastText, newText: lastTextNode.textContent });
1096 changes.push({ node: firstTextNode, type: "changed", oldText: firstText, newText: firstTextNode.textContent });
1102 changes.push({ node: textNode, type: "changed", oldText: text, newText: textNode.textContent });
1137 entry.node.textContent = entry.oldText;
[all...]
H A DElementsTreeOutline.js884 entry.node.textContent = entry.oldText;
1700 _attributeEditingCommitted: function(element, newText, oldText, attributeName, moveDirection)
1765 if (oldText !== newText) {
1774 _tagNameEditingCommitted: function(element, newText, oldText, tagName, moveDirection)
1807 if (newText === oldText) {
H A DDataGrid.js328 _editingCommitted: function(element, newText, oldText, context, moveDirection)
/external/chromium_org/third_party/icu/source/common/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
4045 findAndReplace(const UnicodeString& oldText, const UnicodeString& newText) argument
4051 findAndReplace(int32_t start, int32_t _length, const UnicodeString& oldText, const UnicodeString& newText) argument
[all...]
/external/icu4c/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...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorStyleSheet.h139 bool setPropertyText(unsigned index, const String& text, bool overwrite, String* oldText, ExceptionState&);
197 bool setStyleText(const InspectorCSSId&, const String& text, String* oldText, ExceptionState&);
H A DInspectorStyleSheet.cpp541 bool InspectorStyle::setPropertyText(unsigned index, const String& propertyText, bool overwrite, String* oldText, ExceptionState& exceptionState)
595 *oldText = allProperties.at(index).rawText;
1323 bool InspectorStyleSheet::setStyleText(const InspectorCSSId& id, const String& text, String* oldText, ExceptionState& exceptionState)
1331 bool success = inspectorStyle->styleText(oldText);
1345 bool InspectorStyleSheet::setPropertyText(const InspectorCSSId& id, unsigned propertyIndex, const String& text, bool overwrite, String* oldText, ExceptionState& exceptionState)
1353 bool success = inspectorStyle->setPropertyText(propertyIndex, text, overwrite, oldText, exceptionState);
H A DInspectorCSSAgent.cpp441 String oldText; local
442 bool result = m_styleSheet->setPropertyText(m_cssId, m_propertyIndex, m_text, m_overwrite, &oldText, exceptionState);
443 m_oldText = oldText.stripWhiteSpace();
/external/chromium_org/third_party/icu/source/common/
H A Dunistr.cpp1031 const UnicodeString& oldText,
1038 if(isBogus() || oldText.isBogus() || newText.isBogus()) {
1043 oldText.pinIndices(oldStart, oldLength);
1051 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
1053 // no more oldText's here: done
1056 // we found oldText, replace it by newText and go beyond it
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/icu4c/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
/external/chromium_org/third_party/iaccessible2/
H A Dia2_api_all.idl2038 IAccessibleText::newText and IAccessibleText::oldText return this struct.
2585 @param [out] oldText
2590 [propget] HRESULT oldText
2592 [out, retval] IA2TextSegment *oldText
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.cpp4837 String oldText = textObj->originalText(); local
4838 ASSERT(oldText.impl());
4843 new RenderTextFragment(textObj->node() ? textObj->node() : &textObj->document(), oldText.impl(), length, oldText.length() - length);
4855 new RenderTextFragment(remainingText->node() ? remainingText->node() : &remainingText->document(), oldText.impl(), 0, length);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1289 milliseconds