/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | RemoteObject.js | 40 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 …]
|
D | ScopeChainSidebarPane.js | 84 …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…
|
D | EventListenersSidebarPane.js | 178 … 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…
|
D | ExtensionPanel.js | 164 this._setObject(WebInspector.RemoteObject.fromLocalObject(object), title, callback); 217 this._setObject(WebInspector.RemoteObject.fromPayload(result), title, callback);
|
D | IndexedDBModel.js | 382 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);
|
D | PropertiesSidebarPane.js | 51 …WebInspector.RemoteObject.resolveNode(node, WebInspector.PropertiesSidebarPane._objectGroupName, n…
|
D | RequestJSONView.js | 97 var obj = WebInspector.RemoteObject.fromLocalObject(this._parsedJSON.data);
|
D | ConsoleMessage.js | 280 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/ |
D | InjectedScript.h | 59 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);
|
D | InjectedScript.cpp | 46 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()
|
D | InjectedScriptBase.cpp | 42 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()
|
D | InspectorAgent.h | 81 …void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject… 91 pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject> > m_pendingInspectData;
|
D | InspectorRuntimeAgent.h | 65 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, 74 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
|
D | InjectedScriptCanvasModule.cpp | 43 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()
|
D | ConsoleMessage.cpp | 207 …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()
|
D | InjectedScriptHost.cpp | 76 …RefPtr<TypeBuilder::Runtime::RemoteObject> remoteObject = TypeBuilder::Runtime::RemoteObject::runt… in inspectImpl()
|
D | InspectorRuntimeAgent.cpp | 69 …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()
|
D | InjectedScriptBase.h | 64 …void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* r…
|
D | InjectedScriptCanvasModule.h | 63 …s::TraceLogId&, int, int, const String&, RefPtr<TypeBuilder::Runtime::RemoteObject>*, RefPtr<TypeB…
|
D | InspectorHeapProfilerAgent.h | 73 …apSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result);
|
D | InspectorCanvasAgent.h | 86 …s::TraceLogId&, int, int, const String*, RefPtr<TypeBuilder::Runtime::RemoteObject>&, RefPtr<TypeB…
|
D | InspectorCanvasAgent.cpp | 55 using WebCore::TypeBuilder::Runtime::RemoteObject; 184 …, int callIndex, int argumentIndex, const String* objectGroup, RefPtr<RemoteObject>& result, RefPt… in evaluateTraceLogCallArgument()
|
D | InspectorDebuggerAgent.h | 123 RefPtr<TypeBuilder::Runtime::RemoteObject>& result, 126 …l* doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeB…
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/ |
D | ObjectStore.java | 83 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()
|
D | RemoteObject.java | 46 public class RemoteObject implements InvocationHandler { class 76 public RemoteObject(ObjectStore store, HostedConnection client){ in RemoteObject() method in RemoteObject
|