Home
last modified time | relevance | path

Searched refs:path (Results 1026 - 1050 of 8433) sorted by relevance

1...<<41424344454647484950>>...338

/third_party/skia/infra/bots/recipes/
H A Dskpbench.py17 'recipe_engine/path',
32 with api.context(cwd=api.path['start_dir'].join('skia')):
61 table = api.path.join(api.vars.swarming_out_dir, 'table')
81 skpbench_invocation = api.path.join(api.flavor.device_dirs.bin_dir, 'skpbench')
112 api.path.join(api.flavor.device_dirs.skp_dir, 'desk_*svg.skp'),
113 api.path.join(api.flavor.device_dirs.skp_dir, 'desk_motionmark*.skp'),
114 api.path.join(api.flavor.device_dirs.skp_dir, 'desk_chalkboard.skp')]
145 json_path = api.path.join(
200 api.path.exists(
201 api.path['start_di
[all...]
/third_party/vk-gl-cts/scripts/log/
H A Dbottleneck_report.py32 self.path = ""
38 self.path = ""
55 self.element.path = attrs.getValue("CasePath")
71 print('%-4i%12i\t%12s' % (int(ndx), int(test.timeOfExecution), test.path))
86 self.element.path = attrs.getValue("Name")
87 if self.element.path == "dEQP-VK" :
92 if test.path[:test.path.rfind(".")] in self.element.path :
111 if test.path
[all...]
/kernel/linux/linux-6.6/fs/btrfs/
H A Ddir-item.h13 struct btrfs_path *path, u64 dir,
18 struct btrfs_path *path, u64 dir,
21 struct btrfs_path *path, u64 dirid,
25 struct btrfs_path *path,
29 struct btrfs_path *path, u64 objectid,
34 struct btrfs_path *path, u64 dir,
38 struct btrfs_path *path,
/third_party/libabigail/tests/
H A Druntestfedabipkgdiff.py.in47 (['--from', 'fc20', os.path.join(INPUT_DIR,
65 ([os.path.join(INPUT_DIR, 'packages/dbus-glib/0.100.2/2.fc20/x86_64/dbus-glib-0.100.2-2.fc20.x86_64.rpm'),
66 os.path.join(INPUT_DIR, 'packages/dbus-glib/0.106/1.fc23/x86_64/dbus-glib-0.106-1.fc23.x86_64.rpm')],
70 ([os.path.join(INPUT_DIR, 'dbus-glib/dbus-glib-0.100.2-2.fc20.x86_64.rpm'),
71 os.path.join(INPUT_DIR, 'dbus-glib/dbus-glib-0.106-1.fc23.x86_64.rpm')],
75 ([os.path.join(INPUT_DIR, 'nss-util/nss-util-3.12.6-1.fc14.x86_64.rpm'),
76 os.path.join(INPUT_DIR, 'nss-util/nss-util-3.24.0-2.0.fc25.x86_64.rpm')],
94 if not os.path.exists(OUTPUT_DIR):
117 reference_report_path = os.path.join(TEST_SRC_DIR, reference_report_path)
118 output_path = os.path
[all...]
/third_party/mesa3d/docs/
H A Ddoxygen-wrapper.py68 input_files=[ os.path.abspath(i) for i in input_paths ],
69 output_xml=os.path.abspath(output_path),
86 this_dir = os.path.dirname(os.path.abspath(__file__))
87 mesa_dir = os.path.join(this_dir, '..')
89 if os.path.isabs(p):
91 return os.path.join(mesa_dir, p)
/third_party/ltp/testcases/kernel/syscalls/pathconf/
H A Dpathconf01.c143 char *path; variable
146 {"l:", &lflag, &path}, /* -l <path to test> */
158 path = tst_get_tmpdir(); in main()
179 TEST(pathconf(path, args[i].value)); in main()
189 path, args[i].define_tag, TEST_ERRNO, in main()
194 path, args[i].define_tag, in main()
227 free(path); in cleanup()
236 printf(" -l path a path t in help()
[all...]
/third_party/skia/tests/
H A DWebpTest.cpp15 const char* path = "images/blendBG.webp"; in DEF_TEST() local
16 auto codec = SkCodec::MakeFromData(GetResourceAsData(path)); in DEF_TEST()
18 ERRORF(r, "Failed to open/decode %s", path); in DEF_TEST()
36 ERRORF(r, "Failed to decode %s frame %i (premul) - error %s", path, i, in DEF_TEST()
43 ERRORF(r, "Failed to getFrameInfo for %s frame %i", path, i); in DEF_TEST()
52 ERRORF(r, "Failed to decode %s frame %i (change) - error %s", path, i, in DEF_TEST()
58 " with mismatched SkAlphaType", path, i); in DEF_TEST()
/third_party/python/Modules/_blake2/
H A Dblake2b2s.py6 HERE = os.path.dirname(os.path.abspath(__file__))
7 BLAKE2 = os.path.join(HERE, 'impl')
14 name = os.path.join(BLAKE2, name)
15 if os.path.isfile(name):
37 with open(os.path.join(HERE, 'blake2b_impl.c')) as f:
43 with open(os.path.join(HERE, 'blake2s_impl.c'), 'w') as f:
/third_party/skia/docs/examples/
H A Dcount_verbs.cpp8 SkPath path; in REG_FIDDLE() local
10 SkTextUtils::GetPath(text, strlen(text), SkTextEncoding::kUTF8, 0, 0, font, &path); in REG_FIDDLE()
11 return path; in REG_FIDDLE()
14 static void count_verbs(const SkPath& path, int counts[6]) { in REG_FIDDLE() argument
15 SkPath::Iter it(path, false); in REG_FIDDLE()
33 SkPath path = make_path(font); in REG_FIDDLE() local
35 count_verbs(path, counts); in REG_FIDDLE()
H A Dconvex_overstroke_linear_approx_curve.cpp25 SkPath path; in REG_FIDDLE() local
26 path.moveTo(p1); in REG_FIDDLE()
27 path.lineTo(p2); in REG_FIDDLE()
30 path.lineTo(points[i]); in REG_FIDDLE()
32 path.lineTo(p1); in REG_FIDDLE()
33 // path.close(); in REG_FIDDLE()
41 canvas->drawPath(path, p); in REG_FIDDLE()
44 p.getFillPath(path, &fillpath); in REG_FIDDLE()
/third_party/node/deps/v8/third_party/zlib/google/
H A Dzip_unittest.cc36 // Convenience macro to create a file path from a string literal.
37 #define FP(path) base::FilePath(FILE_PATH_LITERAL(path))
48 for (base::FilePath path = files.Next(); !path.empty(); path = files.Next()) { in GetRelativePaths()
50 EXPECT_TRUE(dir.AppendRelativePath(path, &relative)); in GetRelativePaths()
163 for (const base::FilePath& path : paths) {
164 const auto it = files_.find(path);
176 bool List(const base::FilePath& path,
258 base::FilePath path; GetDataDirectory() local
274 TestUnzipFile(const base::FilePath& path, bool expect_hidden_files) TestUnzipFile() argument
401 base::FilePath path = GetDataDirectory().AppendASCII("evil.zip"); TEST_F() local
413 base::FilePath path = TEST_F() local
[all...]
/third_party/node/deps/zlib/google/
H A Dzip_unittest.cc36 // Convenience macro to create a file path from a string literal.
37 #define FP(path) base::FilePath(FILE_PATH_LITERAL(path))
48 for (base::FilePath path = files.Next(); !path.empty(); path = files.Next()) { in GetRelativePaths()
50 EXPECT_TRUE(dir.AppendRelativePath(path, &relative)); in GetRelativePaths()
163 for (const base::FilePath& path : paths) {
164 const auto it = files_.find(path);
176 bool List(const base::FilePath& path,
258 base::FilePath path; GetDataDirectory() local
274 TestUnzipFile(const base::FilePath& path, bool expect_hidden_files) TestUnzipFile() argument
401 base::FilePath path = GetDataDirectory().AppendASCII("evil.zip"); TEST_F() local
413 base::FilePath path = TEST_F() local
[all...]
/third_party/python/Lib/test/
H A Dtest_os.py114 # longer path if longer paths support is enabled. Internally, the os
120 # On Windows, the test can stop when trying to create a path longer
124 # On VxWorks, PATH_MAX is defined as 1024 bytes. Creating a path
133 with os_helper.change_cwd(tmpdir) as path:
134 expected = path
140 need = min_len - (len(cwd) + len(os.path.sep))
146 path = os.path.join(path, dirname)
148 os.mkdir(path)
[all...]
/kernel/linux/linux-6.6/sound/soc/
H A Dsoc-dapm.c203 * the size of the generic function and at the same time the fast path of the
244 * have changed. E.g. if the source state of a widget changes or a path is added
261 * have changed. E.g. if the sink state of a widget changes or a path is added
271 * for the widgets connected to a path
272 * @p: The path to invalidate
274 * Resets the cached number of inputs for the sink of the path and the cached
275 * number of outputs for the source of the path.
277 * This function must be called when a path is added, removed or the connected
293 * so there is no need to re-check the path. in dapm_path_invalidate()
509 struct snd_soc_dapm_path *path) in dapm_kcontrol_add_path()
508 dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol, struct snd_soc_dapm_path *path) dapm_kcontrol_add_path() argument
741 dapm_connect_mux(struct snd_soc_dapm_context *dapm, struct snd_soc_dapm_path *path, const char *control_name, struct snd_soc_dapm_widget *w) dapm_connect_mux() argument
824 dapm_connect_mixer(struct snd_soc_dapm_context *dapm, struct snd_soc_dapm_path *path, const char *control_name) dapm_connect_mixer() argument
982 struct snd_soc_dapm_path *path; dapm_new_mixer() local
1018 struct snd_soc_dapm_path *path; dapm_new_mux() local
1161 struct snd_soc_dapm_path *path; invalidate_paths_ep() local
1196 struct snd_soc_dapm_path *path; is_connected_ep() local
1450 struct snd_soc_dapm_path *path; dapm_supply_check_power() local
1880 struct snd_soc_dapm_path *path; dapm_power_one_widget() local
2264 soc_dapm_connect_path(struct snd_soc_dapm_path *path, bool connect, const char *reason) soc_dapm_connect_path() argument
2280 struct snd_soc_dapm_path *path; soc_dapm_mux_update_power() local
2327 struct snd_soc_dapm_path *path; soc_dapm_mixer_update_power() local
2479 dapm_free_path(struct snd_soc_dapm_path *path) dapm_free_path() argument
2854 struct snd_soc_dapm_path *path; snd_soc_dapm_add_path() local
3046 struct snd_soc_dapm_path *path, *p; snd_soc_dapm_del_route() local
3168 struct snd_soc_dapm_path *path; snd_soc_dapm_weak_route() local
3835 struct snd_soc_dapm_path *path; snd_soc_dai_link_event_pre_pmu() local
3958 struct snd_soc_dapm_path *path; snd_soc_dai_link_event() local
[all...]
/third_party/python/Lib/
H A Dtrace.py72 self._dirs = [] if not dirs else [os.path.normpath(d)
119 def _modname(path):
120 """Return a plausible module name for the path."""
122 base = os.path.basename(path)
123 filename, ext = os.path.splitext(base)
126 def _fullmodname(path):
127 """Return a plausible module name for the path."""
129 # If the file 'path' is part of a package, then the filename isn't
131 # looking in sys.path fo
[all...]
/third_party/eudev/src/shared/
H A Dmkdir.h23 int mkdir_parents(const char *path, mode_t mode);
24 int udev_mkdir_p(const char *path, mode_t mode);
27 int mkdir_parents_label(const char *path, mode_t mode);
31 int mkdir_safe_internal(const char *path, mode_t mode, uid_t uid, gid_t gid, mkdir_func_t _mkdir);
32 int mkdir_parents_internal(const char *prefix, const char *path, mode_t mode, mkdir_func_t _mkdir);
33 int mkdir_p_internal(const char *prefix, const char *path, mode_t mode, mkdir_func_t _mkdir);
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A D__freadable.c19 const char *path = "/data/freadable.txt"; variable
29 FILE *fp = fopen(path, "w"); in __freadable_0100()
32 FILE *ffp = fopen(path, "r"); in __freadable_0100()
39 remove(path); in __freadable_0100()
49 FILE *fp = fopen(path, "wb"); in __freadable_0200()
56 remove(path); in __freadable_0200()
/third_party/skia/third_party/externals/angle2/scripts/
H A Dangle_deqp_test_merge.py11 d = os.path.dirname
12 THIS_DIR = d(os.path.abspath(__file__))
14 sys.path.insert(0, os.path.join(ANGLE_SRC_DIR, 'testing', 'merge_scripts'))
16 sys.path.insert(0, os.path.join(CHROMIUM_SRC_DIR, 'testing', 'merge_scripts'))
/third_party/skia/third_party/externals/angle2/src/common/
H A Dsystem_utils_linux.cpp23 // so we just use a big buffer and hope the path fits in it. in GetExecutablePath()
24 char path[4096]; in GetExecutablePath() local
26 ssize_t result = readlink("/proc/self/exe", path, sizeof(path) - 1); in GetExecutablePath()
27 if (result < 0 || static_cast<size_t>(result) >= sizeof(path) - 1) in GetExecutablePath()
32 path[result] = '\0'; in GetExecutablePath()
33 return path; in GetExecutablePath()
/third_party/vk-gl-cts/external/
H A Dfetch_kc_cts.py30 scriptPath = os.path.join(os.path.dirname(__file__), "..", "scripts")
31 sys.path.insert(0, scriptPath)
35 EXTERNAL_DIR = os.path.realpath(os.path.normpath(os.path.dirname(__file__)))
/third_party/skia/src/utils/
H A DSkClipStackUtils.cpp11 void SkClipStack_AsPath(const SkClipStack& cs, SkPath* path) { in SkClipStack_AsPath() argument
12 path->reset(); in SkClipStack_AsPath()
13 path->setFillType(SkPathFillType::kInverseEvenOdd); in SkClipStack_AsPath()
29 *path = operand; in SkClipStack_AsPath()
33 Op(*path, operand, (SkPathOp)elementOp, path); in SkClipStack_AsPath()
/third_party/skia/third_party/externals/angle2/src/tests/skia_gold/
H A Dangle_skia_gold_properties.py11 d = os.path.dirname
12 THIS_DIR = d(os.path.abspath(__file__))
14 sys.path.insert(0, os.path.join(ANGLE_SRC_DIR, 'build'))
16 sys.path.insert(0, os.path.join(CHROMIUM_SRC_DIR, 'build'))
H A Dangle_skia_gold_session.py9 d = os.path.dirname
10 THIS_DIR = d(os.path.abspath(__file__))
12 sys.path.insert(0, os.path.join(ANGLE_SRC_DIR, 'build'))
14 sys.path.insert(0, os.path.join(CHROMIUM_SRC_DIR, 'build'))
H A Dangle_skia_gold_session_manager.py9 d = os.path.dirname
10 THIS_DIR = d(os.path.abspath(__file__))
12 sys.path.insert(0, os.path.join(ANGLE_SRC_DIR, 'build'))
14 sys.path.insert(0, os.path.join(CHROMIUM_SRC_DIR, 'build'))
/third_party/skia/third_party/externals/sfntly/cpp/tools/
H A Dclean_fonts_repo.py42 map(lambda path: os.removedirs(os.path.dirname(path)), paths)
50 map(lambda path: os.removedirs(os.path.dirname(path)), paths)

Completed in 20 milliseconds

1...<<41424344454647484950>>...338