Home
last modified time | relevance | path

Searched refs:path0 (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Python/
Dpathconfig.c619 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 …]
Dsysmodule.c3157 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/
DPathOpsBuilderTest.cpp328 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()
DPathBuilderTest.cpp284 auto path0 = SkPathBuilder().addPolygon(pts, i, isClosed).detach(); in DEF_TEST() local
286 REPORTER_ASSERT(reporter, path0 == path1); in DEF_TEST()
DPathTest.cpp1170 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()
DPathOpsBuildUseTest.cpp26 SkPath path0(path); in build1_1() local
27 builder.add(path0, (SkPathOp) 2); in build1_1()
/external/skqp/tests/
DPathOpsBuilderTest.cpp328 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()
DPathTest.cpp1178 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()
DPathOpsBuildUseTest.cpp27 SkPath path0(path); in build1_1() local
28 builder.add(path0, (SkPathOp) 2); in build1_1()
/external/python/cpython3/Modules/
Dmain.c158 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/
Dpatheffects.cpp183 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/
Dhlo_module_group_metadata.cc271 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()
Dhlo_module_group_metadata.h160 const std::vector<TrackedInstruction>& path0,
/external/python/cpython3/Include/internal/
Dpycore_pathconfig.h56 PyObject **path0);
/external/skia/gm/
Dpatheffects.cpp194 SkPath path0 = SkPath::Circle(100, 100, 60), in onDraw() local
220 for (const SkPath& path : { path0, path1 }) { in onDraw()
/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py2209 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/
Dcelt_encoder.c592 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/
DTestPathHeader.java1202 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()