Searched refs:errorString (Results 1 - 25 of 55) sorted by relevance

123

/external/tinyxml/
H A Dtinyxmlerror.cpp34 const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] = member in class:TiXmlBase
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlerror.cpp34 const char* TiXmlBase::errorString[ TiXmlBase::TIXML_ERROR_STRING_COUNT ] = member in class:TiXmlBase
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlerror.cpp34 const char* TiXmlBase::errorString[ TiXmlBase::TIXML_ERROR_STRING_COUNT ] = member in class:TiXmlBase
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerError.cpp37 String ServiceWorkerError::errorString(WebServiceWorkerError::ErrorType type) function in class:WebCore::ServiceWorkerError
H A DServiceWorkerError.h47 RefPtr<DOMError> error = DOMError::create(errorString(webError->errorType), webError->message);
52 static String errorString(blink::WebServiceWorkerError::ErrorType);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCanvasAgent.cpp116 void InspectorCanvasAgent::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId) argument
118 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId);
120 module.dropTraceLog(errorString, traceLogId);
123 void InspectorCanvasAgent::hasUninstrumentedCanvases(ErrorString* errorString, bool* result) argument
125 if (!checkIsEnabled(errorString))
136 void InspectorCanvasAgent::captureFrame(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId) argument
138 Frame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
141 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, mainWorldScriptState(frame));
143 module.captureFrame(errorString, traceLogId);
146 void InspectorCanvasAgent::startCapturing(ErrorString* errorString, cons argument
156 stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId) argument
163 getTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, const int* startOffset, const int* maxLength, RefPtr<TraceLog>& traceLog) argument
170 replayTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, int stepNo, RefPtr<ResourceState>& result, double* replayTime) argument
177 getResourceState(ErrorString* errorString, const TraceLogId& traceLogId, const ResourceId& resourceId, RefPtr<ResourceState>& result) argument
184 evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String* objectGroup, RefPtr<RemoteObject>& result, RefPtr<ResourceState>& resourceState) argument
225 injectedScriptCanvasModule(ErrorString* errorString, ScriptState* scriptState) argument
237 injectedScriptCanvasModule(ErrorString* errorString, const ScriptObject& scriptObject) argument
249 injectedScriptCanvasModule(ErrorString* errorString, const String& objectId) argument
[all...]
H A DInjectedScriptCanvasModule.cpp95 void InjectedScriptCanvasModule::captureFrame(ErrorString* errorString, TraceLogId* traceLogId) argument
97 callStartCapturingFunction("captureFrame", errorString, traceLogId);
100 void InjectedScriptCanvasModule::startCapturing(ErrorString* errorString, TraceLogId* traceLogId) argument
102 callStartCapturingFunction("startCapturing", errorString, traceLogId);
105 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId) argument
111 *errorString = "Internal error: " + functionName;
114 void InjectedScriptCanvasModule::stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId) argument
116 callVoidFunctionWithTraceLogIdArgument("stopCapturing", errorString, traceLogId);
119 void InjectedScriptCanvasModule::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId) argument
121 callVoidFunctionWithTraceLogIdArgument("dropTraceLog", errorString, traceLogI
124 callVoidFunctionWithTraceLogIdArgument(const String& functionName, ErrorString* errorString, const TraceLogId& traceLogId) argument
135 traceLog(ErrorString* errorString, const TraceLogId& traceLogId, const int* startOffset, const int* maxLength, RefPtr<TraceLog>* traceLog) argument
153 replayTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, int stepNo, RefPtr<ResourceState>* result, double* replayTime) argument
176 resourceState(ErrorString* errorString, const TraceLogId& traceLogId, const ResourceId& resourceId, RefPtr<ResourceState>* result) argument
191 evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String& objectGroup, RefPtr<RemoteObject>* result, RefPtr<ResourceState>* resourceState) argument
[all...]
H A DInspectorDOMStorageAgent.cpp56 static bool hadException(ExceptionState& exceptionState, ErrorString* errorString) argument
63 *errorString = "Security error";
66 *errorString = "Unknown DOM storage error";
110 void InspectorDOMStorageAgent::getDOMStorageItems(ErrorString* errorString, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items) argument
113 OwnPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame);
122 if (hadException(exceptionState, errorString))
125 if (hadException(exceptionState, errorString))
142 void InspectorDOMStorageAgent::setDOMStorageItem(ErrorString* errorString, const RefPtr<JSONObject>& storageId, const String& key, const String& value) argument
147 *errorString = "Storage not found";
153 *errorString
156 removeDOMStorageItem(ErrorString* errorString, const RefPtr<JSONObject>& storageId, const String& key) argument
206 findStorageArea(ErrorString* errorString, const RefPtr<JSONObject>& storageId, Frame*& targetFrame) argument
[all...]
H A DPageConsoleAgent.cpp53 void PageConsoleAgent::clearMessages(ErrorString* errorString) argument
56 InspectorConsoleAgent::clearMessages(errorString);
70 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId) argument
74 *errorString = "nodeId is not valid";
H A DInspectorRuntimeAgent.cpp69 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) argument
71 InjectedScript injectedScript = injectedScriptForEval(errorString, executionContextId);
80 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", asBool(includeCommandLineAPI), asBool(returnByValue), asBool(generatePreview), &result, 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) argument
92 *errorString = "Inspected frame has gone";
105 injectedScript.callFunctionOn(errorString, objectId, expression, arguments, asBool(returnByValue), asBool(generatePreview), &result, wasThrown);
113 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, const bool* ownProperties, const bool* accessorPropertiesOnly, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) argument
117 *errorString = "Inspected frame has gone";
125 injectedScript.getProperties(errorString, objectId, ownProperties && *ownProperties, accessorPropertiesOnlyValue, &result);
128 injectedScript.getInternalProperties(errorString, objectI
[all...]
H A DPageRuntimeAgent.cpp77 String errorString; local
78 disable(&errorString);
89 void PageRuntimeAgent::enable(ErrorString* errorString) argument
94 InspectorRuntimeAgent::enable(errorString);
103 void PageRuntimeAgent::disable(ErrorString* errorString) argument
108 InspectorRuntimeAgent::disable(errorString);
136 InjectedScript PageRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId) argument
142 *errorString = "Internal error: main world execution context not found.";
147 *errorString = "Execution context with given id not found.";
H A DInjectedScript.cpp60 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) argument
68 makeEvalCall(errorString, function, result, 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) argument
79 makeEvalCall(errorString, function, result, 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) argument
92 makeEvalCall(errorString, function, result, wasThrown);
95 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result) argument
104 resultValue->asString(errorString);
112 *errorString = "Internal error";
115 void InjectedScript::getStepInPositions(ErrorString* errorString, cons argument
135 setVariableValue(ErrorString* errorString, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr) argument
165 getFunctionDetails(ErrorString* errorString, const String& functionId, RefPtr<FunctionDetails>* result) argument
179 getProperties(ErrorString* errorString, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<Array<PropertyDescriptor> >* properties) argument
195 getInternalProperties(ErrorString* errorString, const String& objectId, RefPtr<Array<InternalPropertyDescriptor> >* properties) argument
299 findCallFrameById(ErrorString* errorString, const ScriptValue& topCallFrame, const String& callFrameId) argument
[all...]
H A DInjectedScriptBase.cpp118 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown) argument
123 *errorString = "Internal error: result value is empty";
127 result->asString(errorString);
128 ASSERT(errorString->length());
133 *errorString = "Internal error: result is not an Object";
139 *errorString = "Internal error: result is not a pair of value and wasThrown flag";
H A DInspectorDebuggerAgent.cpp303 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString* errorString, int lineNumber, const String* const optionalURL, const String* const optionalURLRegex, const int* const optionalColumnNumber, const String* const optionalCondition, const bool* isAntiBreakpoint, BreakpointId* outBreakpointId, RefPtr<Array<TypeBuilder::Debugger::Location> >& locations) argument
307 *errorString = "Either url or urlRegex must be specified.";
318 *errorString = "Incorrect column number";
330 *errorString = "Breakpoint at specified location already exists.";
350 static bool parseLocation(ErrorString* errorString, PassRefPtr<JSONObject> location, String* scriptId, int* lineNumber, int* columnNumber) argument
354 *errorString = "scriptId and lineNumber are required.";
362 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, const RefPtr<JSONObject>& location, const String* const optionalCondition, BreakpointId* outBreakpointId, RefPtr<TypeBuilder::Debugger::Location>& actualLocation) argument
368 if (!parseLocation(errorString, location, &scriptId, &lineNumber, &columnNumber))
375 *errorString = "Breakpoint at specified location already exists.";
383 *errorString
415 continueToLocation(ErrorString* errorString, const RefPtr<JSONObject>& location, const bool* interstateLocationOpt) argument
435 getStepInPositions(ErrorString* errorString, const String& callFrameId, RefPtr<Array<TypeBuilder::Debugger::Location> >& positions) argument
450 getBacktrace(ErrorString* errorString, RefPtr<Array<CallFrame> >& callFrames, RefPtr<StackTrace>& asyncStackTrace) argument
612 restartFrame(ErrorString* errorString, const String& callFrameId, RefPtr<Array<CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<StackTrace>& asyncStackTrace) argument
639 getFunctionDetails(ErrorString* errorString, const String& functionId, RefPtr<FunctionDetails>& details) argument
725 resume(ErrorString* errorString) argument
733 resolveCallFrame(ErrorString* errorString, const String* callFrameId) argument
749 stepOver(ErrorString* errorString, const String* callFrameId) argument
760 stepInto(ErrorString* errorString) argument
770 stepOut(ErrorString* errorString, const String* callFrameId) argument
781 setPauseOnExceptions(ErrorString* errorString, const String& stringPauseState) argument
797 setPauseOnExceptionsImpl(ErrorString* errorString, int pauseState) argument
806 evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) argument
834 compileScript(ErrorString* errorString, const String& expression, const String& sourceURL, TypeBuilder::OptOutput<ScriptId>* scriptId, TypeBuilder::OptOutput<String>* syntaxErrorMessage) argument
853 runScript(ErrorString* errorString, const ScriptId& scriptId, const int* executionContextId, const String* const objectGroup, const bool* const doNotPauseOnExceptionsAndMuteConsole, RefPtr<RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) argument
892 setVariableValue(ErrorString* errorString, int scopeNumber, const String& variableName, const RefPtr<JSONObject>& newValue, const String* callFrameId, const String* functionObjectId) argument
920 skipStackFrames(ErrorString* errorString, const String* pattern) argument
1138 assertPaused(ErrorString* errorString) argument
[all...]
H A DInspectorDOMAgent.cpp382 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) argument
386 *errorString = "Could not find node with given id";
392 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId) argument
394 Node* node = assertNode(errorString, nodeId);
399 *errorString = "Document is not available";
405 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) argument
407 Node* node = assertNode(errorString, nodeId);
412 *errorString = "Node is not an Element";
418 Node* InspectorDOMAgent::assertEditableNode(ErrorString* errorString, int nodeId) argument
420 Node* node = assertNode(errorString, nodeI
437 assertEditableElement(ErrorString* errorString, int nodeId) argument
456 getDocument(ErrorString* errorString, RefPtr<TypeBuilder::DOM::Node>& root) argument
516 pushNodeToFrontend(ErrorString* errorString, int documentNodeId, Node* nodeToPush) argument
540 requestChildNodes(ErrorString* errorString, int nodeId, const int* depth) argument
558 querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
576 querySelectorAll(ErrorString* errorString, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) argument
666 releaseBackendNodeIds(ErrorString* errorString, const String& nodeGroup) argument
678 setAttributeValue(ErrorString* errorString, int elementId, const String& name, const String& value) argument
687 setAttributesAsText(ErrorString* errorString, int elementId, const String& text, const String* const name) argument
733 removeAttribute(ErrorString* errorString, int elementId, const String& name) argument
742 removeNode(ErrorString* errorString, int nodeId) argument
757 setNodeName(ErrorString* errorString, int nodeId, const String& tagName, int* newId) argument
792 getOuterHTML(ErrorString* errorString, int nodeId, WTF::String* outerHTML) argument
801 setOuterHTML(ErrorString* errorString, int nodeId, const String& outerHTML) argument
836 setNodeValue(ErrorString* errorString, int nodeId, const String& value) argument
847 m_domEditor->replaceWholeText(toText(node), value, errorString); local
850 getEventListenersForNode(ErrorString* errorString, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) argument
1041 getSearchResults(ErrorString* errorString, const String& searchId, int fromIndex, int toIndex, RefPtr<TypeBuilder::Array<int> >& nodeIds) argument
1137 setSearchingForNode(ErrorString* errorString, SearchMode searchMode, JSONObject* highlightInspectorObject) argument
1152 highlightConfigFromInspectorObject(ErrorString* errorString, JSONObject* highlightInspectorObject) argument
1175 setInspectModeEnabled(ErrorString* errorString, bool enabled, const bool* inspectShadowDOM, const RefPtr<JSONObject>* highlightConfig) argument
1189 highlightQuad(ErrorString* errorString, const RefPtr<JSONArray>& quadArray, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
1207 highlightNode(ErrorString* errorString, const RefPtr<JSONObject>& highlightInspectorObject, const int* nodeId, const String* objectId) argument
1251 moveTo(ErrorString* errorString, int nodeId, int targetElementId, const int* const anchorNodeId, int* newNodeId) argument
1278 undo(ErrorString* errorString) argument
1285 redo(ErrorString* errorString) argument
1297 focus(ErrorString* errorString, int nodeId) argument
1309 setFileInputFiles(ErrorString* errorString, int nodeId, const RefPtr<JSONArray>& files) argument
1345 getBoxModel(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::DOM::BoxModel>& model) argument
1374 getNodeForLocation(ErrorString* errorString, int x, int y, int* nodeId) argument
1387 resolveNode(ErrorString* errorString, int nodeId, const String* const objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
1403 getAttributes(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<String> >& result) argument
1972 pushNodeByPathToFrontend(ErrorString* errorString, const String& path, int* nodeId) argument
1980 pushNodeByBackendIdToFrontend(ErrorString* errorString, BackendNodeId backendNodeId, int* nodeId) argument
1997 getRelayoutBoundary(ErrorString* errorString, int nodeId, int* relayoutBoundaryNodeId) argument
2027 pushDocumentUponHandlelessOperation(ErrorString* errorString) argument
[all...]
H A DInspectorLayerTreeAgent.cpp245 GraphicsLayer* InspectorLayerTreeAgent::layerById(ErrorString* errorString, const String& layerId) argument
250 *errorString = "Invalid layer id";
255 *errorString = "Not in compositing mode";
261 *errorString = "No layer matching given id found";
271 void InspectorLayerTreeAgent::compositingReasons(ErrorString* errorString, const String& layerId, RefPtr<TypeBuilder::Array<String> >& reasonStrings) argument
308 const GraphicsLayer* graphicsLayer = layerById(errorString, layerId);
324 void InspectorLayerTreeAgent::makeSnapshot(ErrorString* errorString, const String& layerId, String* snapshotId) argument
326 GraphicsLayer* layer = layerById(errorString, layerId);
340 void InspectorLayerTreeAgent::releaseSnapshot(ErrorString* errorString, const String& snapshotId) argument
344 *errorString
350 snapshotById(ErrorString* errorString, const String& snapshotId) argument
360 replaySnapshot(ErrorString* errorString, const String& snapshotId, const int* fromStep, const int* toStep, String* dataURL) argument
369 profileSnapshot(ErrorString* errorString, const String& snapshotId, const int* minRepeatCount, const double* minDuration, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double> > >& outTimings) argument
[all...]
H A DDOMEditor.cpp406 static void populateErrorString(ExceptionState& exceptionState, ErrorString* errorString) argument
409 *errorString = DOMException::getErrorName(exceptionState.code());
412 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtr<Node> node, Node* anchorNode, ErrorString* errorString) argument
416 populateErrorString(exceptionState, errorString);
420 bool DOMEditor::removeChild(Node* parentNode, Node* node, ErrorString* errorString) argument
424 populateErrorString(exceptionState, errorString);
428 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ErrorString* errorString) argument
432 populateErrorString(exceptionState, errorString);
436 bool DOMEditor::removeAttribute(Element* element, const String& name, ErrorString* errorString) argument
440 populateErrorString(exceptionState, errorString);
444 setOuterHTML(Node* node, const String& html, Node** newNode, ErrorString* errorString) argument
452 replaceWholeText(Text* textNode, const String& text, ErrorString* errorString) argument
[all...]
H A DInspectorApplicationCacheAgent.cpp121 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId) argument
123 Frame* frame = m_pageAgent->assertFrame(errorString, frameId);
127 return InspectorPageAgent::assertDocumentLoader(errorString, frame);
130 void InspectorApplicationCacheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL) argument
132 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
140 void InspectorApplicationCacheAgent::getApplicationCacheForFrame(ErrorString* errorString, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>& applicationCache) argument
142 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
H A DInspectorProfilerAgent.cpp222 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>& profile) argument
224 stop(errorString, &profile);
227 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>* profile) argument
230 if (errorString)
231 *errorString = "No recording profiles found";
243 } else if (errorString) {
244 *errorString = "Profile wasn't found";
H A DInspectorPageAgent.cpp251 void InspectorPageAgent::resourceContent(ErrorString* errorString, Frame* frame, const KURL& url, String* result, bool* base64Encoded) argument
253 DocumentLoader* loader = assertDocumentLoader(errorString, frame);
257 *errorString = "No resource with given URL found";
575 void InspectorPageAgent::getResourceContent(ErrorString* errorString, const String& frameId, const String& url, String* content, bool* base64Encoded) argument
577 Frame* frame = assertFrame(errorString, frameId);
580 resourceContent(errorString, frame, KURL(ParsedURLString, url), content, base64Encoded);
623 void InspectorPageAgent::setDocumentContent(ErrorString* errorString, const String& frameId, const String& html) argument
625 Frame* frame = assertFrame(errorString, frameId);
631 *errorString = "No Document instance to set HTML for";
637 void InspectorPageAgent::setDeviceMetricsOverride(ErrorString* errorString, in argument
709 setShowDebugBorders(ErrorString* errorString, bool show) argument
717 setShowFPSCounter(ErrorString* errorString, bool show) argument
726 setContinuousPaintingEnabled(ErrorString* errorString, bool enabled) argument
734 setShowScrollBottleneckRects(ErrorString* errorString, bool show) argument
895 assertFrame(ErrorString* errorString, const String& frameId) argument
929 assertDocumentLoader(ErrorString* errorString, Frame* frame) argument
1224 forceCompositingMode(ErrorString* errorString) argument
1261 handleJavaScriptDialog(ErrorString* errorString, bool accept, const String* promptText) argument
[all...]
H A DInspectorCSSAgent.cpp755 ErrorString errorString;
756 m_frontend->namedFlowCreated(buildObjectForNamedFlow(&errorString, namedFlow, documentNodeId));
821 ErrorString errorString;
824 m_frontend->regionLayoutUpdated(buildObjectForNamedFlow(&errorString, namedFlow, documentNodeId));
843 ErrorString errorString;
846 m_frontend->regionOversetChanged(buildObjectForNamedFlow(&errorString, namedFlow, documentNodeId));
934 void InspectorCSSAgent::getMatchedStylesForNode(ErrorString* errorString, int nodeId, const bool* includePseudo, const bool* includeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries) argument
936 Element* element = elementForId(errorString, nodeId);
999 void InspectorCSSAgent::getInlineStylesForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::CSS::CSSStyle>& inlineStyle, RefPtr<TypeBuilder::CSS::CSSStyle>& attributesStyle) argument
1001 Element* element = elementForId(errorString, nodeI
1014 getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> >& style) argument
1043 getPlatformFontsForNode(ErrorString* errorString, int nodeId, String* cssFamilyName, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PlatformFontUsage> >& platformFonts) argument
1098 getStyleSheet(ErrorString* errorString, const String& styleSheetId, RefPtr<TypeBuilder::CSS::CSSStyleSheetBody>& styleSheetObject) argument
1117 getStyleSheetText(ErrorString* errorString, const String& styleSheetId, String* result) argument
1126 setStyleSheetText(ErrorString* errorString, const String& styleSheetId, const String& text) argument
1137 setStyleText(ErrorString* errorString, const RefPtr<JSONObject>& fullStyleId, const String& text, RefPtr<TypeBuilder::CSS::CSSStyle>& result) argument
1153 setPropertyText(ErrorString* errorString, const RefPtr<JSONObject>& fullStyleId, int propertyIndex, const String& text, bool overwrite, RefPtr<TypeBuilder::CSS::CSSStyle>& result) argument
1169 toggleProperty(ErrorString* errorString, const RefPtr<JSONObject>& fullStyleId, int propertyIndex, bool disable, RefPtr<TypeBuilder::CSS::CSSStyle>& result) argument
1185 setRuleSelector(ErrorString* errorString, const RefPtr<JSONObject>& fullRuleId, const String& selector, RefPtr<TypeBuilder::CSS::CSSRule>& result) argument
1204 addRule(ErrorString* errorString, const int contextNodeId, const String& selector, RefPtr<TypeBuilder::CSS::CSSRule>& result) argument
1254 forcePseudoState(ErrorString* errorString, int nodeId, const RefPtr<JSONArray>& forcedPseudoClasses) argument
1274 getNamedFlowCollection(ErrorString* errorString, int documentNodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::NamedFlow> >& result) argument
1414 elementForId(ErrorString* errorString, int nodeId) argument
1529 assertStyleSheetForId(ErrorString* errorString, const String& styleSheetId) argument
1655 buildArrayForRegions(ErrorString* errorString, PassRefPtr<NodeList> regionList, int documentNodeId) argument
1690 buildObjectForNamedFlow(ErrorString* errorString, NamedFlow* webkitNamedFlow, int documentNodeId) argument
[all...]
H A DInspectorHeapProfilerAgent.cpp223 void InspectorHeapProfilerAgent::getHeapSnapshot(ErrorString* errorString, int rawUid) argument
239 *errorString = "Profile wasn't found";
311 void InspectorHeapProfilerAgent::getHeapObjectId(ErrorString* errorString, const String& objectId, String* heapSnapshotObjectId) argument
315 *errorString = "Inspected context has gone";
321 *errorString = "Object with given id not found";
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dlog_util.js147 var errorString = '';
150 errorString += 'Invalid constants object.\n';
152 errorString += 'NetLog events missing.\n';
154 errorString += 'Invalid version number.\n';
156 if (errorString.length > 0)
157 return 'Load failed:\n\n' + errorString;
200 errorString += 'The log file is missing clientInfo.numericDate.\n';
203 errorString +=
209 errorString += 'Can\'t guess export date!\n';
235 errorString
[all...]
/external/compiler-rt/BlocksRuntime/tests/
H A Dtestfilerunner.h95 __strong char *errorString; variable
103 @property __strong char *errorString; variable
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcolorSuggestionPicker.js46 var errorString = validateArguments(args);
47 if (errorString) {
48 main.textContent = "Internal error: " + errorString;

Completed in 1006 milliseconds

123