/external/webkit/Source/WebCore/inspector/front-end/ |
D | RemoteObject.js | 31 WebInspector.RemoteObject = function(objectId, type, description, hasChildren) class in WebInspector 39 WebInspector.RemoteObject.fromPrimitiveValue = function(value) 41 return new WebInspector.RemoteObject(null, typeof value, value); 44 WebInspector.RemoteObject.fromLocalObject = function(value) 49 WebInspector.RemoteObject.resolveNode = function(node, callback) 59 callback(WebInspector.RemoteObject.fromPayload(object)); 64 WebInspector.RemoteObject.fromPayload = function(payload) 67 …return new WebInspector.RemoteObject(payload.objectId, payload.type, payload.description, payload.… 72 WebInspector.RemoteObject.type = function(remoteObject) 84 WebInspector.RemoteObject.prototype = { [all …]
|
D | PropertiesSidebarPane.js | 45 WebInspector.RemoteObject.resolveNode(node, nodeResolved.bind(this)); 59 var object = WebInspector.RemoteObject.fromPayload(objectPayload);
|
D | ExtensionPanel.js | 93 this._setObject(WebInspector.RemoteObject.fromLocalObject(object), title); 112 this._setObject(WebInspector.RemoteObject.fromPayload(result), title);
|
D | ScopeChainSidebarPane.js | 75 …erties = [ new WebInspector.RemoteObjectProperty("this", WebInspector.RemoteObject.fromPayload(sco… 96 …var section = new WebInspector.ObjectPropertiesSection(WebInspector.RemoteObject.fromPayload(scope…
|
D | ResourceJSONView.js | 70 var obj = WebInspector.RemoteObject.fromLocalObject(this._parsedJSON);
|
D | EventListenersSidebarPane.js | 193 … var value = WebInspector.RemoteObject.fromPrimitiveValue(this.eventListener[propertyName]); 202 WebInspector.RemoteObject.resolveNode(node, updateWithNodeObject.bind(this));
|
D | ConsoleView.js | 556 callback(WebInspector.RemoteObject.fromPayload(result)); 595 var type = (forceObjectFormat ? "object" : WebInspector.RemoteObject.type(output)); 686 return this._format(output, WebInspector.RemoteObject.type(output) === "array"); 821 parameters[i] = WebInspector.RemoteObject.fromPayload(parameters[i]); 823 parameters[i] = WebInspector.RemoteObject.fromPrimitiveValue(parameters[i]); 827 …var shouldFormatMessage = WebInspector.RemoteObject.type(parameters[0]) === "string" && this.type …
|
D | utilities.js | 881 … if (typeof substitution == "object" && WebInspector.RemoteObject.type(substitution) === "number") 889 … if (typeof substitution == "object" && WebInspector.RemoteObject.type(substitution) === "number") 899 … if (typeof substitution == "object" && WebInspector.RemoteObject.type(substitution) !== "null")
|
D | DOMBreakpointsSidebarPane.js | 88 var targetNodeObject = WebInspector.RemoteObject.fromPayload(eventData.targetNode);
|
D | inspector.js | 1052 return WebInspector.ConsoleMessage && WebInspector.RemoteObject && self.console; 1092 message = new WebInspector.RemoteObject.fromPrimitiveValue(message); 1161 var object = WebInspector.RemoteObject.fromPayload(payload);
|
D | ExtensionServer.js | 270 var resultObject = WebInspector.RemoteObject.fromPayload(resultPayload);
|
D | DebuggerPresentationModel.js | 701 callback(WebInspector.RemoteObject.fromPayload(result));
|
D | ScriptsPanel.js | 381 var object = WebInspector.RemoteObject.fromPayload(scope.object);
|
D | ElementsTreeOutline.js | 437 WebInspector.RemoteObject.resolveNode(node, resolvedNode.bind(this));
|
/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
|
/external/webkit/Source/WebCore/inspector/ |
D | InjectedScriptSource.js | 110 return InjectedScript.RemoteObject.fromObject(object, objectId); 112 return InjectedScript.RemoteObject.fromObject("[ Exception: " + e.toString() + " ]"); 167 property.value = new InjectedScript.RemoteObject.fromException(e); 171 property.value = new InjectedScript.RemoteObject.fromObject("\u2014"); // em dash 267 return InjectedScript.RemoteObject.fromException(e); 444 InjectedScript.RemoteObject = function(objectId, type, description, hasChildren) class in InjectedScript 454 InjectedScript.RemoteObject.fromException = function(e) 456 return new InjectedScript.RemoteObject(null, "error", e.toString()); 459 InjectedScript.RemoteObject.fromObject = function(object, objectId) 467 return new InjectedScript.RemoteObject(objectId, type, description, hasChildren); [all …]
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 20879 …* inspector/front-end/RemoteObject.js: Added a wrapper for local JSON object to simulate RemoteObj… 20880 (WebInspector.RemoteObject.fromLocalObject): 76433 * inspector/front-end/RemoteObject.js: 76434 (WebInspector.RemoteObject.prototype.getProperties): 76435 (WebInspector.RemoteObject.prototype.setPropertyValue): 76436 (WebInspector.RemoteObject.prototype.pushNodeToFrontend): 77219 * inspector/front-end/RemoteObject.js: 77221 (WebInspector.RemoteObject.resolveNode): 79899 * inspector/front-end/RemoteObject.js: Added. 79901 (WebInspector.RemoteObject): [all …]
|
D | ChangeLog | 32073 * inspector/front-end/RemoteObject.js: 32074 (WebInspector.RemoteObject.prototype.getOwnProperties): 32075 (WebInspector.RemoteObject.prototype.getAllProperties): 32076 (WebInspector.RemoteObject.prototype._getProperties): 38427 * inspector/front-end/RemoteObject.js: 40590 * inspector/front-end/RemoteObject.js: 40591 (WebInspector.RemoteObject.resolveNode): 46699 * inspector/front-end/RemoteObject.js: 46700 (WebInspector.RemoteObject.prototype.setPropertyValue): 46701 (WebInspector.RemoteObject.prototype.evaluate): [all …]
|
D | ChangeLog-2011-02-16 | 186 * inspector/front-end/RemoteObject.js: 187 (WebInspector.RemoteObject.resolveNode): 188 (WebInspector.RemoteObject.prototype.getProperties): 189 (WebInspector.RemoteObject.prototype.setPropertyValue): 190 (WebInspector.RemoteObject.prototype.pushNodeToFrontend): 23544 * inspector/front-end/RemoteObject.js: 23545 (WebInspector.RemoteObject.resolveNode): 23546 (WebInspector.RemoteObject.prototype.getProperties): 23547 (WebInspector.RemoteObject.prototype.setPropertyValue): 23548 (WebInspector.RemoteObject.prototype.pushNodeToFrontend):
|
D | WebCore.gypi | 6241 'inspector/front-end/RemoteObject.js',
|
/external/dbus/ |
D | ChangeLog.pre-1-0 | 5066 (RemoteObject): Renamed to ProxyObject 6546 - class RemoteObject (__call__): get an append iterator
|
/external/jmonkeyengine/ |
D | NOTICE | 6233 ==> engine/src/networking/com/jme3/network/rmi/RemoteObject.java <==
|