HomeSort by relevance Sort by last modified time
    Searched refs:writePath (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/tools/flags/
SkCommonFlags.h 28 DECLARE_string(writePath);
SkCommonFlags.cpp 53 DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs.");
  /external/skia/tools/
CopyTilesRenderer.h 26 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
skpmaker.cpp 26 DEFINE_string(writePath, "", "Filepath to write the SKP into.");
29 const char *writePath) {
41 SkFILEWStream stream(writePath);
72 SkDebugf("--writePath must be nonempty\n");
render_pictures_main.cpp 41 "file rather than decoding it. Requires writePath to be set. Skips drawing the full "
44 DEFINE_string2(writePath, w, "", "Directory to write the rendered images into.");
142 static bool render_picture_internal(const SkString& inputPath, const SkString* writePath,
148 if (NULL != writePath && writePath->size() > 0 && !FLAGS_writeEncodedImages) {
149 writePathString.set(*writePath);
260 * @param writePath if not NULL, write all image(s) generated into this directory
265 static bool render_picture(const SkString& inputPath, const SkString* writePath,
272 FLAGS_writeWholeImage ? NULL : writePath,
370 if ((NULL != writePath) && !writePath->isEmpty())
    [all...]
CopyTilesRenderer.cpp 23 void CopyTilesRenderer::init(SkPicture* pict, const SkString* writePath,
32 this->CopyString(&fWritePath, writePath);
skimage_main.cpp 36 DEFINE_string2(writePath, w, "", "Write rendered images into this directory.");
324 * and a writePath was provided. Behaves differently depending on
335 * @param writePath Parent directory to hold the folders for the PNG files to write. Must
350 static bool write_subset(const char* writePath, const SkString& subsetName,
354 SkASSERT(writePath != NULL);
358 subsetPath.set(writePath);
361 subsetPath = SkOSPath::SkPathJoin(writePath, "subsets");
388 SkString dirExtracted = SkOSPath::SkPathJoin(writePath, "extracted");
484 static void decodeFileAndWrite(const char srcPath[], const SkString* writePath) {
573 if (writePath != NULL)
    [all...]
PictureRenderer.cpp 51 void PictureRenderer::init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
53 this->CopyString(&fWritePath, writePath);
263 * @param writePath If nonempty, write the binary image to a file within this directory.
273 static bool write(SkCanvas* canvas, const SkString& writePath, const SkString& mismatchPath,
333 if (writePath.isEmpty()) {
336 return write_bitmap_to_disk(bitmap, writePath, outputSubdirPtr, outputFilename);
409 void SimplePictureRenderer::init(SkPicture* picture, const SkString* writePath,
412 INHERITED::init(picture, writePath, mismatchPath, inputFilename, useChecksumBasedFilenames);
454 void TiledPictureRenderer::init(SkPicture* pict, const SkString* writePath,
466 this->CopyString(&fWritePath, writePath);
    [all...]
PictureRenderer.h 87 * @param writePath The output directory within which this renderer should write all images,
95 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
469 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
484 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
609 virtual void init(SkPicture* pict, const SkString* writePath, const SkString* mismatchPath,
  /external/chromium_org/third_party/skia/tools/
skpmaker.cpp 26 DEFINE_string(writePath, "", "Filepath to write the SKP into.");
31 const char *writePath) {
43 SkFILEWStream stream(writePath);
74 SkDebugf("--writePath must be nonempty\n");
CopyTilesRenderer.h 31 const SkString* writePath,
render_pictures_main.cpp 49 "file rather than decoding it. Requires writePath to be set. Skips drawing the full "
52 DEFINE_string2(writePath, w, "", "Directory to write the rendered images into.");
146 static bool render_picture_internal(const SkString& inputPath, const SkString* writePath,
152 if (writePath && writePath->size() > 0 && !FLAGS_writeEncodedImages) {
153 writePathString.set(*writePath);
271 * @param writePath if not NULL, write all image(s) generated into this directory
276 static bool render_picture(const SkString& inputPath, const SkString* writePath,
283 FLAGS_writeWholeImage ? NULL : writePath,
386 if ((writePath) && !writePath->isEmpty())
    [all...]
skimage_main.cpp 36 DEFINE_string2(writePath, w, "", "Write rendered images into this directory.");
324 * and a writePath was provided. Behaves differently depending on
335 * @param writePath Parent directory to hold the folders for the PNG files to write. Must
350 static bool write_subset(const char* writePath, const SkString& subsetName,
354 SkASSERT(writePath != NULL);
358 subsetPath.set(writePath);
361 subsetPath = SkOSPath::Join(writePath, "subsets");
388 SkString dirExtracted = SkOSPath::Join(writePath, "extracted");
484 static void decodeFileAndWrite(const char srcPath[], const SkString* writePath) {
573 if (writePath != NULL)
    [all...]
CopyTilesRenderer.cpp 29 void CopyTilesRenderer::init(const SkPicture* pict, const SkString* writePath,
38 this->CopyString(&fWritePath, writePath);
PictureRenderer.cpp 52 const SkString* writePath,
56 this->CopyString(&fWritePath, writePath);
268 * @param writePath If nonempty, write the binary image to a file within this directory.
278 static bool write(SkCanvas* canvas, const SkString& writePath, const SkString& mismatchPath,
338 if (writePath.isEmpty()) {
341 return write_bitmap_to_disk(bitmap, writePath, outputSubdirPtr, outputFilename);
416 void SimplePictureRenderer::init(const SkPicture* picture, const SkString* writePath,
419 INHERITED::init(picture, writePath, mismatchPath, inputFilename, useChecksumBasedFilenames);
468 void TiledPictureRenderer::init(const SkPicture* pict, const SkString* writePath,
480 this->CopyString(&fWritePath, writePath);
    [all...]
PictureRenderer.h 84 * @param writePath The output directory within which this renderer should write all images,
93 const SkString* writePath,
548 const SkString* writePath,
570 const SkString* writePath,
  /external/chromium_org/third_party/skia/src/core/
SkPathHeap.cpp 92 buffer.writePath(**iter);
SkWriteBuffer.cpp 129 void SkWriteBuffer::writePath(const SkPath& path) {
130 fWriter.writePath(path);
  /external/skia/src/core/
SkPathHeap.cpp 92 buffer.writePath(**iter);
SkWriteBuffer.cpp 129 void SkWriteBuffer::writePath(const SkPath& path) {
130 fWriter.writePath(path);
  /external/chromium_org/third_party/skia/include/core/
SkWriteBuffer.h 72 void writePath(const SkPath& path);
  /external/skia/include/core/
SkWriteBuffer.h 72 void writePath(const SkPath& path);
  /external/chromium_org/third_party/skia/src/effects/
Sk2DPathEffect.cpp 147 buffer.writePath(fPath);
  /external/skia/src/effects/
Sk2DPathEffect.cpp 127 buffer.writePath(fPath);
  /external/chromium_org/third_party/skia/gm/
gmmain.cpp     [all...]

Completed in 8942 milliseconds

1 2 3