Home
last modified time | relevance | path

Searched refs:newContent (Results 1 – 12 of 12) sorted by relevance

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
DRSSFeedWatcherTask.java157 String newContent = newFeedWatcher.getFoundNode().getTextContent(); in checkFeed() local
161 …(Messages.getString("RSSFeedWatcherTask.GotNewNodeContents") + CL + SP + newContent); //$NON-NLS-1$ in checkFeed() local
170 " -newvalue \"" + newContent + "\""; //$NON-NLS-1$ //$NON-NLS-2$ in checkFeed()
174 …ct().setProperty(feedWatchActionTheValue + DOT + j,!isNullString(newContent)?newContent:oldContent… in checkFeed()
177 !oldContent.equals(newContent) // node has changed in checkFeed()
181 …if (!isNullString(newContent)) { this.getProject().setProperty(feedWatchActionNewValue + DOT + j,n… in checkFeed()
/external/webkit/Source/WebCore/wml/
DWMLTableElement.cpp165 String newContent = " "; in tryMergeAdjacentTextCells() local
166 newContent += nextItemText->data(); in tryMergeAdjacentTextCells()
169 itemText->appendData(newContent, ec); in tryMergeAdjacentTextCells()
/external/webkit/Source/WebCore/inspector/front-end/
DResource.js713 setContent: function(newContent, majorChange, callback) argument
721 binding.setContent(this, newContent, majorChange, callback);
724 addRevision: function(newContent) argument
729 this._content = newContent;
DStylesSidebarPane.js909 editingSelectorCommitted: function(element, newContent, oldContent, context, moveDirection) argument
933 if (newContent === oldContent)
956 …ebInspector.panels.elements.renameSelector(oldIdentifier, this.identifier, oldContent, newContent);
962 …sModel.setRuleSelector(this.rule.id, focusedNode ? focusedNode.id : 0, newContent, successCallback…
1085 editingSelectorCommitted: function(element, newContent, oldContent, context) argument
1104 …WebInspector.cssModel.addRule(this.pane.node.id, newContent, successCallback, this.editingSelector…
DSourceFrame.js936 editContent: function(newContent, callback) argument
938 this._delegate.editScriptSource(newContent, callback);
DResourcesPanel.js416 _applyDiffMarkup: function(view, baseContent, newContent) { argument
418 var newLines = newContent.split(/\r?\n/);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DSurface.cpp104 LayerContent* newContent = getFirstLayer()->content(); in tryUpdateSurface() local
106 fullInval = newContent->width() != oldContent->width() in tryUpdateSurface()
107 || newContent->height() != oldContent->height(); in tryUpdateSurface()
/external/webkit/Source/WebCore/bindings/v8/
DScriptDebugServer.h75 bool editScriptSource(const String& sourceID, const String& newContent, String* error);
DScriptDebugServer.cpp214 bool ScriptDebugServer::editScriptSource(const String& sourceID, const String& newContent, String* … in editScriptSource() argument
224 v8::Handle<v8::Value> argv[] = { v8String(sourceID), v8String(newContent) }; in editScriptSource()
/external/webkit/Source/WebCore/bindings/js/
DScriptDebugServer.h81 bool editScriptSource(const String& sourceID, const String& newContent, String* error);
/external/webkit/Source/WebCore/inspector/
DInspectorDebuggerAgent.h88 …void editScriptSource(ErrorString*, const String& sourceID, const String& newContent, RefPtr<Inspe…
DInspectorDebuggerAgent.cpp280 …ScriptSource(ErrorString* error, const String& sourceID, const String& newContent, RefPtr<Inspecto… in editScriptSource() argument
282 if (scriptDebugServer().editScriptSource(sourceID, newContent, error)) in editScriptSource()