/third_party/skia/src/core/ |
H A D | SkPictureRecord.h | 133 void addPath(const SkPath& path); 219 int addPathToHeap(const SkPath& path); // does not write to ops stream
|
/third_party/skia/src/gpu/v1/ |
H A D | ClipStack.h | 69 void clipPath(const SkMatrix& ctm, const SkPath& path, GrAA aa, SkClipOp op) { in clipPath() argument 70 this->clip({ctm, GrShape(path), aa, op}); in clipPath()
|
H A D | Device_v1.h | 114 void drawPath(const SkPath& path, const SkPaint& paint, bool pathIsMutable) override; 165 void onClipPath(const SkPath& path, SkClipOp op, bool aa) override;
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrAAConvexTessellator.h | 48 bool tessellate(const SkMatrix& m, const SkPath& path); 230 // return false on failure/degenerate path 231 bool extractFromPath(const SkMatrix& m, const SkPath& path);
|
/third_party/skia/src/gpu/tessellate/ |
H A D | StrokeIterator.h | 18 // This class iterates over the stroke geometry defined by a path and stroke. It automatically 23 // StrokeIterator iter(path, stroke); 34 StrokeIterator(const SkPath& path, const SkStrokeRec* stroke, const SkMatrix* viewMatrix) in StrokeIterator() argument 36 SkPathPriv::Iterate it(path); in StrokeIterator() 228 // Implement degenerate square caps as a stroke-width square in path space. in finishOpenContour() 343 // Info and iterators from the original path. 362 // Storage space for geometry that gets defined implicitly by the path, but does not have
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/run_testlist/ |
H A D | main.go | 33 "path/filepath" 56 deqpVkBinary = flag.String("deqp-vk", "deqp-vk", "path to the deqp-vk binary") 57 testList = flag.String("test-list", "vk-master-PASS.txt", "path to a test list file") 60 output = flag.String("output", "results.json", "path to an output JSON results file") 195 path, err := filepath.Abs(filepath.Join(dir, root.ICD.Path)) 200 return path
|
/third_party/skia/third_party/externals/icu/source/samples/layout/ |
H A D | cgnomelayout.c | 74 static gchar *prettyTitle(const gchar *path) in prettyTitle() argument 76 const gchar *name = g_basename(path); in prettyTitle()
|
H A D | gnomelayout.cpp | 82 gchar *prettyTitle(const gchar *path) in prettyTitle() argument 84 const gchar *name = g_basename(path); in prettyTitle()
|
/third_party/skia/src/ports/ |
H A D | SkFontMgr_FontConfigInterface.cpp | 279 sk_sp<SkTypeface> onMakeFromFile(const char path[], int ttcIndex) const override { 280 std::unique_ptr<SkStreamAsset> stream = SkStream::MakeFromFile(path);
|
H A D | SkFontMgr_preview.cpp | 158 sk_sp<SkTypeface> SkFontMgr_Preview::onMakeFromFile(const char path[], int ttcIndex) const in onMakeFromFile() argument 160 std::unique_ptr<SkStreamAsset> stream = SkStream::MakeFromFile(path); in onMakeFromFile()
|
/third_party/skia/tests/ |
H A D | CanvasStateTest.cpp | 83 static void write_image(const SkImage* img, const char path[]) { in write_image() argument 85 SkFILEWStream(path).write(data->data(), data->size()); in write_image()
|
/third_party/skia/src/pdf/ |
H A D | SkPDFGraphicStackState.cpp | 132 apply_clip(clipStack, outsetBounds, [wStream](const SkPath& path) { in append_clip() 133 append_clip_path(path, wStream); in append_clip()
|
/third_party/skia/third_party/externals/angle2/util/ |
H A D | OSWindow.cpp | 464 for (const std::string &path : searchPaths) in FindTestDataPath() 467 pathStream << path << "/" << searchPath; in FindTestDataPath()
|
/third_party/skia/third_party/externals/angle2/util/posix/ |
H A D | test_utils_posix.cpp | 412 // return PathService::Get(DIR_CACHE, path); in GetTempDir() 429 bool DeleteSystemFile(const char *path) in DeleteSystemFile() argument 431 return unlink(path) == 0; in DeleteSystemFile()
|
/third_party/openssl/crypto/dso/ |
H A D | dso_lib.c | 300 int DSO_pathbyaddr(void *addr, char *path, int sz) in DSO_pathbyaddr() argument 308 return (*meth->pathbyaddr) (addr, path, sz); in DSO_pathbyaddr()
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
H A D | glnames.py | 30 import sys, string, struct, re, os.path namespace 5316 write( " * %-71s\n" % os.path.basename( sys.argv[1] ) )
|
/third_party/python/Modules/_io/ |
H A D | _iomodule.c | 83 file is either a text or byte string giving the name (and the path 501 path : unicode 506 with calling open(path, 'rb'). 511 _io_open_code_impl(PyObject *module, PyObject *path) in _io_open_code_impl() 514 return PyFile_OpenCodeObject(path); in _io_open_code_impl() 510 _io_open_code_impl(PyObject *module, PyObject *path) _io_open_code_impl() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugLine.h | 136 sys::path::Style Style = sys::path::Style::native) const; 177 /// An unsigned integer representing the DWARF path discriminator value
|
/third_party/skia/tools/ |
H A D | ToolUtils.h | 244 inline bool EncodeImageToFile(const char* path, const T& src, SkEncodedImageFormat f, int q) { in EncodeImageToFile() argument 245 SkFILEWStream file(path); in EncodeImageToFile() 295 // Calls the provided PathSniffCallback for each path in the given file.
|
/third_party/skia/tools/fm/fm_bot/ |
H A D | fm_bot.go | 14 "path/filepath" 142 err := filepath.Walk(match, func(path string, info os.FileInfo, err error) error { 144 w.Sources = append(w.Sources, path)
|
/third_party/vixl/tools/test_generator/ |
H A D | generator.py | 29 import os.path namespace 694 with open(os.path.join(output_directory, self.GetTraceFileName(mnemonic)),
|
/third_party/protobuf/src/google/protobuf/io/ |
H A D | printer.cc | 94 const std::vector<int>& path) { in Annotate() 109 path); in Annotate() 92 Annotate(const char* begin_varname, const char* end_varname, const std::string& file_path, const std::vector<int>& path) Annotate() argument
|
/third_party/python/Lib/test/ |
H A D | test_readline.py | 274 inputrc = os.path.join(test_dir, "inputrc") 278 history_file = os.path.join(test_dir, "history")
|
H A D | test_shelve.py | 49 fn = os.path.join(os_helper.TESTFN, "shelftemp.db") 196 self.base_path = os.path.join(dirname, "shelftemp.db")
|
/third_party/skia/gm/ |
H A D | compressed_textures.cpp | 43 // The resulting path will be centered at (0,0) and its size will match 'dimensions' 75 SkPath path = make_gear(dimensions, 9); in render_level() local 92 c.drawPath(path, paint); in render_level()
|