HomeSort by relevance Sort by last modified time
    Searched refs:ErrorString (Results 26 - 50 of 98) sorted by null

12 3 4

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
PageRuntimeAgent.h 54 virtual void enable(ErrorString*) OVERRIDE;
55 virtual void run(ErrorString*) OVERRIDE;
64 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
InspectorTracingAgent.h 35 virtual void start(ErrorString*, const String& categoryFilter, const String&, const double*) OVERRIDE;
36 virtual void end(ErrorString*);
PageConsoleAgent.h 60 virtual void clearMessages(ErrorString*) OVERRIDE;
61 virtual void addInspectedNode(ErrorString*, int nodeId) OVERRIDE;
InspectorCSSAgent.h 117 virtual void enable(ErrorString*, PassRefPtrWillBeRawPtr<EnableCallback>) OVERRIDE;
118 virtual void disable(ErrorString*) OVERRIDE;
129 virtual void getComputedStyleForNode(ErrorString*, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> >&) OVERRIDE;
130 virtual void getPlatformFontsForNode(ErrorString*, int nodeId, String* cssFamilyName, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PlatformFontUsage> >&) OVERRIDE;
131 virtual void getInlineStylesForNode(ErrorString*, int nodeId, RefPtr<TypeBuilder::CSS::CSSStyle>& inlineStyle, RefPtr<TypeBuilder::CSS::CSSStyle>& attributes) OVERRIDE;
132 virtual void getMatchedStylesForNode(ErrorString*, int nodeId, const bool* excludePseudo, const bool* excludeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >&, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries) OVERRIDE;
133 virtual void getStyleSheetText(ErrorString*, const String& styleSheetId, String* result) OVERRIDE;
134 virtual void setStyleSheetText(ErrorString*, const String& styleSheetId, const String& text) OVERRIDE;
136 virtual void setPropertyText(ErrorString*, const String& styleSheetId, const RefPtr<JSONObject>& range, const String& text, RefPtr<TypeBuilder::CSS::CSSStyle>& result) OVERRIDE;
137 virtual void setRuleSelector(ErrorString*, const String& styleSheetId, const RefPtr<JSONObject>& range, const String& selector, RefPtr<Type (…)
    [all...]
InspectorInspectorAgent.h 49 typedef String ErrorString;
63 virtual void enable(ErrorString*) OVERRIDE;
64 virtual void disable(ErrorString*) OVERRIDE;
65 virtual void reset(ErrorString*) OVERRIDE;
WorkerConsoleAgent.cpp 53 void WorkerConsoleAgent::addInspectedNode(ErrorString* error, int)
WorkerRuntimeAgent.cpp 69 void WorkerRuntimeAgent::enable(ErrorString* errorString)
74 InspectorRuntimeAgent::enable(errorString);
78 InjectedScript WorkerRuntimeAgent::injectedScriptForEval(ErrorString* error, const int* executionContextId)
99 void WorkerRuntimeAgent::run(ErrorString*)
104 void WorkerRuntimeAgent::isRunRequired(ErrorString*, bool* out_result)
InspectorCanvasAgent.cpp 97 ErrorString error;
102 void InspectorCanvasAgent::enable(ErrorString*)
112 void InspectorCanvasAgent::disable(ErrorString*)
122 void InspectorCanvasAgent::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId)
124 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId);
126 module.dropTraceLog(errorString, traceLogId);
129 void InspectorCanvasAgent::hasUninstrumentedCanvases(ErrorString* errorString, bool* result)
131 if (!checkIsEnabled(errorString))
    [all...]
InjectedScriptBase.h 44 typedef String ErrorString;
69 void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* = 0);
PageDebuggerAgent.h 76 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
77 virtual void setOverlayMessage(ErrorString*, const String*) OVERRIDE;
InspectorMemoryAgent.cpp 43 void InspectorMemoryAgent::getDOMCounters(ErrorString*, int* documents, int* nodes, int* jsEventListeners)
WorkerConsoleAgent.h 57 virtual void addInspectedNode(ErrorString*, int nodeId) OVERRIDE;
InjectedScriptCanvasModule.cpp 97 void InjectedScriptCanvasModule::captureFrame(ErrorString* errorString, TraceLogId* traceLogId)
99 callStartCapturingFunction("captureFrame", errorString, traceLogId);
102 void InjectedScriptCanvasModule::startCapturing(ErrorString* errorString, TraceLogId* traceLogId)
104 callStartCapturingFunction("startCapturing", errorString, traceLogId);
107 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId)
113 *errorString = "Internal error: " + functionName;
116 void InjectedScriptCanvasModule::stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId
    [all...]
