Home
last modified time | relevance | path

Searched refs:errorText (Results 1 – 25 of 62) sorted by relevance

123

/external/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/testing/
DInstallUncaughtExceptionHandlerListener.java41 StringWriter errorText = new StringWriter(256); in testRunStarted()
42 errorText.append("Uncaught exception in OkHttp thread \""); in testRunStarted()
43 errorText.append(thread.getName()); in testRunStarted()
44 errorText.append("\"\n"); in testRunStarted()
45 throwable.printStackTrace(new PrintWriter(errorText)); in testRunStarted()
46 errorText.append("\n"); in testRunStarted()
48 errorText.append("Last test to start was: "); in testRunStarted()
49 errorText.append(lastTestStarted.getDisplayName()); in testRunStarted()
50 errorText.append("\n"); in testRunStarted()
52 System.err.print(errorText.toString()); in testRunStarted()
/external/skia/src/utils/win/
DSkHRESULT.cpp19 LPSTR errorText = nullptr; in SkTraceHR() local
26 (LPSTR) &errorText, in SkTraceHR()
31 if (nullptr == errorText) { in SkTraceHR()
34 SkDebugf("%s", errorText); in SkTraceHR()
35 LocalFree(errorText); in SkTraceHR()
36 errorText = nullptr; in SkTraceHR()
/external/webrtc/sdk/android/api/org/webrtc/
DIceCandidateErrorEvent.java32 public final String errorText; field in IceCandidateErrorEvent
36 String address, int port, String url, int errorCode, String errorText) { in IceCandidateErrorEvent() argument
41 this.errorText = errorText; in IceCandidateErrorEvent()
/external/skia/tests/
DSkRuntimeEffectTest.cpp87 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(src)); in test_invalid_effect()
89 REPORTER_ASSERT(r, errorText.contains(expected), in test_invalid_effect()
91 expected, errorText.c_str()); in test_invalid_effect()
125 auto [effect, errorText] = SkRuntimeEffect::MakeForColorFilter(SkString(R"( in DEF_TEST()
139 REPORTER_ASSERT(r, effect, "%s", errorText.c_str()); in DEF_TEST()
145 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl), opt); in DEF_TEST()
146 REPORTER_ASSERT(r, effect, "%s", errorText.c_str()); in DEF_TEST()
155 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl)); in DEF_TEST()
156 REPORTER_ASSERT(r, effect, "%s", errorText.c_str()); in DEF_TEST()
165 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(R"( in DEF_TEST()
[all …]
DSkSLMetalTestbed.cpp27 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
DSkSLGLSLTestbed.cpp27 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
DSkSLSPIRVTestbed.cpp27 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
/external/webrtc/sdk/objc/api/peerconnection/
DRTCIceCandidateErrorEvent.mm21 @synthesize errorText = _errorText;
31 errorText:(const std::string&)errorText {
37 _errorText = [NSString stringForStdString:errorText];
DRTCIceCandidateErrorEvent+Private.h21 : (const std::string&)url errorCode : (const int)errorCode errorText
22 : (const std::string&)errorText;
DRTCIceCandidateErrorEvent.h36 @property(nonatomic, readonly) NSString *errorText;
/external/autotest/frontend/client/src/autotest/common/ui/
DNotifyManager.java76 String errorText = errorTextArea.getText(); in logError() local
77 if (!errorText.equals("")) in logError()
78 errorText += "\n------------------------------\n"; in logError()
79 errorText += error; in logError()
80 errorTextArea.setText(errorText); in logError()
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DLateValidator.java196 String errorText, in showError() argument
199 showErrorPreformatted(validationMessageFormatter.format(errorText), errorElement); in showError()
202 private void showError(String errorText, Element errorElement) { in showError() argument
204 validationMessageFormatterFor(errorElement).format(errorText), errorElement); in showError()
207 private void showErrorPreformatted(String errorText, Element errorElement) { in showErrorPreformatted() argument
211 .printMessage(Kind.ERROR, errorText, errorElement); in showErrorPreformatted()
DEarlyValidator.java1359 String errorText, in showError() argument
1362 showErrorPreformatted(validationMessageFormatter.format(errorText), errorElement); in showError()
1365 private void showError(String errorText, Element errorElement) { in showError() argument
1367 validationMessageFormatterFor(errorElement).format(errorText), errorElement); in showError()
1370 private void showErrorPreformatted(String errorText, Element errorElement) { in showErrorPreformatted() argument
1374 .printMessage(Kind.ERROR, errorText, errorElement); in showErrorPreformatted()
/external/skia/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
DSkQPRunner.java188 String errorText = ex.getMessage(); in run()
198 int errIndex = errorText.indexOf(expectation); in run()
211 errorText = errorText.substring(errIndex + expectation.length()); in run()
/external/skia/src/gpu/ganesh/vk/
DGrVkUtil.cpp74 gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule()
80 gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule()
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/
DWebSocketRTCClient.java300 String errorText = json.optString("error"); in onWebSocketMessage() local
335 if (errorText != null && errorText.length() > 0) { in onWebSocketMessage()
336 reportError("WebSocket error message: " + errorText); in onWebSocketMessage()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DRpcController.java68 String errorText(); in errorText() method
/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DRpcController.java68 String errorText(); in errorText() method
/external/skia/tools/
DRuntimeBlendUtils.cpp21 SkASSERTF(result.effect, "%s", result.errorText.c_str()); in GetRuntimeBlendForBlendMode()
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
DCalendarCalc.java350 errorText("Error: no input to parse!"); in textChanged()
364 errorText("Exception: " + e.getClass().toString() + " parsing: "+rightString); in textChanged()
390 errorText("Exception: " + e.getClass().toString() + " formatting " in millisFormat()
446 public void errorText(String s) in errorText() method in CalendarCalcFrame
/external/pdfium/fxjs/xfa/
Dcjx_exclgroup.h30 JSE_PROP(errorText);
/external/skia/gm/
Druntimefunctions.cpp49 SkASSERTF(result.effect, "%s", result.errorText.c_str()); in onDraw()
/external/skia/src/effects/
DSkBlenders.cpp62 SkASSERTF(result.effect, "SkBlenders::Arithmetic: %s", result.errorText.c_str()); in Arithmetic()
/external/skia/tools/skslc/
DMain.cpp559 auto emitCompileError = [&](const char* errorText) { in process_command() argument
563 errorStream.writeText(errorText); in process_command()
566 puts(errorText); in process_command()
579 emitCompileError(compiler.errorText().c_str()); in process_command()
/external/skia/tools/viewer/
DSkSLSlide.cpp106 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(sksl); in rebuild()
112 Viewer::ShaderErrorHandler()->compileError(sksl.c_str(), errorText.c_str()); in rebuild()

123