Searched refs:SkStringPrintf (Results 1 - 19 of 19) sorted by relevance

/external/skia/tools/timer/
H A DTimer.cpp56 if (ms > 60e+3) return SkStringPrintf("%.3gm", ms/60e+3);
57 if (ms > 1e+3) return SkStringPrintf("%.3gs", ms/1e+3);
58 if (ms < 1e-3) return SkStringPrintf("%.3gns", ms*1e+6);
60 if (ms < 1) return SkStringPrintf("%.3gus", ms*1e+3);
62 if (ms < 1) return SkStringPrintf("%.3gµs", ms*1e+3);
64 return SkStringPrintf("%.3gms", ms);
/external/skia/tests/
H A DTest.cpp24 SkString result = SkStringPrintf("%s:%d\t", this->fileName, this->lineNo);
H A DDeflateWStream.cpp49 SkString s = SkStringPrintf("/tmp/deftst_compressed_%d", i);
54 s = SkStringPrintf("/tmp/deftst_input_%d", i);
H A DTest.h90 REPORT_FAILURE(r, "", SkStringPrintf(__VA_ARGS__)); \
H A DStringTest.cpp175 REPORTER_ASSERT(reporter, SkStringPrintf("%i", 0).equals("0"));
H A DPDFPrimitivesTest.cpp60 SkStringPrintf("'%s' != '%s'", strptr, sks.c_str())); \
H A DImageDecodingTest.cpp269 SkString basename = SkStringPrintf("%s%s", root, suffixes[i]);
/external/skia/bench/
H A DMemcpyBench.cpp19 , fName(SkStringPrintf("%s_%d", name, count)) {}
H A DResultsWriter.h97 SkString id = SkStringPrintf( "%s_%d_%d", name, x, y);
H A DMemsetBench.cpp18 , fName(SkStringPrintf("memset%d_%d%s", sizeof(T)*8, n, kInline ? "_inline" : "")) {}
H A Dnanobench.cpp94 if (FLAGS_verbose) return SkStringPrintf("%llu", (uint64_t)(ms*1e6));
798 SkStringPrintf("%d %d %d %d", fClip.fLeft, fClip.fTop,
800 log->configOption("scale", SkStringPrintf("%.2g", fScales[fCurrentScale]).c_str());
/external/skia/gm/
H A Dblend.cpp43 SkString text = SkStringPrintf("0x%08x", c);
/external/skia/dm/
H A DDMSrcSink.cpp78 return SkStringPrintf("Couldn't read %s.", fPath.c_str());
82 return SkStringPrintf("Couldn't create codec for %s.", fPath.c_str());
125 return SkStringPrintf("Image(%s) is too large (%d x %d)\n", fPath.c_str(),
142 return SkStringPrintf("Couldn't getPixels %s.", fPath.c_str());
159 return SkStringPrintf("%s failed after %d scanlines with error message %d",
197 return SkStringPrintf("Couldn't read %s.", fPath.c_str());
205 return SkStringPrintf("Couldn't decode %s.", fPath.c_str());
219 return SkStringPrintf("Can't find a good decoder for %s.", fPath.c_str());
229 return SkStringPrintf("divisor %d is too big for %s with dimensions (%d x %d)",
239 return SkStringPrintf("Coul
[all...]
H A DDM.cpp74 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
109 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
141 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
432 return SkStringPrintf("%s %s %s %s",
466 fail(SkStringPrintf("%s %s %s %s: %s",
500 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
573 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
588 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
593 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
/external/skia/src/svg/
H A DSkSVGDevice.cpp28 return SkStringPrintf("rgb(%u,%u,%u)",
253 return SkStringPrintf("gradient_%d", fGradientCount++);
257 return SkStringPrintf("clip_%d", fClipCount++);
261 return SkStringPrintf("path_%d", fPathCount++);
265 return SkStringPrintf("img_%d", fImageCount++);
692 imageUse.addAttribute("xlink:href", SkStringPrintf("#%s", imageID.c_str()));
788 textPathElement.addAttribute("xlink:href", SkStringPrintf("#%s", pathID.c_str()));
/external/skia/src/codec/
H A DSkCodec_libgif.cpp468 return gif_error(SkStringPrintf(
483 return gif_error(SkStringPrintf(
/external/skia/include/core/
H A DSkString.h252 SkString SkStringPrintf(const char* format, ...);
/external/skia/tools/
H A Drender_pictures_main.cpp128 SkString name = SkStringPrintf("%s_%d%s", gInputFileName.c_str(), gImageNo++,
/external/skia/src/core/
H A DSkString.cpp618 SkString SkStringPrintf(const char* format, ...) { function

Completed in 2003 milliseconds