OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:remoteObject
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ExtensionAuditCategory.js
142
* @param {function(!WebInspector.
RemoteObject
)} callback
148
* @param {!RuntimeAgent.
RemoteObject
} result
155
var object = WebInspector.
RemoteObject
.fromPayload(result);
172
function onEvaluate(
remoteObject
)
174
var section = new WebInspector.ObjectPropertiesSection(
remoteObject
, title);
205
* @param {!WebInspector.
RemoteObject
}
remoteObject
207
function onEvaluate(
remoteObject
)
209
remoteObject
.pushNodeToFrontend(onNodeAvailable);
ElementsPanelDescriptor.js
48
if (target instanceof WebInspector.
RemoteObject
) {
49
var
remoteObject
= /** @type {!WebInspector.
RemoteObject
} */ (target);
50
if (
remoteObject
.subtype !== "node")
EventListenersSidebarPane.js
178
WebInspector.ObjectPropertiesSection.call(this, WebInspector.
RemoteObject
.fromPrimitiveValue(""));
194
* @param {?WebInspector.
RemoteObject
} nodeObject
210
var
remoteObject
= WebInspector.
RemoteObject
.fromPayload(this.eventListener.handler);
211
properties.push(new WebInspector.RemoteObjectProperty("handler",
remoteObject
));
222
WebInspector.
RemoteObject
.resolveNode(this.eventListener.node, WebInspector.EventListenersSidebarPane._objectGroupName, updateWithNodeObject.bind(this));
SourcesPanelDescriptor.js
49
if (!hasApplicableItems && target instanceof WebInspector.
RemoteObject
) {
50
var
remoteObject
= /** @type {!WebInspector.
RemoteObject
} */ (target);
51
if (
remoteObject
.type !== "function")
ObjectPropertiesSection.js
30
* @param {!WebInspector.
RemoteObject
} object
91
WebInspector.
RemoteObject
.loadFromObject(this.object, !!this.ignoreHasOwnProperty, callback.bind(this));
162
var propertyValue = /** @type {!WebInspector.
RemoteObject
} */ (this.property.value);
432
* @param {?WebInspector.
RemoteObject
} result
451
* @param {!WebInspector.
RemoteObject
} value
480
WebInspector.
RemoteObject
.loadFromObjectPerProto(value, callback);
490
* @param {?WebInspector.
RemoteObject
} value
547
* @param {!WebInspector.
RemoteObject
} object
549
* @param {function(?WebInspector.
RemoteObject
, boolean=)} callback
572
* @param {!WebInspector.
RemoteObject
} remoteObjec
[
all
...]
RemoteObject.js
40
WebInspector.
RemoteObject
= function(objectId, type, subtype, value, description, preview)
61
* @return {!WebInspector.
RemoteObject
}
63
WebInspector.
RemoteObject
.fromPrimitiveValue = function(value)
65
return new WebInspector.
RemoteObject
(undefined, typeof value, undefined, value);
70
* @return {!WebInspector.
RemoteObject
}
72
WebInspector.
RemoteObject
.fromLocalObject = function(value)
80
* @param {function(?WebInspector.
RemoteObject
)} callback
82
WebInspector.
RemoteObject
.resolveNode = function(node, objectGroup, callback)
86
* @param {!RuntimeAgent.
RemoteObject
} object
96
callback(WebInspector.
RemoteObject
.fromPayload(object))
[
all
...]
ElementsPanel.js
480
WebInspector.
RemoteObject
.resolveNode(node, "", resolvedNode);
[
all
...]
CanvasProfileView.js
544
* @param {!RuntimeAgent.
RemoteObject
=} result
565
showCallback(WebInspector.
RemoteObject
.fromPayload(result), false, this._popoverAnchorElement);
586
* @param {!WebInspector.
RemoteObject
} object
[
all
...]
SourcesPanel.js
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.cpp
76
RefPtr<TypeBuilder::Runtime::
RemoteObject
>
remoteObject
= TypeBuilder::Runtime::
RemoteObject
::runtimeCast(object);
77
inspectorAgent->inspect(
remoteObject
, hints->asObject());
InjectedScriptCanvasModule.cpp
43
using WebCore::TypeBuilder::Runtime::
RemoteObject
;
191
void InjectedScriptCanvasModule::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String& objectGroup, RefPtr<
RemoteObject
>* result, RefPtr<ResourceState>* resourceState)
206
RefPtr<JSONObject>
remoteObject
= resultObject->getObject("result");
207
if (
remoteObject
)
208
*result =
RemoteObject
::runtimeCast(
remoteObject
);
212
if (!
remoteObject
&& !resourceStateObject)
InjectedScriptSource.js
144
* @return {!RuntimeAgent.
RemoteObject
}
155
* @return {!RuntimeAgent.
RemoteObject
}
165
return /** @type {!RuntimeAgent.
RemoteObject
} */ (result);
172
* @return {!RuntimeAgent.
RemoteObject
}
233
* @return {!RuntimeAgent.
RemoteObject
}
239
return new InjectedScript.
RemoteObject
(object, objectGroupName, forceValueType, generatePreview, columnNames, isTable);
246
return new InjectedScript.
RemoteObject
(description);
586
var
remoteObject
= this._wrapObject(value, objectGroup);
588
remoteObject
.description = toStringDescription(value);
590
return { wasThrown: true, result:
remoteObject
};
[
all
...]
InjectedScriptCanvasModuleSource.js
[
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 169 milliseconds