Home
last modified time | relevance | path

Searched refs:RemoteObject (Results 1 – 25 of 62) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DRemoteObject.js40 WebInspector.RemoteObject = function(objectId, type, subtype, value, description, preview) class in WebInspector
63 WebInspector.RemoteObject.fromPrimitiveValue = function(value)
65 return new WebInspector.RemoteObject(undefined, typeof value, undefined, value);
72 WebInspector.RemoteObject.fromLocalObject = function(value)
82 WebInspector.RemoteObject.resolveNode = function(node, objectGroup, callback)
96 callback(WebInspector.RemoteObject.fromPayload(object));
105 WebInspector.RemoteObject.fromPayload = function(payload)
109 …return new WebInspector.RemoteObject(payload.objectId, payload.type, payload.subtype, payload.valu…
116 WebInspector.RemoteObject.type = function(remoteObject)
128 WebInspector.RemoteObject.prototype = {
[all …]
DScopeChainSidebarPane.js84 …rties.push(new WebInspector.RemoteObjectProperty("this", WebInspector.RemoteObject.fromPayload(cal…
90 …ush(new WebInspector.RemoteObjectProperty("<exception>", WebInspector.RemoteObject.fromPayload(exc…
93 …s.push(new WebInspector.RemoteObjectProperty("<return>", WebInspector.RemoteObject.fromPayload(cal…
DEventListenersSidebarPane.js178 … WebInspector.ObjectPropertiesSection.call(this, WebInspector.RemoteObject.fromPrimitiveValue(""));
210 … var remoteObject = WebInspector.RemoteObject.fromPayload(this.eventListener.handler);
222 …WebInspector.RemoteObject.resolveNode(this.eventListener.node, WebInspector.EventListenersSidebarP…
DExtensionPanel.js164 this._setObject(WebInspector.RemoteObject.fromLocalObject(object), title, callback);
217 this._setObject(WebInspector.RemoteObject.fromPayload(result), title, callback);
DIndexedDBModel.js382 var key = WebInspector.RemoteObject.fromPayload(dataEntries[i].key);
383 var primaryKey = WebInspector.RemoteObject.fromPayload(dataEntries[i].primaryKey);
384 var value = WebInspector.RemoteObject.fromPayload(dataEntries[i].value);
DPropertiesSidebarPane.js51 …WebInspector.RemoteObject.resolveNode(node, WebInspector.PropertiesSidebarPane._objectGroupName, n…
DRequestJSONView.js97 var obj = WebInspector.RemoteObject.fromLocalObject(this._parsedJSON.data);
DConsoleMessage.js280 if (parameters[i] instanceof WebInspector.RemoteObject)
284 parameters[i] = WebInspector.RemoteObject.fromPayload(parameters[i]);
286 parameters[i] = WebInspector.RemoteObject.fromPrimitiveValue(parameters[i]);
290 …var shouldFormatMessage = WebInspector.RemoteObject.type(parameters[0]) === "string" && this.type …
330 else if (output instanceof WebInspector.RemoteObject)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInjectedScript.h59 RefPtr<TypeBuilder::Runtime::RemoteObject>* result,
67 RefPtr<TypeBuilder::Runtime::RemoteObject>* result,
77 RefPtr<TypeBuilder::Runtime::RemoteObject>* result,
90 …PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapObject(const ScriptValue&, const String& groupN…
91 …PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapTable(const ScriptValue& table, const ScriptVal…
92 PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapNode(Node*, const String& groupName);
DInjectedScript.cpp46 using WebCore::TypeBuilder::Runtime::RemoteObject;
60 …ool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeB… in evaluate()
71 …ool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeB… in callFunctionOn()
82 …cludeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeB… in evaluateOnCallFrame()
248 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapObject(const ScriptValue& value,… in wrapObject()
261 return TypeBuilder::Runtime::RemoteObject::runtimeCast(rawResult); in wrapObject()
264 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapTable(const ScriptValue& table, … in wrapTable()
279 return TypeBuilder::Runtime::RemoteObject::runtimeCast(rawResult); in wrapTable()
282 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapNode(Node* node, const String& g… in wrapNode()
DInjectedScriptBase.cpp42 using WebCore::TypeBuilder::Runtime::RemoteObject;
118 …rorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult,… in makeEvalCall()
142 *objectResult = TypeBuilder::Runtime::RemoteObject::runtimeCast(resultObj); in makeEvalCall()
DInspectorAgent.h81 …void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject…
91 pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject> > m_pendingInspectData;
DInspectorRuntimeAgent.h65 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
74 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
DInjectedScriptCanvasModule.cpp43 using WebCore::TypeBuilder::Runtime::RemoteObject;
191 …, int callIndex, int argumentIndex, const String& objectGroup, RefPtr<RemoteObject>* result, RefPt… in evaluateTraceLogCallArgument()
208 *result = RemoteObject::runtimeCast(remoteObject); in evaluateTraceLogCallArgument()
DConsoleMessage.cpp207 …uilder::Array<TypeBuilder::Runtime::RemoteObject> > jsonArgs = TypeBuilder::Array<TypeBuilder::Run… in addToFrontend()
211 …RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapTable(table, column… in addToFrontend()
219 …RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapObject(m_arguments-… in addToFrontend()
DInjectedScriptHost.cpp76 …RefPtr<TypeBuilder::Runtime::RemoteObject> remoteObject = TypeBuilder::Runtime::RemoteObject::runt… in inspectImpl()
DInspectorRuntimeAgent.cpp69 …urnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeB… in evaluate()
88 …urnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeB… in callFunctionOn()
DInjectedScriptBase.h64 …void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* r…
DInjectedScriptCanvasModule.h63 …s::TraceLogId&, int, int, const String&, RefPtr<TypeBuilder::Runtime::RemoteObject>*, RefPtr<TypeB…
DInspectorHeapProfilerAgent.h73 …apSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result);
DInspectorCanvasAgent.h86 …s::TraceLogId&, int, int, const String*, RefPtr<TypeBuilder::Runtime::RemoteObject>&, RefPtr<TypeB…
DInspectorCanvasAgent.cpp55 using WebCore::TypeBuilder::Runtime::RemoteObject;
184 …, int callIndex, int argumentIndex, const String* objectGroup, RefPtr<RemoteObject>& result, RefPt… in evaluateTraceLogCallArgument()
DInspectorDebuggerAgent.h123 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
126 …l* doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeB…
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
DObjectStore.java83 private HashMap<String, RemoteObject> remoteObjects = new HashMap<String, RemoteObject>();
84 private IntMap<RemoteObject> remoteObjectsById = new IntMap<RemoteObject>();
186 RemoteObject ro = remoteObjects.get(name); in getExposedObject()
204 Object invokeRemoteMethod(RemoteObject remoteObj, Method method, Object[] args){ in invokeRemoteMethod()
260 RemoteObject remoteObject = new RemoteObject(this, source); in onMessage()
DRemoteObject.java46 public class RemoteObject implements InvocationHandler { class
76 public RemoteObject(ObjectStore store, HostedConnection client){ in RemoteObject() method in RemoteObject

123