Searched refs:ErrorString (Results 1 - 25 of 72) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorPageAgent.h67 typedef String ErrorString; typedef in namespace:WebCore
88 static void resourceContent(ErrorString*, Frame*, const URL&, String* result, bool* base64Encoded);
98 virtual void enable(ErrorString*) override;
99 virtual void disable(ErrorString*) override;
100 virtual void addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* result) override;
101 virtual void removeScriptToEvaluateOnLoad(ErrorString*, const String& identifier) override;
102 virtual void reload(ErrorString*, const bool* optionalIgnoreCache, const String* optionalScriptToEvaluateOnLoad) override;
103 virtual void navigate(ErrorString*, const String& url) override;
104 virtual void getCookies(ErrorString*, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Page::Cookie>>& cookies) override;
105 virtual void deleteCookie(ErrorString*, cons
[all...]
H A DInspectorReplayAgent.h55 typedef String ErrorString; typedef in namespace:WebCore
95 virtual void startCapturing(ErrorString*) override;
96 virtual void stopCapturing(ErrorString*) override;
98 virtual void replayToPosition(ErrorString*, const RefPtr<Inspector::InspectorObject>&, bool shouldFastForward) override;
99 virtual void replayToCompletion(ErrorString*, bool shouldFastForward) override;
100 virtual void pausePlayback(ErrorString*) override;
101 virtual void cancelPlayback(ErrorString*) override;
103 virtual void switchSession(ErrorString*, SessionIdentifier) override;
104 virtual void insertSessionSegment(ErrorString*, SessionIdentifier, SegmentIdentifier, int segmentIndex) override;
105 virtual void removeSessionSegment(ErrorString*, SessionIdentifie
[all...]
H A DInspectorWorkerAgent.h49 typedef String ErrorString; typedef in namespace:WebCore
66 virtual void enable(ErrorString*) override;
67 virtual void disable(ErrorString*) override;
68 virtual void canInspectWorkers(ErrorString*, bool*) override;
69 virtual void connectToWorker(ErrorString*, int workerId) override;
70 virtual void disconnectFromWorker(ErrorString*, int workerId) override;
71 virtual void sendMessageToWorker(ErrorString*, int workerId, const RefPtr<Inspector::InspectorObject>& message) override;
72 virtual void setAutoconnectToWorkers(ErrorString*, bool value) override;
H A DInspectorIndexedDBAgent.h48 typedef String ErrorString; typedef in namespace:WebCore
59 virtual void enable(ErrorString*) override;
60 virtual void disable(ErrorString*) override;
61 virtual void requestDatabaseNames(ErrorString*, const String& securityOrigin, PassRefPtr<RequestDatabaseNamesCallback>) override;
62 virtual void requestDatabase(ErrorString*, const String& securityOrigin, const String& databaseName, PassRefPtr<RequestDatabaseCallback>) override;
63 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<Inspector::InspectorObject>* keyRange, PassRefPtr<RequestDataCallback>) override;
64 virtual void clearObjectStore(ErrorString*, const String& in_securityOrigin, const String& in_databaseName, const String& in_objectStoreName, PassRefPtr<ClearObjectStoreCallback>) override;
H A DInspectorLayerTreeAgent.h47 typedef String ErrorString; typedef in namespace:WebCore
64 virtual void enable(ErrorString*) override;
65 virtual void disable(ErrorString*) override;
66 virtual void layersForNode(ErrorString*, int nodeId, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::LayerTree::Layer>>&) override;
67 virtual void reasonsForCompositingLayer(ErrorString*, const String& layerId, RefPtr<Inspector::TypeBuilder::LayerTree::CompositingReasons>&) override;
74 void gatherLayersUsingRenderObjectHierarchy(ErrorString*, RenderObject*, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::LayerTree::Layer>>&);
75 void gatherLayersUsingRenderLayerHierarchy(ErrorString*, RenderLayer*, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::LayerTree::Layer>>&);
77 PassRefPtr<Inspector::TypeBuilder::LayerTree::Layer> buildObjectForLayer(ErrorString*, RenderLayer*);
80 int idForNode(ErrorString*, Node*);
H A DWorkerConsoleAgent.cpp46 void WorkerConsoleAgent::addInspectedNode(ErrorString* error, int)
H A DInspectorDOMDebuggerAgent.h54 typedef String ErrorString; typedef in namespace:WebCore
64 virtual void setXHRBreakpoint(ErrorString*, const String& url) override;
65 virtual void removeXHRBreakpoint(ErrorString*, const String& url) override;
66 virtual void setEventListenerBreakpoint(ErrorString*, const String& eventName) override;
67 virtual void removeEventListenerBreakpoint(ErrorString*, const String& eventName) override;
68 virtual void setInstrumentationBreakpoint(ErrorString*, const String& eventName) override;
69 virtual void removeInstrumentationBreakpoint(ErrorString*, const String& eventName) override;
70 virtual void setDOMBreakpoint(ErrorString*, int nodeId, const String& type) override;
71 virtual void removeDOMBreakpoint(ErrorString*, int nodeId, const String& type) override;
99 void setBreakpoint(ErrorString*, cons
[all...]
H A DPageConsoleAgent.h52 virtual void clearMessages(ErrorString*) override;
53 virtual void addInspectedNode(ErrorString*, int nodeId) override;
H A DInspectorDOMAgent.h78 typedef String ErrorString; typedef in namespace:WebCore
121 virtual void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId) override;
122 virtual void querySelectorAll(ErrorString*, int nodeId, const String& selectors, RefPtr<Inspector::TypeBuilder::Array<int>>& result) override;
123 virtual void getDocument(ErrorString*, RefPtr<Inspector::TypeBuilder::DOM::Node>& root) override;
124 virtual void requestChildNodes(ErrorString*, int nodeId, const int* depth) override;
125 virtual void setAttributeValue(ErrorString*, int elementId, const String& name, const String& value) override;
126 virtual void setAttributesAsText(ErrorString*, int elementId, const String& text, const String* name) override;
127 virtual void removeAttribute(ErrorString*, int elementId, const String& name) override;
128 virtual void removeNode(ErrorString*, int nodeId) override;
129 virtual void setNodeName(ErrorString*, in
[all...]
H A DDOMEditor.h47 typedef String ErrorString; typedef in namespace:WebCore
64 bool insertBefore(Node* parentNode, PassRefPtr<Node>, Node* anchorNode, ErrorString*);
65 bool removeChild(Node* parentNode, Node*, ErrorString*);
66 bool setAttribute(Element*, const String& name, const String& value, ErrorString*);
67 bool removeAttribute(Element*, const String& name, ErrorString*);
68 bool setOuterHTML(Node&, const String& html, Node** newNode, ErrorString*);
69 bool replaceWholeText(Text*, const String& text, ErrorString*);
H A DInspectorDOMStorageAgent.h52 typedef String ErrorString; typedef in namespace:WebCore
64 virtual void enable(ErrorString*) override;
65 virtual void disable(ErrorString*) override;
66 virtual void getDOMStorageItems(ErrorString*, const RefPtr<Inspector::InspectorObject>& storageId, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Array<String>>>& items) override;
67 virtual void setDOMStorageItem(ErrorString*, const RefPtr<Inspector::InspectorObject>& storageId, const String& key, const String& value) override;
68 virtual void removeDOMStorageItem(ErrorString*, const RefPtr<Inspector::InspectorObject>& storageId, const String& key) override;
78 PassRefPtr<StorageArea> findStorageArea(ErrorString*, const RefPtr<Inspector::InspectorObject>&, Frame*&);
H A DInspectorDatabaseAgent.h50 typedef String ErrorString; typedef in namespace:WebCore
64 virtual void enable(ErrorString*) override;
65 virtual void disable(ErrorString*) override;
66 virtual void getDatabaseTableNames(ErrorString*, const String& databaseId, RefPtr<Inspector::TypeBuilder::Array<String>>& names) override;
67 virtual void executeSQL(ErrorString*, const String& databaseId, const String& query, PassRefPtr<ExecuteSQLCallback>) override;
H A DInspectorResourceAgent.h76 typedef String ErrorString; typedef in namespace:WebCore
126 virtual void enable(ErrorString*) override;
127 virtual void disable(ErrorString*) override;
128 virtual void setExtraHTTPHeaders(ErrorString*, const RefPtr<Inspector::InspectorObject>&) override;
129 virtual void getResponseBody(ErrorString*, const String& requestId, String* content, bool* base64Encoded) override;
130 virtual void replayXHR(ErrorString*, const String& requestId) override;
131 virtual void canClearBrowserCache(ErrorString*, bool*) override;
132 virtual void clearBrowserCache(ErrorString*) override;
133 virtual void canClearBrowserCookies(ErrorString*, bool*) override;
134 virtual void clearBrowserCookies(ErrorString*) overrid
[all...]
H A DWorkerRuntimeAgent.h41 typedef String ErrorString; typedef in namespace:WebCore
51 virtual void run(ErrorString*) override;
57 virtual Inspector::InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
H A DInspectorApplicationCacheAgent.h50 typedef String ErrorString; typedef in namespace:WebCore
64 virtual void enable(ErrorString*) override;
65 virtual void getFramesWithManifests(ErrorString*, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::ApplicationCache::FrameWithManifest>>& result) override;
66 virtual void getManifestForFrame(ErrorString*, const String& frameId, String* manifestURL) override;
67 virtual void getApplicationCacheForFrame(ErrorString*, const String& frameId, RefPtr<Inspector::TypeBuilder::ApplicationCache::ApplicationCache>&) override;
74 DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId);
H A DInspectorCSSAgent.h101 virtual void enable(ErrorString*) override;
102 virtual void disable(ErrorString*) override;
112 virtual void getComputedStyleForNode(ErrorString*, int nodeId, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::CSS::CSSComputedStyleProperty>>&) override;
113 virtual void getInlineStylesForNode(ErrorString*, int nodeId, RefPtr<Inspector::TypeBuilder::CSS::CSSStyle>& inlineStyle, RefPtr<Inspector::TypeBuilder::CSS::CSSStyle>& attributes) override;
114 virtual void getMatchedStylesForNode(ErrorString*, int nodeId, const bool* includePseudo, const bool* includeInherited, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::CSS::RuleMatch>>& matchedCSSRules, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::CSS::PseudoIdMatches>>& pseudoIdMatches, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::CSS::InheritedStyleEntry>>& inheritedEntries) override;
115 virtual void getAllStyleSheets(ErrorString*, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::CSS::CSSStyleSheetHeader>>& styleSheetInfos) override;
116 virtual void getStyleSheet(ErrorString*, const String& styleSheetId, RefPtr<Inspector::TypeBuilder::CSS::CSSStyleSheetBody>& result) override;
117 virtual void getStyleSheetText(ErrorString*, const String& styleSheetId, String* result) override;
118 virtual void setStyleSheetText(ErrorString*, const String& styleSheetId, const String& text) override;
119 virtual void setStyleText(ErrorString*, cons
[all...]
H A DPageRuntimeAgent.h53 typedef String ErrorString; typedef in namespace:WebCore
63 virtual void enable(ErrorString*) override;
64 virtual void disable(ErrorString*) override;
71 virtual Inspector::InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
H A DWorkerConsoleAgent.h50 virtual void addInspectedNode(ErrorString*, int nodeId) override;
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/agents/
H A DJSGlobalObjectConsoleAgent.cpp38 void JSGlobalObjectConsoleAgent::setMonitoringXHREnabled(ErrorString* errorString, bool)
43 void JSGlobalObjectConsoleAgent::addInspectedNode(ErrorString* errorString, int)
H A DJSGlobalObjectConsoleAgent.h44 virtual void setMonitoringXHREnabled(ErrorString*, bool enabled) override;
45 virtual void addInspectedNode(ErrorString*, int nodeId) override;
H A DInspectorRuntimeAgent.h53 typedef String ErrorString; typedef in namespace:Inspector
60 virtual void enable(ErrorString*) override { m_enabled = true; }
61 virtual void disable(ErrorString*) override { m_enabled = false; }
62 virtual void parse(ErrorString*, const String& expression, Inspector::TypeBuilder::Runtime::SyntaxErrorType::Enum* result, Inspector::TypeBuilder::OptOutput<String>* message, RefPtr<Inspector::TypeBuilder::Runtime::ErrorRange>&) override final;
63 virtual void evaluate(ErrorString*, const String& expression, const String* objectGroup, const bool* includeCommandLineAPI, const bool* doNotPauseOnExceptionsAndMuteConsole, const int* executionContextId, const bool* returnByValue, const bool* generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) override final;
64 virtual void callFunctionOn(ErrorString*, const String& objectId, const String& expression, const RefPtr<Inspector::InspectorArray>* optionalArguments, const bool* doNotPauseOnExceptionsAndMuteConsole, const bool* returnByValue, const bool* generatePreview, RefPtr<Inspector::TypeBuilder::Runtime::RemoteObject>& result, Inspector::TypeBuilder::OptOutput<bool>* wasThrown) override final;
65 virtual void releaseObject(ErrorString*, const ErrorString& objectId) override final;
66 virtual void getProperties(ErrorString*, const String& objectId, const bool* ownProperties, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Runtime::PropertyDescriptor>>& result, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Runtime::InternalPropertyDescriptor>>& internalProperties) override final;
67 virtual void releaseObjectGroup(ErrorString*, cons
[all...]
H A DInspectorDebuggerAgent.h58 typedef String ErrorString; typedef in namespace:Inspector
71 virtual void enable(ErrorString*) override;
72 virtual void disable(ErrorString*) override;
73 virtual void setBreakpointsActive(ErrorString*, bool active) override;
74 virtual void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optionalURL, const String* optionalURLRegex, const int* optionalColumnNumber, const RefPtr<Inspector::InspectorObject>* options, Inspector::TypeBuilder::Debugger::BreakpointId*, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::Debugger::Location>>& locations) override;
75 virtual void setBreakpoint(ErrorString*, const RefPtr<Inspector::InspectorObject>& location, const RefPtr<Inspector::InspectorObject>* options, Inspector::TypeBuilder::Debugger::BreakpointId*, RefPtr<Inspector::TypeBuilder::Debugger::Location>& actualLocation) override;
76 virtual void removeBreakpoint(ErrorString*, const String& breakpointIdentifier) override;
77 virtual void continueToLocation(ErrorString*, const RefPtr<InspectorObject>& location) override;
78 virtual void searchInContent(ErrorString*, const String& scriptID, const String& query, const bool* optionalCaseSensitive, const bool* optionalIsRegex, RefPtr<Inspector::TypeBuilder::Array<Inspector::TypeBuilder::GenericTypes::SearchMatch>>&) override;
79 virtual void getScriptSource(ErrorString*, cons
[all...]
H A DInspectorProfilerAgent.h52 typedef String ErrorString; typedef in namespace:Inspector
63 virtual void enable(ErrorString*) override final;
64 virtual void disable(ErrorString*) override final;
66 virtual void start(ErrorString* = nullptr) override final;
67 virtual void stop(ErrorString* = nullptr) override final;
69 virtual void clearProfiles(ErrorString*) override final { reset(); }
71 virtual void getProfileHeaders(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Profiler::ProfileHeader>>&) override final;
72 virtual void getCPUProfile(ErrorString*, int uid, RefPtr<TypeBuilder::Profiler::CPUProfile>&) override final;
73 virtual void removeProfile(ErrorString*, const String& type, int uid) override final;
H A DInspectorConsoleAgent.h51 typedef String ErrorString; typedef in namespace:Inspector
63 virtual void enable(ErrorString*) override;
64 virtual void disable(ErrorString*) override;
65 virtual void clearMessages(ErrorString*) override;
66 virtual void setMonitoringXHREnabled(ErrorString*, bool enabled) = 0;
67 virtual void addInspectedNode(ErrorString*, int nodeId) = 0;
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DInjectedScript.h59 void evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
60 void callFunctionOn(ErrorString*, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
61 void evaluateOnCallFrame(ErrorString*, const Deprecated::ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
62 void getFunctionDetails(ErrorString*, const String& functionId, RefPtr<TypeBuilder::Debugger::FunctionDetails>* result);
63 void getProperties(ErrorString*, const String& objectId, bool ownProperties, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor>>* result);
64 void getInternalProperties(ErrorString*, const String& objectId, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor>>* result);

Completed in 100 milliseconds

123