HomeSort by relevance Sort by last modified time
    Searched refs:RemoteObject (Results 1 - 25 of 62) sorted by null

1 2 3

  /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);
InspectorAgent.h 89 void inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints);
105 pair<RefPtr<TypeBuilder::Runtime::RemoteObject>, RefPtr<JSONObject> > m_pendingInspectData;
InspectorRuntimeAgent.h 66 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
75 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
InjectedScriptBase.cpp 41 using WebCore::TypeBuilder::Runtime::RemoteObject;
117 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown)
141 *objectResult = TypeBuilder::Runtime::RemoteObject::runtimeCast(resultObj);
InjectedScriptBase.h 64 void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
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)
InjectedScriptHost.cpp 76 RefPtr<TypeBuilder::Runtime::RemoteObject> remoteObject = TypeBuilder::Runtime::RemoteObject::runtimeCast(object);
77 inspectorAgent->inspect(remoteObject, hints->asObject());
InjectedScriptCanvasModule.h 63 void evaluateTraceLogCallArgument(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, int, int, const String&, RefPtr<TypeBuilder::Runtime::RemoteObject>*, RefPtr<TypeBuilder::Canvas::ResourceState>*);
InspectorHeapProfilerAgent.h 72 virtual void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result);
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)
ConsoleMessage.cpp 210 RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject> > jsonArgs = TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject>::create();
214 RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapTable(table, columns);
222 RefPtr<TypeBuilder::Runtime::RemoteObject> inspectorValue = injectedScript.wrapObject(m_arguments->argumentAt(i), "console", generatePreview);
InspectorCanvasAgent.h 86 virtual void evaluateTraceLogCallArgument(ErrorString*, const TypeBuilder::Canvas::TraceLogId&, int, int, const String*, RefPtr<TypeBuilder::Runtime::RemoteObject>&, RefPtr<TypeBuilder::Canvas::ResourceState>&);
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)
InspectorDebuggerAgent.h 116 RefPtr<TypeBuilder::Runtime::RemoteObject>& result,
119 void runScript(ErrorString*, const TypeBuilder::Debugger::ScriptId&, const int* executionContextId, const String* objectGroup, const bool* doNotPauseOnExceptionsAndMuteConsole, RefPtr<TypeBuilder::Runtime::RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown);
InspectorAgent.cpp 162 void InspectorAgent::inspect(PassRefPtr<TypeBuilder::Runtime::RemoteObject> objectToInspect, PassRefPtr<JSONObject> hints)
  /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...]
PropertiesSidebarPane.js 51 WebInspector.RemoteObject.resolveNode(node, WebInspector.PropertiesSidebarPane._objectGroupName, nodeResolved.bind(this));
ExtensionPanel.js 156 this._setObject(WebInspector.RemoteObject.fromLocalObject(object), title, callback);
201 * @param {RuntimeAgent.RemoteObject} result
209 this._setObject(WebInspector.RemoteObject.fromPayload(result), title, callback);
225 * @param {WebInspector.RemoteObject} object
ScopeChainSidebarPane.js 81 extraProperties = [ new WebInspector.RemoteObjectProperty("this", WebInspector.RemoteObject.fromPayload(callFrame.this)) ];
87 var exceptionObject = /** @type {RuntimeAgent.RemoteObject} */ (exception);
88 extraProperties.push(new WebInspector.RemoteObjectProperty("<exception>", WebInspector.RemoteObject.fromPayload(exceptionObject)));
RequestJSONView.js 97 var obj = WebInspector.RemoteObject.fromLocalObject(this._parsedJSON.data);
EventListenersSidebarPane.js 178 WebInspector.ObjectPropertiesSection.call(this, WebInspector.RemoteObject.fromPrimitiveValue(""));
206 var remoteObject = WebInspector.RemoteObject.fromPayload(this.eventListener.handler);
207 properties.push(new WebInspector.RemoteObjectProperty("handler", remoteObject));
218 WebInspector.RemoteObject.resolveNode(this.eventListener.node, WebInspector.EventListenersSidebarPane._objectGroupName, updateWithNodeObject.bind(this));
IndexedDBModel.js 379 var key = WebInspector.RemoteObject.fromPayload(dataEntries[i].key);
380 var primaryKey = WebInspector.RemoteObject.fromPayload(dataEntries[i].primaryKey);
381 var value = WebInspector.RemoteObject.fromPayload(dataEntries[i].value);
396 * @param {WebInspector.RemoteObject} key
397 * @param {WebInspector.RemoteObject} primaryKey
398 * @param {WebInspector.RemoteObject} value
ExtensionAuditCategory.js 141 * @param {function(WebInspector.RemoteObject)} callback
147 * @param {?RuntimeAgent.RemoteObject} result
154 var object = WebInspector.RemoteObject.fromPayload(result);
171 function onEvaluate(remoteObject)
173 var section = new WebInspector.ObjectPropertiesSection(remoteObject, title);
204 * @param {WebInspector.RemoteObject} remoteObject
206 function onEvaluate(remoteObject)
208 remoteObject.pushNodeToFrontend(onNodeAvailable);
  /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 842 milliseconds

1 2 3