/third_party/skia/src/utils/win/ |
H A 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()
|
/third_party/skia/tests/ |
H A D | SkRuntimeEffectTest.cpp | 34 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(src)); in test_invalid_effect() 36 REPORTER_ASSERT(r, errorText.contains(expected), in test_invalid_effect() 38 expected, errorText.c_str()); in test_invalid_effect() 77 auto [effect, errorText] = SkRuntimeEffect::MakeForColorFilter(SkString(R"( in DEF_TEST() 91 REPORTER_ASSERT(r, effect, "%s", errorText.c_str()); in DEF_TEST() 97 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl), opt); in DEF_TEST() 98 REPORTER_ASSERT(r, effect, "%s", errorText.c_str()); in DEF_TEST() 108 auto [effect, errorText] = SkRuntimeEffect::MakeForColorFilter(SkString(sksl)); in DEF_TEST() 109 REPORTER_ASSERT(r, effect, "%s", errorText.c_str()); in DEF_TEST() 113 auto [effect, errorText] in DEF_TEST() [all...] |
H A D | SkSLMetalTestbed.cpp | 22 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
|
H A D | SkSLGLSLTestbed.cpp | 22 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
|
H A D | SkSLSPIRVTestbed.cpp | 22 SkDebugf("Unexpected error compiling %s\n%s", src, compiler.errorText().c_str()); in test()
|
H A D | SkSLES2ConformanceTest.cpp | 66 ERRORF(r, "%s: %s", testFile, result.errorText.c_str()); in test_expect_pass()
|
H A D | SkSLTest.cpp | 63 ERRORF(r, "%s%s: %s", testFile, permutationSuffix, result.errorText.c_str()); in test_one_permutation()
|
/third_party/skia/src/gpu/vk/ |
H A D | GrVkUtil.cpp | 106 gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule() 112 gpu->shaderCompiler()->errorText().c_str()); in GrCompileVkShaderModule()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/ |
H A 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
|
H A D | CalendarFrame.java | 408 public void errorText(String s) in errorText() method in CalendarFrame
|
/third_party/skia/src/sksl/ |
H A D | SkSLMain.cpp | 316 auto emitCompileError = [&](SkSL::FileOutputStream& out, const char* errorText) { in processCommand() 321 errorStream.writeText(errorText); in processCommand() 324 puts(errorText); in processCommand() 336 emitCompileError(out, compiler.errorText().c_str()); in processCommand()
|
H A D | SkSLCompiler.h | 163 String errorText(bool showCount = true);
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | RpcController.java | 68 String errorText(); in errorText() method 84 * into the message returned by {@code errorText()}. If you find you need to return
|
/third_party/skia/tools/ |
H A D | RuntimeBlendUtils.cpp | 20 SkASSERTF(result.effect, "%s", result.errorText.c_str()); in GetRuntimeBlendForBlendMode()
|
/third_party/skia/src/sksl/dsl/ |
H A D | DSLRuntimeEffects.cpp | 36 SkASSERTF(result.effect, "%s\n", result.errorText.c_str()); in EndRuntimeShader()
|
/third_party/skia/src/effects/ |
H A D | SkBlenders.cpp | 55 SkASSERTF(result.effect, "SkBlenders::Arithmetic: %s", result.errorText.c_str()); in Arithmetic()
|
/third_party/skia/src/core/ |
H A D | SkRuntimeEffectPriv.h | 62 SkASSERTF(result.effect, "%s", result.errorText.c_str());
|
/third_party/skia/tools/viewer/ |
H A D | SkSLSlide.cpp | 99 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(sksl); in rebuild() 105 Viewer::ShaderErrorHandler()->compileError(sksl.c_str(), errorText.c_str()); in rebuild()
|
/third_party/skia/src/gpu/gl/builders/ |
H A D | GrGLShaderStringBuilder.cpp | 36 errorHandler->compileError(src.c_str(), compiler->errorText().c_str()); in GrSkSLtoGLSL()
|
/third_party/skia/modules/skottie/src/effects/ |
H A D | SkSLEffect.cpp | 81 result.errorText.c_str()); in SkSLEffectAdapter()
|
H A D | SphereEffect.cpp | 136 .errorText.c_str()); in sphere_fancylight_effect()
|
H A D | FractalNoiseEffect.cpp | 201 printf("!!! %s\n", result.errorText.c_str()); in make_noise_effect()
|
/third_party/skia/bench/ |
H A D | SkSLBench.cpp | 86 SK_ABORT("shader compilation failed: %s\n", fCompiler.errorText().c_str());
|
/third_party/skia/src/gpu/gradients/ |
H A D | GrGradientShader.cpp | 230 SkASSERTF(result.effect, "%s", result.errorText.c_str()); in make_unrolled_colorizer() 322 SkASSERTF(result.effect, "%s", result.errorText.c_str()); in make_looping_colorizer()
|
/third_party/skia/include/effects/ |
H A D | SkRuntimeEffect.h | 121 // Otherwise, `errorText` will contain the reason for failure. 124 SkString errorText; member
|