Home
last modified time | relevance | path

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

12

/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/skqp/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/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/skqp/gm/
DanimatedGif.cpp25 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/
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/skia/tests/
DSkSLSPIRVTest.cpp24 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()
DSkSLFPTest.cpp23 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()
DSkSLErrorTest.cpp23 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()
DSkSLMetalTest.cpp20 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
/external/skqp/tests/
DSkSLSPIRVTest.cpp24 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()
DSkSLFPTest.cpp23 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()
DSkSLErrorTest.cpp23 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()
DSkSLMetalTest.cpp20 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
/external/skqp/src/sksl/
DSkSLMain.cpp75 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/
DSkSLMain.cpp75 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/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
DWebSocketRTCClient.java268 String errorText = json.optString("error"); in onWebSocketMessage() local
302 if (errorText != null && errorText.length() > 0) { in onWebSocketMessage()
303 reportError("WebSocket error message: " + errorText); in onWebSocketMessage()
/external/skia/src/gpu/vk/
DGrVkUtil.cpp216 SkDebugf("SkSL error:\n%s\n", gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule()
221 SkDebugf("%s\n", gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule()
/external/skqp/src/gpu/vk/
DGrVkUtil.cpp207 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/protobuf/java/core/src/main/java/com/google/protobuf/
DRpcController.java75 String errorText(); in errorText() method
/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/dagger2/compiler/src/test/java/dagger/internal/codegen/
DGraphValidationTest.java783 String errorText = in longChainOfDependencies() local
785 String firstError = errorText in longChainOfDependencies()
794 String secondError = errorText in longChainOfDependencies()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestMonkey.java2055 StringBuffer errorText = new StringBuffer(); in RunMonkey() local
2061 errorText.append("<?>---------------------------------\n"); in RunMonkey()
2064 errorText.append("------------------------------------\n"); in RunMonkey()
2068 appendCharToBuf(errorText, c, 11); in RunMonkey()
2070 appendToBuf(errorText, gc, 8); in RunMonkey()
2074 appendToBuf(errorText, extraPropValue, 20); in RunMonkey()
2077 appendToBuf(errorText, charName, 40); in RunMonkey()
2078 errorText.append('\n'); in RunMonkey()
2082 errorText.append("<>"); in RunMonkey()
2084 errorText.append("</data>\n"); in RunMonkey()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBITestMonkey.java2058 StringBuffer errorText = new StringBuffer(); in RunMonkey() local
2064 errorText.append("<?>---------------------------------\n"); in RunMonkey()
2067 errorText.append("------------------------------------\n"); in RunMonkey()
2071 appendCharToBuf(errorText, c, 11); in RunMonkey()
2073 appendToBuf(errorText, gc, 8); in RunMonkey()
2077 appendToBuf(errorText, extraPropValue, 20); in RunMonkey()
2080 appendToBuf(errorText, charName, 40); in RunMonkey()
2081 errorText.append('\n'); in RunMonkey()
2085 errorText.append("<>"); in RunMonkey()
2087 errorText.append("</data>\n"); in RunMonkey()
[all …]
/external/skia/src/gpu/mtl/
DGrMtlUtil.mm161 SkDebugf("SkSL error:\n%s\n", gpu->shaderCompiler()->errorText().c_str());
168 SkDebugf("%s\n", gpu->shaderCompiler()->errorText().c_str());
/external/skqp/src/gpu/mtl/
DGrMtlUtil.mm195 SkDebugf("SkSL error:\n%s\n", gpu->shaderCompiler()->errorText().c_str());
202 SkDebugf("%s\n", gpu->shaderCompiler()->errorText().c_str());

12