Searched defs:errorString (Results 1 - 21 of 21) sorted by relevance

/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
/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 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 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 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/clang/tools/libclang/
H A DCXLoadedDiagnostic.cpp197 CXString *errorString;
202 if (errorString)
203 *errorString = createCXString(err);
247 : error(e), errorString(es) {
250 if (errorString)
251 *errorString = createCXString("");
668 CXString *errorString) {
669 DiagLoader L(error, errorString);
666 clang_loadDiagnostics(const char *file, enum CXLoadDiag_Error *error, CXString *errorString) argument
/external/llvm/lib/MC/MCDisassembler/
H A DEDDisassembler.cpp138 std::string errorString; local
141 errorString);
/external/skia/src/animator/
H A DSkAnimateMaker.cpp355 SkString errorString; local
357 engine.getErrorString(&errorString);
359 setErrorNoun(errorString);
/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/clang/tools/c-index-test/
H A Dc-index-test.c2639 CXString errorString; local
2642 Diags = clang_loadDiagnostics(filename, &error, &errorString);
2646 clang_getCString(errorString));
2647 clang_disposeString(errorString);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 456 milliseconds