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

12

/external/tinyxml/
H A Dtinyxmlerror.cpp34 const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] = member in class:TiXmlBase
H A Dtinyxml.h330 static const char* errorString[ TIXML_ERROR_STRING_COUNT ]; member in class:TiXmlBase
H A Dtinyxmlparser.cpp784 errorDesc = errorString[ errorId ];
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/qt/
H A DInjectedBundleQt.cpp41 qWarning("Error loading the injected bundle: %s", qPrintable(m_platformBundle.errorString()));
49 qWarning("Error resolving WKBundleInitialize: %s", qPrintable(m_platformBundle.errorString()));
/external/webkit/Source/WebCore/inspector/
H A DInspectorRuntimeAgent.cpp52 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
56 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);
59 void InspectorRuntimeAgent::evaluateOn(ErrorString* errorString, const String& objectId, const String& expression, RefPtr<InspectorObject>* result) argument
63 injectedScript.evaluateOn(errorString, objectId, expression, result);
66 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* result) argument
70 injectedScript.getProperties(errorString, objectId, ignoreHasOwnProperty, result);
73 void InspectorRuntimeAgent::setPropertyValue(ErrorString* errorString, const String& objectId, const String& propertyName, const String& expression) argument
77 injectedScript.setPropertyValue(errorString, objectId, propertyName, expression);
79 *errorString = "No injected script found";
H A DInjectedScript.cpp57 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
63 makeObjectCall(errorString, function, result);
66 void InjectedScript::evaluateOn(ErrorString* errorString, const String& objectId, const String& expression, RefPtr<InspectorObject>* result) argument
71 makeObjectCall(errorString, function, result);
74 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
81 makeObjectCall(errorString, function, result);
84 void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* properties) argument
93 *errorString = "Internal error";
114 void InjectedScript::setPropertyValue(ErrorString* errorString, const String& objectId, const String& propertyName, const String& expression) argument
122 result->asString(errorString);
207 makeObjectCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<InspectorObject>* objectResult) argument
[all...]
H A DInspectorCSSAgent.cpp184 void InspectorCSSAgent::getStylesForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* result) argument
186 Element* element = elementForId(errorString, nodeId);
239 void InspectorCSSAgent::getInlineStyleForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* style) argument
241 Element* element = elementForId(errorString, nodeId);
252 void InspectorCSSAgent::getComputedStyleForNode(ErrorString* errorString, int nodeId, RefPtr<InspectorObject>* style) argument
254 Element* element = elementForId(errorString, nodeId);
278 void InspectorCSSAgent::getStyleSheet(ErrorString* errorString, const String& styleSheetId, RefPtr<InspectorObject>* styleSheetObject) argument
280 InspectorStyleSheet* inspectorStyleSheet = assertStyleSheetForId(errorString, styleSheetId);
287 void InspectorCSSAgent::getStyleSheetText(ErrorString* errorString, const String& styleSheetId, String* result) argument
289 InspectorStyleSheet* inspectorStyleSheet = assertStyleSheetForId(errorString, styleSheetI
296 setStyleSheetText(ErrorString* errorString, const String& styleSheetId, const String& text) argument
308 setPropertyText(ErrorString* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, const String& text, bool overwrite, RefPtr<InspectorObject>* result) argument
322 toggleProperty(ErrorString* errorString, const RefPtr<InspectorObject>& fullStyleId, int propertyIndex, bool disable, RefPtr<InspectorObject>* result) argument
336 setRuleSelector(ErrorString* errorString, const RefPtr<InspectorObject>& fullRuleId, const String& selector, RefPtr<InspectorObject>* result) argument
406 elementForId(ErrorString* errorString, int nodeId) argument
473 assertStyleSheetForId(ErrorString* errorString, const String& styleSheetId) argument
[all...]
H A DInspectorDebuggerAgent.cpp177 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* sourceId, int* lineNumber, int* columnNumber) argument
181 *errorString = "sourceId and lineNumber are required.";
189 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorObject>* actualLocation) argument
195 if (!parseLocation(errorString, location, &sourceId, &lineNumber, &columnNumber))
208 *errorString = "Could not resolve breakpoint";
225 void InspectorDebuggerAgent::continueToLocation(ErrorString* errorString, PassRefPtr<InspectorObject> location) argument
236 if (!parseLocation(errorString, location, &sourceId, &lineNumber, &columnNumber))
241 resume(errorString);
336 void InspectorDebuggerAgent::setPauseOnExceptions(ErrorString* errorString, const String& stringPauseState) argument
346 *errorString
354 evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
[all...]
H A DInspectorDOMAgent.cpp400 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) argument
404 *errorString = "Could not find node with given id";
410 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId) argument
412 Node* node = assertNode(errorString, nodeId);
417 *errorString = "Node is not an Element";
424 HTMLElement* InspectorDOMAgent::assertHTMLElement(ErrorString* errorString, int nodeId) argument
426 Element* element = assertElement(errorString, nodeId);
431 *errorString = "Node is not an HTML Element";
489 void InspectorDOMAgent::querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
492 Node* node = assertNode(errorString, nodeI
507 querySelectorAll(ErrorString* errorString, int nodeId, const String& selectors, RefPtr<InspectorArray>* result) argument
575 setAttribute(ErrorString* errorString, int elementId, const String& name, const String& value) argument
586 removeAttribute(ErrorString* errorString, int elementId, const String& name) argument
597 removeNode(ErrorString* errorString, int nodeId) argument
652 getOuterHTML(ErrorString* errorString, int nodeId, WTF::String* outerHTML) argument
659 setOuterHTML(ErrorString* errorString, int nodeId, const String& outerHTML, int* newId) argument
696 setNodeValue(ErrorString* errorString, int nodeId, const String& value) argument
[all...]
H A DInspectorResourceAgent.cpp119 void InspectorResourceAgent::resourceContent(ErrorString* errorString, Frame* frame, const KURL& url, String* result) argument
122 *errorString = "No frame to get resource content for";
136 *errorString = "No resource with given URL found";
139 void InspectorResourceAgent::resourceContentBase64(ErrorString* errorString, Frame* frame, const KURL& url, String* result) argument
145 *errorString = "No resource with given URL found";
553 void InspectorResourceAgent::getResourceContent(ErrorString* errorString, const String& frameId, const String& url, const bool* const optionalBase64Encode, String* content) argument
557 *errorString = "No frame for given id found";
561 InspectorResourceAgent::resourceContentBase64(errorString, frame, KURL(ParsedURLString, url), content);
563 InspectorResourceAgent::resourceContent(errorString, frame, KURL(ParsedURLString, url), content);
H A DInspectorStyleSheet.cpp183 bool InspectorStyle::setPropertyText(ErrorString* errorString, unsigned index, const String& propertyText, bool overwrite) argument
187 *errorString = "Internal error: no stylesheet parsed data available";
207 *errorString = "Invalid property value";
213 *errorString = "Invalid property value";
230 *errorString = "Internal error: could not replace property value";
251 *errorString = "Internal error: no CSS rule source found";
257 *errorString = "Internal error: could not fetch style text";
302 bool InspectorStyle::toggleProperty(ErrorString* errorString, unsigned index, bool disable) argument
306 *errorString = "Can toggle only source-based properties";
311 *errorString
826 setPropertyText(ErrorString* errorString, const InspectorCSSId& id, unsigned propertyIndex, const String& text, bool overwrite) argument
837 toggleProperty(ErrorString* errorString, const InspectorCSSId& id, unsigned propertyIndex, bool disable) argument
[all...]
/external/compiler-rt/BlocksRuntime/tests/
H A Dtestfilerunner.h95 __strong char *errorString; variable
103 @property __strong char *errorString; variable
/external/webkit/Source/WebKit/chromium/public/
H A DWebCommonWorkerClient.h55 const WebString& errorString, int lineNumber,
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.cpp190 CXString *errorString;
195 if (errorString)
196 *errorString = cxstring::createDup(err);
238 : error(e), errorString(es) {
241 if (errorString)
242 *errorString = cxstring::createEmpty();
651 CXString *errorString) {
652 DiagLoader L(error, errorString);
649 clang_loadDiagnostics(const char *file, enum CXLoadDiag_Error *error, CXString *errorString) argument
/external/webkit/Source/WebCore/loader/archive/cf/
H A DLegacyWebArchive.cpp277 CFStringRef errorString = 0;
279 RetainPtr<CFDictionaryRef> plist(AdoptCF, static_cast<CFDictionaryRef>(CFPropertyListCreateFromXMLData(0, cfData.get(), kCFPropertyListImmutable, &errorString)));
282 const char* cError = errorString ? CFStringGetCStringPtr(errorString, kCFStringEncodingUTF8) : "unknown error";
285 if (errorString)
286 CFRelease(errorString);
/external/webkit/Source/WebCore/plugins/qt/
H A DPluginPackageQt.cpp145 m_module->errorString().toLatin1().constData());
/external/skia/legacy/src/animator/
H A DSkAnimateMaker.cpp355 SkString errorString; local
357 engine.getErrorString(&errorString);
359 setErrorNoun(errorString);
/external/skia/src/animator/
H A DSkAnimateMaker.cpp355 SkString errorString; local
357 engine.getErrorString(&errorString);
359 setErrorNoun(errorString);
/external/webkit/Tools/QtTestBrowser/
H A Dwebpage.cpp80 .arg(info->errorString).toUtf8();
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserQt.cpp229 handleError(fatal, qPrintable(m_stream.errorString()), lineNumber(), columnNumber());
449 handleError(type, qPrintable(m_stream.errorString()), lineNumber(),
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebpage.h349 QString errorString; member in class:QWebPage::ErrorPageExtensionOption
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dtestapi.c397 JSStringRef errorString = JSStringCreateWithUTF8CString("convertToType failed"); local
398 JSValueRef errorStringRef = JSValueMakeString(context, errorString);
399 JSStringRelease(errorString);
/external/webkit/Source/WebCore/platform/network/qt/
H A DQNetworkReplyHandler.cpp443 ResourceError error("QtNetwork", m_replyWrapper->reply()->error(), url.toString(), m_replyWrapper->reply()->errorString());
/external/clang/tools/c-index-test/
H A Dc-index-test.c3578 CXString errorString; local
3581 Diags = clang_loadDiagnostics(filename, &error, &errorString);
3585 clang_getCString(errorString));
3586 clang_disposeString(errorString);
/external/clang/include/clang-c/
H A DIndex.h702 * \param errorString A pointer to a CXString for recording the error string
710 CXString *errorString);

Completed in 612 milliseconds

12