/external/python/cpython3/Python/ |
D | pathconfig.c | 619 wchar_t *path0 = argv0; in _PyPathConfig_ComputeSysPath0() local 633 path0 = fullpath; in _PyPathConfig_ComputeSysPath0() 635 path0 = L"."; in _PyPathConfig_ComputeSysPath0() 637 n = wcslen(path0); in _PyPathConfig_ComputeSysPath0() 646 nr = _Py_wreadlink(path0, link, Py_ARRAY_LENGTH(link)); in _PyPathConfig_ComputeSysPath0() 652 path0 = link; /* Link to absolute path */ in _PyPathConfig_ComputeSysPath0() 659 wchar_t *q = wcsrchr(path0, SEP); in _PyPathConfig_ComputeSysPath0() 662 path0 = link; in _PyPathConfig_ComputeSysPath0() 666 wcsncpy(path0copy, path0, MAXPATHLEN); in _PyPathConfig_ComputeSysPath0() 670 path0 = path0copy; in _PyPathConfig_ComputeSysPath0() [all …]
|
D | sysmodule.c | 3157 PyObject *path0 = NULL; in PySys_SetArgvEx() local 3158 if (_PyPathConfig_ComputeSysPath0(&argv_list, &path0)) { in PySys_SetArgvEx() 3159 if (path0 == NULL) { in PySys_SetArgvEx() 3165 if (PyList_Insert(sys_path, 0, path0) < 0) { in PySys_SetArgvEx() 3166 Py_DECREF(path0); in PySys_SetArgvEx() 3170 Py_DECREF(path0); in PySys_SetArgvEx()
|
/external/skia/tests/ |
D | PathOpsBuilderTest.cpp | 328 SkPath path0; in DEF_TEST() local 329 path0.moveTo(140, 40); in DEF_TEST() 330 path0.lineTo(200, 210); in DEF_TEST() 331 path0.lineTo(40, 100); in DEF_TEST() 332 path0.lineTo(2.22223e+07f, 2.22222e+14f); in DEF_TEST() 333 path0.lineTo(2.22223e+07f, 2.22222e+14f); in DEF_TEST() 343 builder.add(path0, SkPathOp::kUnion_SkPathOp); in DEF_TEST() 345 builder.resolve(&path0); in DEF_TEST() 353 SkPath path0(path); in DEF_TEST() local 360 builder.add(path0, SkPathOp::kUnion_SkPathOp); in DEF_TEST()
|
D | PathBuilderTest.cpp | 284 auto path0 = SkPathBuilder().addPolygon(pts, i, isClosed).detach(); in DEF_TEST() local 286 REPORTER_ASSERT(reporter, path0 == path1); in DEF_TEST()
|
D | PathTest.cpp | 1170 SkPath path0, path1; in test_bounds() local 1172 path0.addRect(rects[i]); in test_bounds() 1176 REPORTER_ASSERT(reporter, path0.getBounds() == path1.getBounds()); in test_bounds()
|
D | PathOpsBuildUseTest.cpp | 26 SkPath path0(path); in build1_1() local 27 builder.add(path0, (SkPathOp) 2); in build1_1()
|
/external/skqp/tests/ |
D | PathOpsBuilderTest.cpp | 328 SkPath path0; in DEF_TEST() local 329 path0.moveTo(140, 40); in DEF_TEST() 330 path0.lineTo(200, 210); in DEF_TEST() 331 path0.lineTo(40, 100); in DEF_TEST() 332 path0.lineTo(2.22223e+07f, 2.22222e+14f); in DEF_TEST() 333 path0.lineTo(2.22223e+07f, 2.22222e+14f); in DEF_TEST() 343 builder.add(path0, SkPathOp::kUnion_SkPathOp); in DEF_TEST() 345 builder.resolve(&path0); in DEF_TEST() 353 SkPath path0(path); in DEF_TEST() local 360 builder.add(path0, SkPathOp::kUnion_SkPathOp); in DEF_TEST()
|
D | PathTest.cpp | 1178 SkPath path0, path1; in test_bounds() local 1180 path0.addRect(rects[i]); in test_bounds() 1184 REPORTER_ASSERT(reporter, path0.getBounds() == path1.getBounds()); in test_bounds()
|
D | PathOpsBuildUseTest.cpp | 27 SkPath path0(path); in build1_1() local 28 builder.add(path0, (SkPathOp) 2); in build1_1()
|
/external/python/cpython3/Modules/ |
D | main.c | 158 pymain_sys_path_add_path0(PyInterpreterState *interp, PyObject *path0) in pymain_sys_path_add_path0() argument 177 if (PyList_Insert(sys_path, 0, path0)) { in pymain_sys_path_add_path0() 568 PyObject *path0 = NULL; in pymain_run_python() local 569 int res = _PyPathConfig_ComputeSysPath0(&config->argv, &path0); in pymain_run_python() 575 if (pymain_sys_path_add_path0(interp, path0) < 0) { in pymain_run_python() 576 Py_DECREF(path0); in pymain_run_python() 579 Py_DECREF(path0); in pymain_run_python()
|
/external/skqp/gm/ |
D | patheffects.cpp | 183 SkPath path0, path1, path2; in onDraw() local 184 path0.addCircle(100, 100, 60); in onDraw() 208 for (auto& path : { path0, path1 }) { in onDraw()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_module_group_metadata.cc | 271 const std::vector<TrackedInstruction>& path0, in CheckCompanionPathsCompatibility() argument 273 if (path0.size() != path1.size()) { in CheckCompanionPathsCompatibility() 274 VLOG(5) << "Companion path size do not match: " << path0.size() in CheckCompanionPathsCompatibility() 278 for (int64 i = 0; i < path0.size(); ++i) { in CheckCompanionPathsCompatibility() 279 if (path0[i] != path1[i]) { in CheckCompanionPathsCompatibility() 281 << " do not have the same opcode: " << path0[i].ToString() in CheckCompanionPathsCompatibility()
|
D | hlo_module_group_metadata.h | 160 const std::vector<TrackedInstruction>& path0,
|
/external/python/cpython3/Include/internal/ |
D | pycore_pathconfig.h | 56 PyObject **path0);
|
/external/skia/gm/ |
D | patheffects.cpp | 194 SkPath path0 = SkPath::Circle(100, 100, 60), in onDraw() local 220 for (const SkPath& path : { path0, path1 }) { in onDraw()
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | fake_os_test.py | 2209 path0 = self.make_path('foo') + self.os.sep 2211 errno.ENOENT, self.os.symlink, path0, path0) 2216 path0 = self.make_path('foo') + self.os.sep 2218 errno.EINVAL, self.os.symlink, path0, path0) 2402 path0 = self.make_path('foo') + self.os.sep 2406 self.os.link, path1, path0) 2411 path0 = self.make_path('foo') + self.os.sep 2414 self.os.link(path1, path0) 2464 path0 = self.make_path('bar') 2465 self.os.symlink(path0, path1) [all …]
|
/external/libopus/celt/ |
D | celt_encoder.c | 592 VARDECL(int, path0); in tf_analysis() 608 ALLOC(path0, len, int); in tf_analysis() 706 path0[i]= 0; in tf_analysis() 709 path0[i]= 1; in tf_analysis() 732 tf_res[i] = path0[i+1]; in tf_analysis()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestPathHeader.java | 1202 final String path0 = prefix + "format" + suffix; in Test8414() local 1204 String v0 = english.getStringValue(path0); in Test8414() 1206 String p0 = pathDescription.getDescription(path0, v0, null, null); in Test8414()
|