OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RemoteObject
(Results
1 - 17
of
17
) sorted by null
/external/webkit/Source/WebCore/inspector/front-end/
RemoteObject.js
31
WebInspector.
RemoteObject
= function(objectId, type, description, hasChildren)
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.hasChildren);
72
WebInspector.
RemoteObject
.type = function(
remoteObject
)
[
all
...]
PropertiesSidebarPane.js
45
WebInspector.
RemoteObject
.resolveNode(node, nodeResolved.bind(this));
59
var object = WebInspector.
RemoteObject
.fromPayload(objectPayload);
ResourceJSONView.js
70
var obj = WebInspector.
RemoteObject
.fromLocalObject(this._parsedJSON);
ExtensionPanel.js
93
this._setObject(WebInspector.
RemoteObject
.fromLocalObject(object), title);
112
this._setObject(WebInspector.
RemoteObject
.fromPayload(result), title);
ScopeChainSidebarPane.js
75
extraProperties = [ new WebInspector.RemoteObjectProperty("this", WebInspector.
RemoteObject
.fromPayload(scope.this)) ];
96
var section = new WebInspector.ObjectPropertiesSection(WebInspector.
RemoteObject
.fromPayload(scope.object), title, subtitle, emptyPlaceholder, true, extraProperties, WebInspector.ScopeVariableTreeElement);
EventListenersSidebarPane.js
193
var value = WebInspector.
RemoteObject
.fromPrimitiveValue(this.eventListener[propertyName]);
202
WebInspector.
RemoteObject
.resolveNode(node, updateWithNodeObject.bind(this));
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 !== WebInspector.ConsoleMessage.MessageType.Result;
[
all
...]
DOMBreakpointsSidebarPane.js
88
var targetNodeObject = WebInspector.
RemoteObject
.fromPayload(eventData.targetNode);
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")
inspector.js
[
all
...]
ExtensionServer.js
270
var resultObject = WebInspector.
RemoteObject
.fromPayload(resultPayload);
DebuggerPresentationModel.js
701
callback(WebInspector.
RemoteObject
.fromPayload(result));
ElementsTreeOutline.js
437
WebInspector.
RemoteObject
.resolveNode(node, resolvedNode.bind(this));
[
all
...]
ScriptsPanel.js
381
var object = WebInspector.
RemoteObject
.fromPayload(scope.object);
[
all
...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
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);
204
Object invokeRemoteMethod(
RemoteObject
remoteObj, Method method, Object[] args){
260
RemoteObject
remoteObject
= new
RemoteObject
(this, source);
261
remoteObject
.objectId = (short)def.objectId
[
all
...]
RemoteObject.java
46
public class
RemoteObject
implements InvocationHandler {
76
public
RemoteObject
(ObjectStore store, HostedConnection client){
/external/webkit/Source/WebCore/inspector/
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)
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
...]
Completed in 412 milliseconds