/external/tinyxml/ |
tinyxmlerror.cpp | 34 const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] =
|
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/ |
tinyxmlerror.cpp | 34 const char* TiXmlBase::errorString[ TiXmlBase::TIXML_ERROR_STRING_COUNT ] =
|
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxmlerror.cpp | 34 const char* TiXmlBase::errorString[ TiXmlBase::TIXML_ERROR_STRING_COUNT ] =
|
/frameworks/base/opengl/java/android/opengl/ |
GLException.java | 36 String errorString = GLU.gluErrorString(error); 37 if ( errorString == null ) { 38 errorString = "Unknown error 0x" + Integer.toHexString(error); 40 return errorString;
|
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/ |
ServiceWorkerError.cpp | 37 String ServiceWorkerError::errorString(WebServiceWorkerError::ErrorType type)
|
ServiceWorkerError.h | 47 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/ |
InspectorCanvasAgent.cpp | 91 ErrorString error; 96 void InspectorCanvasAgent::enable(ErrorString*) 106 void InspectorCanvasAgent::disable(ErrorString*) 116 void InspectorCanvasAgent::dropTraceLog(ErrorString* errorString, const TraceLogId& traceLogId) 118 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId); 120 module.dropTraceLog(errorString, traceLogId); 123 void InspectorCanvasAgent::hasUninstrumentedCanvases(ErrorString* errorString, bool* result) 125 if (!checkIsEnabled(errorString)) [all...] |
InjectedScriptCanvasModule.cpp | 95 void InjectedScriptCanvasModule::captureFrame(ErrorString* errorString, TraceLogId* traceLogId) 97 callStartCapturingFunction("captureFrame", errorString, traceLogId); 100 void InjectedScriptCanvasModule::startCapturing(ErrorString* errorString, TraceLogId* traceLogId) 102 callStartCapturingFunction("startCapturing", errorString, traceLogId); 105 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId) 111 *errorString = "Internal error: " + functionName; 114 void InjectedScriptCanvasModule::stopCapturing(ErrorString* errorString, const TraceLogId& traceLogId [all...] |
InspectorDOMStorageAgent.cpp | 56 static bool hadException(ExceptionState& exceptionState, ErrorString* errorString) 63 *errorString = "Security error"; 66 *errorString = "Unknown DOM storage error"; 98 void InspectorDOMStorageAgent::enable(ErrorString*) 104 void InspectorDOMStorageAgent::disable(ErrorString*) 110 void InspectorDOMStorageAgent::getDOMStorageItems(ErrorString* errorString, const RefPtr<JSONObject>& storageId, RefPtr<TypeBuilder::Array<TypeBuilder::Array<String> > >& items) 113 OwnPtr<StorageArea> storageArea = findStorageArea(errorString, storageId, frame); 122 if (hadException(exceptionState, errorString)) [all...] |
PageConsoleAgent.cpp | 53 void PageConsoleAgent::clearMessages(ErrorString* errorString) 56 InspectorConsoleAgent::clearMessages(errorString); 70 void PageConsoleAgent::addInspectedNode(ErrorString* errorString, int nodeId) 74 *errorString = "nodeId is not valid";
|
InspectorRuntimeAgent.cpp | 69 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) 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) 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<Typ (…) [all...] |
PageRuntimeAgent.cpp | 77 String errorString; 78 disable(&errorString); 89 void PageRuntimeAgent::enable(ErrorString* errorString) 94 InspectorRuntimeAgent::enable(errorString); 103 void PageRuntimeAgent::disable(ErrorString* errorString) 108 InspectorRuntimeAgent::disable(errorString); 136 InjectedScript PageRuntimeAgent::injectedScriptForEval(ErrorString* errorString, const int* executionContextId [all...] |
InjectedScript.cpp | 60 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) 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) 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) 92 makeEvalCall(errorString, function, result, wasThrown); 95 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result [all...] |
InjectedScriptBase.cpp | 118 void InjectedScriptBase::makeEvalCall(ErrorString* errorString, ScriptFunctionCall& function, RefPtr<TypeBuilder::Runtime::RemoteObject>* objectResult, TypeBuilder::OptOutput<bool>* wasThrown) 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";
|
InspectorDebuggerAgent.cpp | 157 void InspectorDebuggerAgent::enable(ErrorString*) 168 void InspectorDebuggerAgent::disable(ErrorString*) 225 void InspectorDebuggerAgent::setBreakpointsActive(ErrorString*, bool active) 230 void InspectorDebuggerAgent::setSkipAllPauses(ErrorString*, bool skipped, const bool* untilReload) 303 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) 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* columnNumbe (…) [all...] |
InspectorDOMAgent.cpp | 264 ErrorString error; 382 Node* InspectorDOMAgent::assertNode(ErrorString* errorString, int nodeId) 386 *errorString = "Could not find node with given id"; 392 Document* InspectorDOMAgent::assertDocument(ErrorString* errorString, int nodeId) 394 Node* node = assertNode(errorString, nodeId); 399 *errorString = "Document is not available"; 405 Element* InspectorDOMAgent::assertElement(ErrorString* errorString, int nodeId [all...] |
InspectorLayerTreeAgent.cpp | 151 void InspectorLayerTreeAgent::enable(ErrorString*) 157 void InspectorLayerTreeAgent::disable(ErrorString*) 217 ErrorString ignoredError; 245 GraphicsLayer* InspectorLayerTreeAgent::layerById(ErrorString* errorString, const String& layerId) 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 [all...] |
DOMEditor.cpp | 406 static void populateErrorString(ExceptionState& exceptionState, ErrorString* errorString) 409 *errorString = DOMException::getErrorName(exceptionState.code()); 412 bool DOMEditor::insertBefore(Node* parentNode, PassRefPtr<Node> node, Node* anchorNode, ErrorString* errorString) 416 populateErrorString(exceptionState, errorString); 420 bool DOMEditor::removeChild(Node* parentNode, Node* node, ErrorString* errorString) 424 populateErrorString(exceptionState, errorString); 428 bool DOMEditor::setAttribute(Element* element, const String& name, const String& value, ErrorString* errorString [all...] |
InspectorApplicationCacheAgent.cpp | 65 ErrorString error; 70 void InspectorApplicationCacheAgent::enable(ErrorString*) 98 void InspectorApplicationCacheAgent::getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest> >& result) 121 DocumentLoader* InspectorApplicationCacheAgent::assertFrameWithDocumentLoader(ErrorString* errorString, String frameId) 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) 132 DocumentLoader* documentLoader = assertFrameWithDocumentLoader(errorString, frameId) [all...] |
InspectorProfilerAgent.cpp | 147 void InspectorProfilerAgent::enable(ErrorString*) 158 void InspectorProfilerAgent::disable(ErrorString*) 170 void InspectorProfilerAgent::setSamplingInterval(ErrorString* error, int interval) 190 ErrorString error; 206 void InspectorProfilerAgent::start(ErrorString* error) 211 ErrorString error; 222 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>& profile) 224 stop(errorString, &profile); 227 void InspectorProfilerAgent::stop(ErrorString* errorString, RefPtr<TypeBuilder::Profiler::CPUProfile>* profile [all...] |
InspectorPageAgent.cpp | 251 void InspectorPageAgent::resourceContent(ErrorString* errorString, Frame* frame, const KURL& url, String* result, bool* base64Encoded) 253 DocumentLoader* loader = assertDocumentLoader(errorString, frame); 257 *errorString = "No resource with given URL found"; 342 ErrorString error; 351 ErrorString error; 384 void InspectorPageAgent::enable(ErrorString*) 391 void InspectorPageAgent::disable(ErrorString*) 422 void InspectorPageAgent::addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* identifier) 440 void InspectorPageAgent::removeScriptToEvaluateOnLoad(ErrorString* error, const String& identifier [all...] |
/hardware/ti/omap4xxx/domx/test/sample_proxy/ |
test_sample_proxy.c | 248 OMX_STRING errorString; 254 errorString = "ErrorNone"; 257 errorString = "ErrorInsufficientResources"; 260 errorString = "ErrorUndefined"; 263 errorString = "ErrorInvalidComponentName"; 266 errorString = "ErrorComponentNotFound"; 269 errorString = "ErrorInvalidComponent"; 272 errorString = "ErrorBadParameter"; 275 errorString = "ErrorNotImplemented"; 278 errorString = "ErrorUnderflow" [all...] |
/external/compiler-rt/BlocksRuntime/tests/ |
testfilerunner.h | 95 __strong char *errorString; 103 @property __strong char *errorString;
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
app-win32.c | 59 _TCHAR errorString[32]; 60 _stprintf(errorString, _T("0x%04x"), error); 61 MessageBox(NULL, errorString, _T("GL Error"), MB_OK); 71 _TCHAR errorString[32]; 72 _stprintf(errorString, _T("0x%04x"), error); 73 MessageBox(NULL, errorString, _T("EGL Initialization Error"), MB_OK);
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
RetryScheduler.java | 134 int errorString = 0; 139 errorString = R.string.invalid_destination; 143 errorString = R.string.service_not_activated; 146 errorString = R.string.service_network_problem; 150 errorString = R.string.service_message_not_found; 153 if (errorString != 0) { 154 DownloadManager.getInstance().showErrorCodeToast(errorString);
|