/external/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/testing/ |
D | InstallUncaughtExceptionHandlerListener.java | 41 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/ |
D | SkHRESULT.cpp | 19 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/skqp/src/utils/win/ |
D | SkHRESULT.cpp | 19 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/skia/tests/ |
D | SkRuntimeEffectTest.cpp | 27 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(src)); in test_invalid_effect() 29 REPORTER_ASSERT(r, errorText.contains(expected), in test_invalid_effect() 31 expected, errorText.c_str()); in test_invalid_effect() 82 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl), opt); in DEF_TEST() 83 REPORTER_ASSERT(r, effect, "%s", errorText.c_str()); in DEF_TEST() 93 auto [effect, errorText] = SkRuntimeEffect::MakeForColorFilter(SkString(sksl)); in DEF_TEST() 94 REPORTER_ASSERT(r, effect, "%s", errorText.c_str()); in DEF_TEST() 98 auto [effect, errorText] = SkRuntimeEffect::MakeForColorFilter(SkString(sksl)); in DEF_TEST() 101 errorText.contains(expected), in DEF_TEST() 104 errorText.c_str()); in DEF_TEST() [all …]
|
D | SkSLFPTestbed.cpp | 23 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test() 30 src, compiler.errorText().c_str()); in test() 37 src, compiler.errorText().c_str()); in test()
|
D | SkSLGLSLTestbed.cpp | 22 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
|
D | SkSLMetalTestbed.cpp | 22 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
|
D | SkSLSPIRVTestbed.cpp | 22 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
|
/external/skqp/gm/ |
D | animatedGif.cpp | 25 void error(SkCanvas* canvas, const SkString& errorText) { in error() argument 31 font.measureText(errorText.c_str(), errorText.size(), kUTF8_SkTextEncoding, &bounds); in error() 32 canvas->drawString(errorText, kOffset, bounds.height() + kOffset, font, paint); in error() 130 SkString errorText = SkStringPrintf("Nothing to draw; %s", FLAGS_animatedGif[0]); in onDraw() local 131 error(canvas, errorText); in onDraw()
|
/external/autotest/frontend/client/src/autotest/common/ui/ |
D | NotifyManager.java | 76 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/skqp/tests/ |
D | SkSLSPIRVTest.cpp | 24 if (compiler.errorText() != skError) { in test_failure() 26 compiler.errorText().c_str()); in test_failure() 28 REPORTER_ASSERT(r, compiler.errorText() == skError); in test_failure()
|
D | SkSLFPTest.cpp | 23 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test() 29 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test() 45 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
|
D | SkSLErrorTest.cpp | 23 if (compiler.errorText() != skError) { in test_failure() 25 compiler.errorText().c_str()); in test_failure() 27 REPORTER_ASSERT(r, compiler.errorText() == skError); in test_failure()
|
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/ |
D | LateValidator.java | 196 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()
|
/external/skqp/src/sksl/ |
D | SkSLMain.cpp | 75 printf("%s", compiler.errorText().c_str()); in main() 91 printf("%s", compiler.errorText().c_str()); in main() 107 printf("%s", compiler.errorText().c_str()); in main() 124 printf("%s", compiler.errorText().c_str()); in main() 141 printf("%s", compiler.errorText().c_str()); in main()
|
/external/skia/src/sksl/dsl/ |
D | DSLStatement.cpp | 43 DSLWriter::ReportError(DSLWriter::Compiler().errorText(/*showCount=*/false).c_str()); in DSLStatement() 53 DSLWriter::ReportError(DSLWriter::Compiler().errorText(/*showCount=*/false).c_str(), &pos); in DSLStatement()
|
D | DSLExpression.cpp | 38 DSLWriter::ReportError(DSLWriter::Compiler().errorText(/*showCount=*/false).c_str()); in DSLExpression() 85 DSLWriter::ReportError(DSLWriter::Compiler().errorText(/*showCount=*/false).c_str(), &pos); in DSLExpression() 247 DSLWriter::Compiler().errorText().c_str()); in coerceAndRelease()
|
D | DSLRuntimeEffects.cpp | 35 SkASSERTF(result.effect, "%s\n", result.errorText.c_str()); in EndRuntimeShader()
|
/external/skia/src/gpu/vk/ |
D | GrVkUtil.cpp | 103 gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule() 109 gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule()
|
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
D | WebSocketRTCClient.java | 300 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/ |
D | RpcController.java | 68 String errorText(); in errorText() method
|
/external/skqp/src/gpu/vk/ |
D | GrVkUtil.cpp | 207 SkDebugf("SkSL error:\n%s\n", gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule() 212 SkDebugf("%s\n", gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_exclgroup.h | 30 JSE_PROP(errorText);
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/ |
D | CalendarCalc.java | 350 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/skia/bench/ |
D | SkSLBench.cpp | 86 SK_ABORT("shader compilation failed: %s\n", fCompiler.errorText().c_str()); in onDraw() 139 SK_ABORT("shader compilation failed: %s\n", fCompiler.errorText().c_str()); in onDraw()
|