InspectorHeapProfilerAgent.cpp 94 ErrorString error;
106 void InspectorHeapProfilerAgent::collectGarbage(blink::ErrorString*)
152 void InspectorHeapProfilerAgent::startTrackingHeapObjects(ErrorString*, const bool* trackAllocations)
179 void InspectorHeapProfilerAgent::stopTrackingHeapObjects(ErrorString* error, const bool* reportProgress)
210 void InspectorHeapProfilerAgent::enable(ErrorString*)
215 void InspectorHeapProfilerAgent::disable(ErrorString* error)
222 void InspectorHeapProfilerAgent::takeHeapSnapshot(ErrorString* errorString, const bool* reportProgress)
257 *errorString = "Failed to take heap snapshot";
281 void InspectorHeapProfilerAgent::getObjectByHeapObjectId(ErrorString* error, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime (…)
    [all...]
InspectorInspectorAgent.cpp 111 ErrorString error;
115 void InspectorInspectorAgent::enable(ErrorString*)
127 void InspectorInspectorAgent::disable(ErrorString*)
132 void InspectorInspectorAgent::reset(ErrorString*)
InspectorRuntimeAgent.cpp 78 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, RefPtr<TypeBuilder::Debugger::ExceptionDetails>& exceptionDetails)
80 InjectedScript injectedScript = injectedScriptForEval(errorString, executionContextId);
89 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, wasThrown, &exceptionDetails);
97 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)
101 *errorString = "Inspected frame has gone";
114 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
122 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<Typ (…)
    [all...]
PageDebuggerAgent.cpp 110 ErrorString error;
116 ErrorString error;
120 InjectedScript PageDebuggerAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId)
128 *errorString = "Execution context with given id not found.";
132 void PageDebuggerAgent::setOverlayMessage(ErrorString*, const String* message)
WorkerDebuggerAgent.h 60 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
InspectorProfilerAgent.cpp 148 void InspectorProfilerAgent::enable(ErrorString*)
159 void InspectorProfilerAgent::disable(ErrorString*)
175 void InspectorProfilerAgent::setSamplingInterval(ErrorString* error, int interval)
193 ErrorString error;
205 ErrorString error;
210 void InspectorProfilerAgent::start(ErrorString* error)
226 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>& profile)
228 stop(errorString, &profile);
231 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>* profile
    [all...]
InspectorTracingAgent.cpp 42 void InspectorTracingAgent::start(ErrorString*, const String& categoryFilter, const String&, const double*)
52 void InspectorTracingAgent::end(ErrorString* errorString)
PageConsoleAgent.cpp 66 void PageConsoleAgent::clearMessages(ErrorString* errorString)
69 InspectorConsoleAgent::clearMessages(errorString);
88 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId)
92 *errorString = "nodeId is not valid";
InspectorDOMStorageAgent.cpp 55 static bool hadException(ExceptionState& exceptionState, ErrorString* errorString)
62 *errorString = "Security error";
65 *errorString = "Unknown DOM storage error";
109 void InspectorDOMStorageAgent::enable(ErrorString*)
115 void InspectorDOMStorageAgent::disable(ErrorString*)
121 void InspectorDOMStorageAgent::getDOMStorageItems(ErrorString* errorString, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items)
124 OwnPtrWillBeRawPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame);
133 if (hadException(exceptionState, errorString))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
xml.py 45 self._handle_style_error(error.lineno, 'xml/syntax', 5, expat.ErrorString(error.code))
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationInspectorAgent.cpp 47 void DeviceOrientationInspectorAgent::setDeviceOrientationOverride(ErrorString* error, double alpha, double beta, double gamma)
56 void DeviceOrientationInspectorAgent::clearDeviceOrientationOverride(ErrorString* error)
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationInspectorAgent.cpp 53 void GeolocationInspectorAgent::setGeolocationOverride(ErrorString* error, const double* latitude, const double* longitude, const double* accuracy)
69 void GeolocationInspectorAgent::clearGeolocationOverride(ErrorString*)

Completed in 1379 milliseconds

12 3 4