OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:remoteObject
(Results
1 - 2
of
2
) 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
...]
/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
...]
Completed in 191 milliseconds