HomeSort by relevance Sort by last modified time
    Searched full:remoteobject (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
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...]
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);
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...]
ScopeChainSidebarPane.js 84 extraProperties.push(new WebInspector.RemoteObjectProperty("this", WebInspector.RemoteObject.fromPayload(callFrame.this)));
89 var exceptionObject = /** @type {!RuntimeAgent.RemoteObject} */ (exception);
90 extraProperties.push(new WebInspector.RemoteObjectProperty("<exception>", WebInspector.RemoteObject.fromPayload(exceptionObject)));
93 extraProperties.push(new WebInspector.RemoteObjectProperty("<return>", WebInspector.RemoteObject.fromPayload(callFrame.returnValue)));
ConsoleMessage.js 44 * @param {!Array.<!RuntimeAgent.RemoteObject>=} parameters
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 !== WebInspector.ConsoleMessage.MessageType.Result;
330 else if (output instanceof WebInspector.RemoteObject)
353 * @param {!WebInspector.RemoteObject} obj
363 * @param {!WebInspector.RemoteObject} obj
390 * @param {!WebInspector.RemoteObject} obj
425 * @param {!WebInspector.RemoteObject} objec
    [all...]
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));
RuntimeModel.js 132 * @param {function(?WebInspector.RemoteObject, boolean, ?RuntimeAgent.RemoteObject=)} callback
148 * @param {!RuntimeAgent.RemoteObject} result
161 callback(WebInspector.RemoteObject.fromPayload(result), !!wasThrown);
258 * @param {?WebInspector.RemoteObject} notRelevant
260 * @param {?RuntimeAgent.RemoteObject=} result
ElementsPanelDescriptor.js 48 if (target instanceof WebInspector.RemoteObject) {
49 var remoteObject = /** @type {!WebInspector.RemoteObject} */ (target);
50 if (remoteObject.subtype !== "node")
ExtensionPanel.js 164 this._setObject(WebInspector.RemoteObject.fromLocalObject(object), title, callback);
209 * @param {!RuntimeAgent.RemoteObject} result
217 this._setObject(WebInspector.RemoteObject.fromPayload(result), title, callback);
233 * @param {!WebInspector.RemoteObject} object
SourcesPanelDescriptor.js 49 if (!hasApplicableItems && target instanceof WebInspector.RemoteObject) {
50 var remoteObject = /** @type {!WebInspector.RemoteObject} */ (target);
51 if (remoteObject.type !== "function")
ObjectPopoverHelper.js 36 * @param {function(!Element, function(!WebInspector.RemoteObject, boolean, !Element=):undefined, string):undefined} queryObject
51 * @param {function(!WebInspector.RemoteObject):string} formatter
96 * @param {!WebInspector.RemoteObject} result
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);
399 * @param {!WebInspector.RemoteObject} key
400 * @param {!WebInspector.RemoteObject} primaryKey
401 * @param {!WebInspector.RemoteObject} value
DebuggerModel.js 604 * @param {function(?WebInspector.RemoteObject, boolean, ?RuntimeAgent.RemoteObject=)} callback
609 * @param {?RuntimeAgent.RemoteObject} result
620 callback(WebInspector.RemoteObject.fromPayload(result), !!wasThrown);
652 var object = WebInspector.RemoteObject.fromPayload(scope.object);
877 * @return {!RuntimeAgent.RemoteObject}
885 * @return {!RuntimeAgent.RemoteObject|undefined}
924 * @param {function(?RuntimeAgent.RemoteObject, boolean=)=} callback
931 * @param {!RuntimeAgent.RemoteObject} result
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
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& groupName, bool generatePreview = false) const;
91 PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapTable(const ScriptValue& table, const ScriptValue& columns) const;
92 PassRefPtr<TypeBuilder::Runtime::RemoteObject> wrapNode(Node*, const String& groupName);
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)
InjectedScript.cpp 46 using WebCore::TypeBuilder::Runtime::RemoteObject;
60 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
71 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
82 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
248 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapObject(const ScriptValue& value, const String& groupName, bool generatePreview) const
261 return TypeBuilder::Runtime::RemoteObject::runtimeCast(rawResult);
264 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapTable(const ScriptValue& table, const ScriptValue& columns) const
279 return TypeBuilder::Runtime::RemoteObject::runtimeCast(rawResult);
282 PassRefPtr<TypeBuilder::Runtime::RemoteObject> InjectedScript::wrapNode(Node* node, const String& groupName)
InjectedScriptBase.cpp 42 using WebCore::TypeBuilder::Runtime::RemoteObject;
118 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown)
142 *objectResult = TypeBuilder::Runtime::RemoteObject::runtimeCast(resultObj);
InspectorAgent.h 81 void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints);
91 pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject> > m_pendingInspectData;
InjectedScriptHost.cpp 76 RefPtr<TypeBuilder::Runtime::RemoteObject> remoteObject = TypeBuilder::Runtime::RemoteObject::runtimeCast(object);
77 inspectorAgent->inspect(remoteObject, hints->asObject());
InspectorRuntimeAgent.h 65 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
74 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
ConsoleMessage.cpp 207 RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject> > jsonArgs = TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject>::create();
211 RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapTable(table, columns);
219 RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapObject(m_arguments->argumentAt(i), "console", generatePreview);
InjectedScriptBase.h 64 void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
InspectorRuntimeAgent.cpp 69 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const int* executionContextId, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
88 void InspectorRuntimeAgent::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const RefPtr<JSONArray>* const optionalArguments, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown)
  /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){

Completed in 704 milliseconds

1 2 3 4