Searched refs:newContent (Results 1 - 21 of 21) sorted by relevance

/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DStartupConfig.cpp86 ** newContent: buffer containing new content; newContent[0] is
87 ** payload length; newContent[1..end] is payload.
92 bool StartupConfig::append (const UINT8* newContent) argument
95 if ((newContent[0]+mBuffer.size()) > mMaxLength)
100 ALOGD ("%s: try append %u bytes", fn, (uint8_string::size_type) (newContent[0]));
102 mBuffer.append (newContent+1, (uint8_string::size_type) (newContent[0]));
104 mBuffer[0] = mBuffer[0] + newContent[0];
115 ** newContent
122 append(const UINT8* newContent, UINT8 newContentLen) argument
[all...]
/external/libnfc-nci/halimpl/bcm2079x/include/
H A DStartupConfig.h66 ** newContent: buffer containing new content; newContent[0] is
67 ** payload length; newContent[1..end] is payload.
72 bool append (const UINT8* newContent);
80 ** newContent: buffer containing new content; newContent[0] is
81 ** payload length; newContent[1..end] is payload.
82 ** newContentLen: total length of newContent.
87 bool append (const UINT8* newContent, UINT8 newContentLen);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DCSSNamedFlowView.js152 * @param {!Array.<!DOMAgent.NodeId>} newContent
154 _mergeContentNodes: function(oldContent, newContent)
157 for (var i = 0; i < newContent.length; ++i)
158 nodeIdSet[newContent[i]] = true;
164 while (oldContentIndex < oldContent.length || newContentIndex < newContent.length) {
166 this._insertContentNode(newContent[newContentIndex]);
171 if (newContentIndex === newContent.length) {
177 if (oldContent[oldContentIndex] === newContent[newContentIndex]) {
185 this._insertContentNode(newContent[newContentIndex], contentTreeChildIndex);
H A DScriptSnippetModel.js155 * @param {string} newContent
157 _setScriptSnippetContent: function(name, newContent)
160 snippet.content = newContent;
642 * @param {string} newContent
645 setFileContent: function(path, newContent, callback)
647 this._model._setScriptSnippetContent(path, newContent);
H A DWorkspace.js99 * @param {string} newContent
102 setFileContent: function(path, newContent, callback) { },
327 * @param {string} newContent
330 setFileContent: function(uiSourceCode, newContent, callback)
332 this._projectDelegate.setFileContent(uiSourceCode.path(), newContent, onSetContent.bind(this));
340 this._workspace.dispatchEventToListeners(WebInspector.Workspace.Events.UISourceCodeContentCommitted, { uiSourceCode: uiSourceCode, content: newContent });
H A DRevisionHistoryView.js234 * @param {?string} newContent
237 function step2(baseContent, newContent)
240 var newLines = difflib.stringAsLines(newContent);
H A DContentProviderBasedProjectDelegate.js112 * @param {string} newContent
115 setFileContent: function(path, newContent, callback)
H A DFileSystemProjectDelegate.js137 * @param {string} newContent
140 setFileContent: function(path, newContent, callback)
143 this._fileSystem.setFileContent(filePath, newContent, callback.bind(this, ""));
H A DStylesSidebarPane.js1484 editingSelectorCommitted: function(element, newContent, oldContent, context, moveDirection)
1487 if (newContent)
1488 newContent = newContent.trim();
1489 if (newContent === oldContent) {
1491 this._selectorElement.textContent = newContent;
1532 WebInspector.cssModel.setRuleSelector(this.rule.id, selectedNode ? selectedNode.id : 0, newContent, successCallback.bind(this), finishOperationAndMoveEditor.bind(this, moveDirection));
1702 editingSelectorCommitted: function(element, newContent, oldContent, context, moveDirection)
1705 WebInspector.StylePropertiesSection.prototype.editingSelectorCommitted.call(this, element, newContent, oldContent, context, moveDirection);
1734 if (newContent)
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
H A DRSSFeedWatcherTask.java157 String newContent = newFeedWatcher.getFoundNode().getTextContent();
161 System.out.println(Messages.getString("RSSFeedWatcherTask.GotNewNodeContents") + CL + SP + newContent); //$NON-NLS-1$
170 " -newvalue \"" + newContent + "\""; //$NON-NLS-1$ //$NON-NLS-2$
174 this.getProject().setProperty(feedWatchActionTheValue + DOT + j,!isNullString(newContent)?newContent:oldContent);
177 !oldContent.equals(newContent) // node has changed
181 if (!isNullString(newContent)) { this.getProject().setProperty(feedWatchActionNewValue + DOT + j,newContent); }
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptDebugServer.h80 bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, ScriptValue* newCallFrames, ScriptObject* result);
H A DScriptDebugServer.cpp251 bool ScriptDebugServer::setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>& errorData, ScriptValue* newCallFrames, ScriptObject* result) argument
267 v8::Handle<v8::Value> argv[] = { v8String(debuggerContext->GetIsolate(), sourceID), v8String(debuggerContext->GetIsolate(), newContent), v8Boolean(preview, debuggerContext->GetIsolate()) };
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDebuggerAgent.h105 virtual void setScriptSource(ErrorString*, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, const String& scriptId, const String& newContent, const bool* preview, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<TypeBuilder::Debugger::StackTrace>& asyncStackTrace);
H A DInspectorDebuggerAgent.cpp599 void InspectorDebuggerAgent::setScriptSource(ErrorString* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>& errorData, const String& scriptId, const String& newContent, const bool* const preview, RefPtr<Array<CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<StackTrace>& asyncStackTrace) argument
603 if (!scriptDebugServer().setScriptSource(scriptId, newContent, previewOnly, error, errorData, &m_currentCallStack, &resultObject))
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.filebuffers_3.5.100.v20100520-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.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 ...
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.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 462 milliseconds