Searched refs:errorString (Results 1 - 25 of 61) 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/core/inspector/
H A DInspectorCanvasAgent.cpp122 void InspectorCanvasAgent::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId) argument
124 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId);
126 module.dropTraceLog(errorString, traceLogId);
129 void InspectorCanvasAgent::hasUninstrumentedCanvases(ErrorString* errorString, bool* result) argument
131 if (!checkIsEnabled(errorString))
142 void InspectorCanvasAgent::captureFrame(ErrorString* errorString, const FrameId* frameId, TraceLogId* traceLogId) argument
144 LocalFrame* frame = frameId ? m_pageAgent->assertFrame(errorString, *frameId) : m_pageAgent->mainFrame();
147 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, ScriptState::forMainWorld(frame));
149 module.captureFrame(errorString, traceLogId);
152 void InspectorCanvasAgent::startCapturing(ErrorString* errorString, cons argument
162 stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId) argument
169 getTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, const int* startOffset, const int* maxLength, RefPtr<TraceLog>& traceLog) argument
176 replayTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, int stepNo, RefPtr<ResourceState>& result, double* replayTime) argument
183 getResourceState(ErrorString* errorString, const TraceLogId& traceLogId, const ResourceId& resourceId, RefPtr<ResourceState>& result) argument
190 evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String* objectGroup, RefPtr<RemoteObject>& result, RefPtr<ResourceState>& resourceState) argument
231 injectedScriptCanvasModule(ErrorString* errorString, ScriptState* scriptState) argument
243 injectedScriptCanvasModule(ErrorString* errorString, const ScriptValue& scriptValue) argument
255 injectedScriptCanvasModule(ErrorString* errorString, const String& objectId) argument
[all...]
H A DInjectedScriptCanvasModule.cpp97 void InjectedScriptCanvasModule::captureFrame(ErrorString* errorString, TraceLogId* traceLogId) argument
99 callStartCapturingFunction("captureFrame", errorString, traceLogId);
102 void InjectedScriptCanvasModule::startCapturing(ErrorString* errorString, TraceLogId* traceLogId) argument
104 callStartCapturingFunction("startCapturing", errorString, traceLogId);
107 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId) argument
113 *errorString = "Internal error: " + functionName;
116 void InjectedScriptCanvasModule::stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId) argument
118 callVoidFunctionWithTraceLogIdArgument("stopCapturing", errorString, traceLogId);
121 void InjectedScriptCanvasModule::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId) argument
123 callVoidFunctionWithTraceLogIdArgument("dropTraceLog", errorString, traceLogI
126 callVoidFunctionWithTraceLogIdArgument(const String& functionName, ErrorString* errorString, const TraceLogId& traceLogId) argument
137 traceLog(ErrorString* errorString, const TraceLogId& traceLogId, const int* startOffset, const int* maxLength, RefPtr<TraceLog>* traceLog) argument
155 replayTraceLog(ErrorString* errorString, const TraceLogId& traceLogId, int stepNo, RefPtr<ResourceState>* result, double* replayTime) argument
178 resourceState(ErrorString* errorString, const TraceLogId& traceLogId, const ResourceId& resourceId, RefPtr<ResourceState>* result) argument
193 evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String& objectGroup, RefPtr<RemoteObject>* result, RefPtr<ResourceState>* resourceState) argument
[all...]
H A DInspectorDOMStorageAgent.cpp55 static bool hadException(ExceptionState& exceptionState, ErrorString* errorString) argument
62 *errorString = "Security error";
65 *errorString = "Unknown DOM storage error";
121 void InspectorDOMStorageAgent::getDOMStorageItems(ErrorString* errorString, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items) argument
124 OwnPtrWillBeRawPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame);
133 if (hadException(exceptionState, errorString))
136 if (hadException(exceptionState, errorString))
153 void InspectorDOMStorageAgent::setDOMStorageItem(ErrorString* errorString, const RefPtr<JSONObject>& storageId, const String& key, const String& value) argument
158 *errorString = "Storage not found";
164 *errorString
167 removeDOMStorageItem(ErrorString* errorString, const RefPtr<JSONObject>& storageId, const String& key) argument
205 findStorageArea(ErrorString* errorString, const RefPtr<JSONObject>& storageId, LocalFrame*& targetFrame) argument
[all...]
H A DPageConsoleAgent.cpp66 void PageConsoleAgent::clearMessages(ErrorString* errorString) argument
69 InspectorConsoleAgent::clearMessages(errorString);
88 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId) argument
92 *errorString = "nodeId is not valid";
H A DInjectedScript.cpp61 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, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails) argument
69 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
72 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
80 makeEvalCall(errorString, function, result, wasThrown);
83 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const Vector<ScriptValue>& asyncCallStacks, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails) argument
94 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
97 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result) argument
106 resultValue->asString(errorString);
114 *errorString = "Internal error";
117 void InjectedScript::getStepInPositions(ErrorString* errorString, cons argument
137 setVariableValue(ErrorString* errorString, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr) argument
167 getFunctionDetails(ErrorString* errorString, const String& functionId, RefPtr<FunctionDetails>* result) argument
181 getCollectionEntries(ErrorString* errorString, const String& objectId, RefPtr<Array<CollectionEntry> >* result) argument
195 getProperties(ErrorString* errorString, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<Array<PropertyDescriptor> >* properties) argument
211 getInternalProperties(ErrorString* errorString, const String& objectId, RefPtr<Array<InternalPropertyDescriptor> >* properties) argument
[all...]
H A DInspectorRuntimeAgent.cpp78 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) argument
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) argument
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<TypeBuilder::Array<TypeBuilder::Runtime::PropertyDescriptor> >& result, RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::InternalPropertyDescriptor> >& internalProperties) argument
126 *errorString = "Inspected frame has gone";
133 injectedScript.getProperties(errorString, objectId, asBool(ownProperties), asBool(accessorPropertiesOnly), &result);
136 injectedScript.getInternalProperties(errorString, objectI
182 String errorString; local
196 enable(ErrorString* errorString) argument
205 disable(ErrorString* errorString) argument
[all...]
H A DInspectorDOMAgent.cpp407 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) argument
411 *errorString = "Could not find node with given id";
417 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId) argument
419 Node* node = assertNode(errorString, nodeId);
424 *errorString = "Document is not available";
430 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) argument
432 Node* node = assertNode(errorString, nodeId);
437 *errorString = "Node is not an Element";
457 Node* InspectorDOMAgent::assertEditableNode(ErrorString* errorString, int nodeId) argument
459 Node* node = assertNode(errorString, nodeI
482 assertEditableChildNode(ErrorString* errorString, Element* parentElement, int nodeId) argument
494 assertEditableElement(ErrorString* errorString, int nodeId) argument
539 disable(ErrorString* errorString) argument
552 getDocument(ErrorString* errorString, RefPtr<TypeBuilder::DOM::Node>& root) argument
621 requestChildNodes(ErrorString* errorString, int nodeId, const int* depth) argument
639 querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
657 querySelectorAll(ErrorString* errorString, int nodeId, const String& selectors, RefPtr<TypeBuilder::Array<int> >& result) argument
727 setAttributeValue(ErrorString* errorString, int elementId, const String& name, const String& value) argument
736 setAttributesAsText(ErrorString* errorString, int elementId, const String& text, const String* const name) argument
782 removeAttribute(ErrorString* errorString, int elementId, const String& name) argument
791 removeNode(ErrorString* errorString, int nodeId) argument
806 setNodeName(ErrorString* errorString, int nodeId, const String& tagName, int* newId) argument
840 getOuterHTML(ErrorString* errorString, int nodeId, WTF::String* outerHTML) argument
849 setOuterHTML(ErrorString* errorString, int nodeId, const String& outerHTML) argument
884 setNodeValue(ErrorString* errorString, int nodeId, const String& value) argument
895 m_domEditor->replaceWholeText(toText(node), value, errorString); local
898 getEventListenersForNode(ErrorString* errorString, int nodeId, const String* objectGroup, RefPtr<TypeBuilder::Array<TypeBuilder::DOM::EventListener> >& listenersArray) argument
1130 getSearchResults(ErrorString* errorString, const String& searchId, int fromIndex, int toIndex, RefPtr<TypeBuilder::Array<int> >& nodeIds) argument
1241 setSearchingForNode(ErrorString* errorString, SearchMode searchMode, JSONObject* highlightInspectorObject) argument
1256 highlightConfigFromInspectorObject(ErrorString* errorString, JSONObject* highlightInspectorObject) argument
1285 setInspectModeEnabled(ErrorString* errorString, bool enabled, const bool* inspectUAShadowDOM, const RefPtr<JSONObject>* highlightConfig) argument
1299 highlightQuad(ErrorString* errorString, const RefPtr<JSONArray>& quadArray, const RefPtr<JSONObject>* color, const RefPtr<JSONObject>* outlineColor) argument
1317 highlightNode(ErrorString* errorString, const RefPtr<JSONObject>& highlightInspectorObject, const int* nodeId, const String* objectId) argument
1362 copyTo(ErrorString* errorString, int nodeId, int targetElementId, const int* const anchorNodeId, int* newNodeId) argument
1391 moveTo(ErrorString* errorString, int nodeId, int targetElementId, const int* const anchorNodeId, int* newNodeId) argument
1423 undo(ErrorString* errorString) argument
1430 redo(ErrorString* errorString) argument
1442 focus(ErrorString* errorString, int nodeId) argument
1456 setFileInputFiles(ErrorString* errorString, int nodeId, const RefPtr<JSONArray>& files) argument
1478 getBoxModel(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::DOM::BoxModel>& model) argument
1490 getNodeForLocation(ErrorString* errorString, int x, int y, int* nodeId) argument
1507 resolveNode(ErrorString* errorString, int nodeId, const String* const objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) argument
1523 getAttributes(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<String> >& result) argument
2125 pushNodeByPathToFrontend(ErrorString* errorString, const String& path, int* nodeId) argument
2133 pushNodesByBackendIdsToFrontend(ErrorString* errorString, const RefPtr<JSONArray>& backendNodeIds, RefPtr<TypeBuilder::Array<int> >& result) argument
2152 getRelayoutBoundary(ErrorString* errorString, int nodeId, int* relayoutBoundaryNodeId) argument
2182 pushDocumentUponHandlelessOperation(ErrorString* errorString) argument
[all...]
H A DInspectorDebuggerAgent.cpp333 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
337 *errorString = "Either url or urlRegex must be specified.";
348 *errorString = "Incorrect column number";
360 *errorString = "Breakpoint at specified location already exists.";
380 static bool parseLocation(ErrorString* errorString, PassRefPtr<JSONObject> location, String* scriptId, int* lineNumber, int* columnNumber) argument
384 *errorString = "scriptId and lineNumber are required.";
392 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, const RefPtr<JSONObject>& location, const String* const optionalCondition, BreakpointId* outBreakpointId, RefPtr<TypeBuilder::Debugger::Location>& actualLocation) argument
398 if (!parseLocation(errorString, location, &scriptId, &lineNumber, &columnNumber))
405 *errorString = "Breakpoint at specified location already exists.";
413 *errorString
445 continueToLocation(ErrorString* errorString, const RefPtr<JSONObject>& location, const bool* interstateLocationOpt) argument
464 getStepInPositions(ErrorString* errorString, const String& callFrameId, RefPtr<Array<TypeBuilder::Debugger::Location> >& positions) argument
479 getBacktrace(ErrorString* errorString, RefPtr<Array<CallFrame> >& callFrames, RefPtr<StackTrace>& asyncStackTrace) argument
663 restartFrame(ErrorString* errorString, const String& callFrameId, RefPtr<Array<CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<StackTrace>& asyncStackTrace) argument
700 getFunctionDetails(ErrorString* errorString, const String& functionId, RefPtr<FunctionDetails>& details) argument
710 getCollectionEntries(ErrorString* errorString, const String& objectId, RefPtr<TypeBuilder::Array<CollectionEntry> >& entries) argument
958 resume(ErrorString* errorString) argument
968 stepOver(ErrorString* errorString) argument
978 stepInto(ErrorString* errorString) argument
990 stepOut(ErrorString* errorString) argument
1000 setPauseOnExceptions(ErrorString* errorString, const String& stringPauseState) argument
1016 setPauseOnExceptionsImpl(ErrorString* errorString, int pauseState) argument
1025 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, RefPtr<TypeBuilder::Debugger::ExceptionDetails>& exceptionDetails) argument
1066 compileScript(ErrorString* errorString, const String& expression, const String& sourceURL, const int* executionContextId, TypeBuilder::OptOutput<ScriptId>* scriptId, RefPtr<ExceptionDetails>& exceptionDetails) argument
1095 runScript(ErrorString* errorString, const ScriptId& scriptId, const int* executionContextId, const String* const objectGroup, const bool* const doNotPauseOnExceptionsAndMuteConsole, RefPtr<RemoteObject>& result, RefPtr<ExceptionDetails>& exceptionDetails) argument
1141 setVariableValue(ErrorString* errorString, int scopeNumber, const String& variableName, const RefPtr<JSONObject>& newValue, const String* callFrameId, const String* functionObjectId) argument
1169 skipStackFrames(ErrorString* errorString, const String* pattern, const bool* skipContentScripts) argument
1204 getPromises(ErrorString* errorString, RefPtr<Array<PromiseDetails> >& promises) argument
1213 getPromiseById(ErrorString* errorString, int promiseId, const String* objectGroup, RefPtr<RemoteObject>& promise) argument
1497 assertPaused(ErrorString* errorString) argument
[all...]
H A DPageRuntimeAgent.cpp77 void PageRuntimeAgent::enable(ErrorString* errorString) argument
82 InspectorRuntimeAgent::enable(errorString);
91 void PageRuntimeAgent::run(ErrorString* errorString) argument
121 InjectedScript PageRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId) argument
127 *errorString = "Internal error: main world execution context not found.";
132 *errorString = "Execution context with given id not found.";
H A DInspectorLayerTreeAgent.cpp286 GraphicsLayer* InspectorLayerTreeAgent::layerById(ErrorString* errorString, const String& layerId) argument
291 *errorString = "Invalid layer id";
296 *errorString = "Not in compositing mode";
302 *errorString = "No layer matching given id found";
306 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::loadSnapshot(ErrorString* errorString, const String& data, String* snapshotId) argument
344 *errorString
357 releaseSnapshot(ErrorString* errorString, const String& snapshotId) argument
367 snapshotById(ErrorString* errorString, const String& snapshotId) argument
377 replaySnapshot(ErrorString* errorString, const String& snapshotId, const int* fromStep, const int* toStep, const double* scale, String* dataURL) argument
394 profileSnapshot(ErrorString* errorString, const String& snapshotId, const int* minRepeatCount, const double* minDuration, RefPtr<TypeBuilder::Array<TypeBuilder::Array<double> > >& outTimings) argument
410 snapshotCommandLog(ErrorString* errorString, const String& snapshotId, RefPtr<TypeBuilder::Array<JSONObject> >& commandLog) argument
[all...]
H A DWorkerRuntimeAgent.cpp69 void WorkerRuntimeAgent::enable(ErrorString* errorString) argument
74 InspectorRuntimeAgent::enable(errorString);
H A DInspectorCSSAgent.cpp636 void InspectorCSSAgent::getMediaQueries(ErrorString* errorString, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSMedia> >& medias) argument
651 void InspectorCSSAgent::getMatchedStylesForNode(ErrorString* errorString, int nodeId, const bool* excludePseudo, const bool* excludeInherited, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::RuleMatch> >& matchedCSSRules, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::PseudoIdMatches> >& pseudoIdMatches, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::InheritedStyleEntry> >& inheritedEntries) argument
653 Element* element = elementForId(errorString, nodeId);
655 *errorString = "Node not found";
664 *errorString = "Pseudo element has no parent";
723 void InspectorCSSAgent::getInlineStylesForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::CSS::CSSStyle>& inlineStyle, RefPtr<TypeBuilder::CSS::CSSStyle>& attributesStyle) argument
725 Element* element = elementForId(errorString, nodeId);
738 void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> >& style) argument
740 Node* node = m_domAgent->assertNode(errorString, nodeId);
767 void InspectorCSSAgent::getPlatformFontsForNode(ErrorString* errorString, in argument
813 getStyleSheetText(ErrorString* errorString, const String& styleSheetId, String* result) argument
822 setStyleSheetText(ErrorString* errorString, const String& styleSheetId, const String& text) argument
835 extractRangeComponent(ErrorString* errorString, const RefPtr<JSONObject>& range, const String& component, unsigned& result) argument
846 jsonRangeToSourceRange(ErrorString* errorString, InspectorStyleSheetBase* inspectorStyleSheet, const RefPtr<JSONObject>& range, SourceRange* sourceRange) argument
876 setPropertyText(ErrorString* errorString, const String& styleSheetId, const RefPtr<JSONObject>& range, const String& text, RefPtr<TypeBuilder::CSS::CSSStyle>& result) argument
899 setRuleSelector(ErrorString* errorString, const String& styleSheetId, const RefPtr<JSONObject>& range, const String& selector, RefPtr<TypeBuilder::CSS::CSSRule>& result) argument
922 createStyleSheet(ErrorString* errorString, const String& frameId, TypeBuilder::CSS::StyleSheetId* outStyleSheetId) argument
947 addRule(ErrorString* errorString, const String& styleSheetId, const String& ruleText, const RefPtr<JSONObject>& location, RefPtr<TypeBuilder::CSS::CSSRule>& result) argument
969 forcePseudoState(ErrorString* errorString, int nodeId, const RefPtr<JSONArray>& forcedPseudoClasses) argument
1168 elementForId(ErrorString* errorString, int nodeId) argument
1271 assertInspectorStyleSheetForId(ErrorString* errorString, const String& styleSheetId) argument
1281 assertStyleSheetForId(ErrorString* errorString, const String& styleSheetId) argument
[all...]
H A DInspectorApplicationCacheAgent.cpp123 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId) argument
125 LocalFrame* frame = m_pageAgent->assertFrame(errorString, frameId);
129 return InspectorPageAgent::assertDocumentLoader(errorString, frame);
132 void InspectorApplicationCacheAgent::getManifestForFrame(ErrorString* errorString, const String& frameId, String* manifestURL) argument
134 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
142 void InspectorApplicationCacheAgent::getApplicationCacheForFrame(ErrorString* errorString, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>& applicationCache) argument
144 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId);
H A DInspectorProfilerAgent.cpp226 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>& profile) argument
228 stop(errorString, &profile);
231 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>* profile) argument
234 if (errorString)
235 *errorString = "No recording profiles found";
245 else if (errorString)
246 *errorString = "Profile wasn't found";
H A DInjectedScriptBase.cpp171 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* exceptionDetails) argument
176 *errorString = "Internal error: result value is empty";
180 result->asString(errorString);
181 ASSERT(errorString->length());
186 *errorString = "Internal error: result is not an Object";
192 *errorString = "Internal error: result is not a pair of value and wasThrown flag";
H A DDOMEditor.cpp461 static void populateErrorString(ExceptionState& exceptionState, ErrorString* errorString) argument
464 *errorString = DOMException::getErrorName(exceptionState.code());
467 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node> node, Node* anchorNode, ErrorString* errorString) argument
471 populateErrorString(exceptionState, errorString);
475 bool DOMEditor::removeChild(Node* parentNode, Node* node, ErrorString* errorString) argument
479 populateErrorString(exceptionState, errorString);
483 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ErrorString* errorString) argument
487 populateErrorString(exceptionState, errorString);
491 bool DOMEditor::removeAttribute(Element* element, const String& name, ErrorString* errorString) argument
495 populateErrorString(exceptionState, errorString);
499 setOuterHTML(Node* node, const String& html, Node** newNode, ErrorString* errorString) argument
507 replaceWholeText(Text* textNode, const String& text, ErrorString* errorString) argument
[all...]
H A DInspectorHeapProfilerAgent.cpp222 void InspectorHeapProfilerAgent::takeHeapSnapshot(ErrorString* errorString, const bool* reportProgress) argument
257 *errorString = "Failed to take heap snapshot";
304 void InspectorHeapProfilerAgent::getHeapObjectId(ErrorString* errorString, const String& objectId, String* heapSnapshotObjectId) argument
308 *errorString = "Inspected context has gone";
314 *errorString = "Object with given id not found";
H A DInspectorPageAgent.cpp243 static void resourceContent(ErrorString* errorString, LocalFrame* frame, const KURL& url, String* result, bool* base64Encoded) argument
245 DocumentLoader* loader = InspectorPageAgent::assertDocumentLoader(errorString, frame);
250 *errorString = "No resource with given URL found";
728 ErrorString errorString; local
729 LocalFrame* frame = assertFrame(&errorString, frameId);
731 callback->sendFailure(errorString);
736 resourceContent(&errorString, frame, KURL(ParsedURLString, url), &content, &base64Encoded);
737 if (!errorString.isEmpty()) {
738 callback->sendFailure(errorString);
744 void InspectorPageAgent::getResourceContent(ErrorString* errorString, cons argument
795 setDocumentContent(ErrorString* errorString, const String& frameId, const String& html) argument
809 setDeviceMetricsOverride(ErrorString* errorString, int width, int height, double deviceScaleFactor, bool mobile, bool fitWindow, const double* optionalScale, const double* optionalOffsetX, const double* optionalOffsetY) argument
906 setShowDebugBorders(ErrorString* errorString, bool show) argument
914 setShowFPSCounter(ErrorString* errorString, bool show) argument
923 setContinuousPaintingEnabled(ErrorString* errorString, bool enabled) argument
931 setShowScrollBottleneckRects(ErrorString* errorString, bool show) argument
1096 assertFrame(ErrorString* errorString, const String& frameId) argument
1135 assertDocumentLoader(ErrorString* errorString, LocalFrame* frame) argument
1442 compositingEnabled(ErrorString* errorString) argument
[all...]
H A DPageDebuggerAgent.cpp120 InjectedScript PageDebuggerAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId) argument
128 *errorString = "Execution context 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/test/BlocksRuntime/
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 1478 milliseconds

123