/external/skqp/src/c/ |
D | sk_surface.cpp | 92 static const SkPath& AsPath(const sk_path_t& cpath) { in AsPath() argument 93 return reinterpret_cast<const SkPath&>(cpath); in AsPath() 96 static SkPath* as_path(sk_path_t* cpath) { in as_path() argument 97 return reinterpret_cast<SkPath*>(cpath); in as_path() 177 void sk_path_delete(sk_path_t* cpath) { delete as_path(cpath); } in sk_path_delete() argument 179 void sk_path_move_to(sk_path_t* cpath, float x, float y) { in sk_path_move_to() argument 180 as_path(cpath)->moveTo(x, y); in sk_path_move_to() 183 void sk_path_line_to(sk_path_t* cpath, float x, float y) { in sk_path_line_to() argument 184 as_path(cpath)->lineTo(x, y); in sk_path_line_to() 187 void sk_path_quad_to(sk_path_t* cpath, float x0, float y0, float x1, float y1) { in sk_path_quad_to() argument [all …]
|
/external/skia/src/c/ |
D | sk_surface.cpp | 93 static const SkPath& AsPath(const sk_path_t& cpath) { in AsPath() argument 94 return reinterpret_cast<const SkPath&>(cpath); in AsPath() 97 static SkPath* as_path(sk_path_t* cpath) { in as_path() argument 98 return reinterpret_cast<SkPath*>(cpath); in as_path() 178 void sk_path_delete(sk_path_t* cpath) { delete as_path(cpath); } in sk_path_delete() argument 180 void sk_path_move_to(sk_path_t* cpath, float x, float y) { in sk_path_move_to() argument 181 as_path(cpath)->moveTo(x, y); in sk_path_move_to() 184 void sk_path_line_to(sk_path_t* cpath, float x, float y) { in sk_path_line_to() argument 185 as_path(cpath)->lineTo(x, y); in sk_path_line_to() 188 void sk_path_quad_to(sk_path_t* cpath, float x0, float y0, float x1, float y1) { in sk_path_quad_to() argument [all …]
|
/external/toybox/toys/other/ |
D | acpi.c | 29 char *cpath; 55 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, NULL)), O_RDONLY))) { in acpi_callback() 81 free(TT.cpath); in acpi_callback() 94 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, NULL)), O_RDONLY))) { in temp_callback() 103 free(TT.cpath); in temp_callback() 119 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, &dfd)), O_RDONLY))) { in cool_callback() 120 TT.cpath = strcat(TT.cpath, "/type"); in cool_callback() 121 if (readfile(TT.cpath, toybuf, 256) && !errno) { in cool_callback() 131 free(TT.cpath); in cool_callback()
|
/external/libxkbcommon/xkbcommon/src/compose/ |
D | table.c | 163 const char *cpath; in xkb_compose_table_new_from_locale() local 177 cpath = get_xcomposefile_path(); in xkb_compose_table_new_from_locale() 178 if (cpath) { in xkb_compose_table_new_from_locale() 179 file = fopen(cpath, "r"); in xkb_compose_table_new_from_locale() 184 cpath = path = get_home_xcompose_file_path(); in xkb_compose_table_new_from_locale() 193 cpath = path = get_locale_compose_file_path(table->locale); in xkb_compose_table_new_from_locale() 207 ok = parse_file(table, file, cpath); in xkb_compose_table_new_from_locale()
|
/external/pdfium/fpdfsdk/ |
D | fpdf_editpath.cpp | 126 CPDF_Path& cpath = pPathObj->path(); in FPDFPath_BezierTo() local 127 cpath.AppendPoint(CFX_PointF(x1, y1), FXPT_TYPE::BezierTo, false); in FPDFPath_BezierTo() 128 cpath.AppendPoint(CFX_PointF(x2, y2), FXPT_TYPE::BezierTo, false); in FPDFPath_BezierTo() 129 cpath.AppendPoint(CFX_PointF(x3, y3), FXPT_TYPE::BezierTo, false); in FPDFPath_BezierTo() 139 CPDF_Path& cpath = pPathObj->path(); in FPDFPath_Close() local 140 if (cpath.GetPoints().empty()) in FPDFPath_Close() 143 cpath.ClosePath(); in FPDFPath_Close()
|
/external/libchrome/base/ |
D | base_paths_posix.cc | 72 char* cpath; in PathProviderPosix() 73 if ((cpath = getenv("CHROME_EXE_PATH")) != NULL) in PathProviderPosix() 74 *result = FilePath(cpath); in PathProviderPosix()
|
/external/grpc-grpc/src/python/grpcio/ |
D | support.py | 48 cpath = os.path.join(tempdir, 'a.c') 49 with open(cpath, 'w') as cfile: 52 compiler.compile([cpath])
|
/external/python/cpython3/Python/ |
D | fileutils.c | 1024 char *cpath; in _Py_stat() 1031 if (PyBytes_AsStringAndSize(bytes, &cpath, NULL) == -1) { in _Py_stat() 1036 ret = stat(cpath, statbuf); in _Py_stat() 1354 char *cpath; in _Py_wfopen() local 1362 cpath = _Py_EncodeLocaleRaw(path, NULL); in _Py_wfopen() 1363 if (cpath == NULL) { in _Py_wfopen() 1366 f = fopen(cpath, cmode); in _Py_wfopen() 1367 PyMem_RawFree(cpath); in _Py_wfopen() 1669 char *cpath; in _Py_wreadlink() local 1675 cpath = _Py_EncodeLocaleRaw(path, NULL); in _Py_wreadlink() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateCldrDateTimeTests.java | 74 String cpath = "//ldml/characters/exemplarCharacters"; in getInfo() local 75 String path = cldrFile.getFullXPath(cpath); in getInfo() 78 String exemplars = cldrFile.getStringValue(cpath); in getInfo()
|
/external/skia/experimental/tools/ |
D | pdf-comparison.py | 262 cpath, epath = (os.path.join(x, path) for x in (con, exp)) 263 if is_same(cpath, epath): 264 remove(cpath, epath) 298 cpath, epath = (os.path.join(x, path) for x in (con, exp)) 299 s = float(subprocess.check_output([image_diff_metric, cpath, epath]))
|
/external/dtc/ |
D | flattree.c | 728 static char *nodename_from_path(const char *ppath, const char *cpath) in nodename_from_path() argument 734 if (!strneq(ppath, cpath, plen)) in nodename_from_path() 736 cpath, ppath); in nodename_from_path() 742 return xstrdup(cpath + plen); in nodename_from_path()
|
/external/u-boot/scripts/dtc/ |
D | flattree.c | 728 static char *nodename_from_path(const char *ppath, const char *cpath) in nodename_from_path() argument 734 if (!strstarts(cpath, ppath)) in nodename_from_path() 736 cpath, ppath); in nodename_from_path() 742 return xstrdup(cpath + plen); in nodename_from_path()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | CLDRFile.java | 828 String cpath = it.next(); in putAll() local 829 String fullpath = getFullXPath(cpath); in putAll() 831 … hasDraftVersion.add(getNondraftNonaltXPath(cpath)); // strips the alt and the draft in putAll() 838 String cpath = it.next(); in putAll() local 839 cpath = getNondraftNonaltXPath(cpath); in putAll() 840 String newValue = other.getStringValue(cpath); in putAll() 841 String newFullPath = getNondraftNonaltXPath(other.getFullXPath(cpath)); in putAll() 843 newFullPath = addReferencesIfNeeded(newFullPath, getFullXPath(cpath)); in putAll() 845 if (!hasDraftVersion.contains(cpath)) { in putAll() 846 … if (cpath.startsWith("//ldml/identity/")) continue; // skip, since the error msg is not needed. in putAll() [all …]
|
/external/bcc/src/lua/src/ |
D | squish.lua | 181 local package_cpath = package.cpath:gsub("[^;]+", function (path)
|
/external/toybox/android/linux/generated/ |
D | globals.h | 210 char *cpath; member
|
/external/toybox/android/mac/generated/ |
D | globals.h | 210 char *cpath; member
|
/external/toybox/android/device/generated/ |
D | globals.h | 210 char *cpath; member
|
/external/ImageMagick/www/assets/ |
D | magick.css | 6 …cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 …
|
/external/llvm/bindings/go/llvm/ |
D | ir.go | 1774 cpath := C.CString(path) 1775 defer C.free(unsafe.Pointer(cpath)) 1776 fail := C.LLVMCreateMemoryBufferWithContentsOfFile(cpath, &b.C, &cmsg)
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/ |
D | ir.go | 1841 cpath := C.CString(path) 1842 defer C.free(unsafe.Pointer(cpath)) 1843 fail := C.LLVMCreateMemoryBufferWithContentsOfFile(cpath, &b.C, &cmsg)
|
/external/openssh/ |
D | ChangeLog | 5830 Add "cpath" to the ssh-agent pledge so the cleanup 5928 pledge "stdio rpath wpath cpath fattr tty proc exec"
|