/third_party/node/deps/npm/node_modules/make-dir/ |
D | index.js | 13 const checkPath = pth => { argument 15 const pathHasInvalidWinCharacters = /[<>:"|?*]/.test(pth.replace(path.parse(pth).root, '')); 18 const err = new Error(`Path contains invalid characters: ${pth}`); 32 const make = pth => { argument 33 return mkdir(pth, opts.mode) 34 .then(() => pth) 37 if (err.message.includes('null bytes') || path.dirname(pth) === pth) { 41 return make(path.dirname(pth)).then(() => make(pth)); 44 return stat(pth) 45 .then(stats => stats.isDirectory() ? pth : Promise.reject()) [all …]
|
/third_party/ltp/testcases/kernel/syscalls/keyctl/ |
D | keyctl02.c | 63 pthread_t pth[4]; in do_test() local 71 SAFE_PTHREAD_CREATE(&pth[0], NULL, do_read, in do_test() 73 SAFE_PTHREAD_CREATE(&pth[1], NULL, do_revoke, in do_test() 75 SAFE_PTHREAD_CREATE(&pth[2], NULL, do_read, in do_test() 77 SAFE_PTHREAD_CREATE(&pth[3], NULL, do_revoke, in do_test() 80 SAFE_PTHREAD_JOIN(pth[0], NULL); in do_test() 81 SAFE_PTHREAD_JOIN(pth[1], NULL); in do_test() 82 SAFE_PTHREAD_JOIN(pth[2], NULL); in do_test() 83 SAFE_PTHREAD_JOIN(pth[3], NULL); in do_test()
|
/third_party/node/deps/npm/node_modules/npm-run-path/ |
D | index.js | 12 let pth = path.resolve(opts.cwd); variable 15 while (prev !== pth) { 16 ret.push(path.join(pth, 'node_modules/.bin')); 17 prev = pth; 18 pth = path.resolve(pth, '..');
|
/third_party/flutter/skia/third_party/externals/sdl/premake/patches/ |
D | 713.patch | 14 local pth, src 31 - pth = node.path 32 + pth = nodePath 34 - pth = "/System/Library/Frameworks/" .. node.path 35 + pth = "/System/Library/Frameworks/" .. nodePath 43 + if string.find(pth, '^/') then 44 + pth = string.sub(pth, 2) 62 node.id, node.name, xcode.getfiletype(node), node.name, pth, src)
|
/third_party/boost/libs/process/test/ |
D | bind_stdin.cpp | 175 fs::path pth = variable 180 boost::filesystem::ofstream fs(pth); 190 bp::std_in <pth, 208 boost::filesystem::remove(pth); 218 fs::path pth = variable 223 boost::filesystem::ofstream fs(pth); 229 FILE * f = fopen(pth.string().c_str(), "r+"); 257 boost::filesystem::remove(pth);
|
D | cmd_test.cpp | 39 fs::path pth = master_test_suite().argv[1]; in BOOST_AUTO_TEST_CASE() local 47 (*itr) += fs::canonical(fs::absolute(pth.parent_path())).string(); in BOOST_AUTO_TEST_CASE() 66 fs::path pth = master_test_suite().argv[1]; in BOOST_AUTO_TEST_CASE() local 74 (*itr) += fs::canonical(fs::absolute(pth.parent_path())).string(); in BOOST_AUTO_TEST_CASE()
|
D | bind_stdout.cpp | 141 fs::path pth = variable 145 FILE* f = fopen(pth.string().c_str(), "w"); 161 fs::ifstream is{pth}; 167 boost::filesystem::remove(pth);
|
D | bind_stderr.cpp | 130 fs::path pth = variable 138 bp::std_err>pth, 145 fs::ifstream is{pth}; 151 boost::filesystem::remove(pth);
|
/third_party/boost/boost/process/ |
D | exe.hpp | 39 …typename boost::filesystem::path::value_type> operator()(const boost::filesystem::path & pth) const in operator ()() 41 return exe_setter_<typename boost::filesystem::path::value_type>(pth.native()); in operator ()() 45 …<typename boost::filesystem::path::value_type> operator=(const boost::filesystem::path & pth) const in operator =() 47 return exe_setter_<typename boost::filesystem::path::value_type>(pth.native()); in operator =()
|
/third_party/boost/boost/chrono/detail/inlined/posix/ |
D | thread_clock.hpp | 34 pthread_t pth=pthread_self(); in now() 37 pthread_getcpuclockid(pth, &clock_id); in now() 60 pthread_t pth=pthread_self(); in now() 63 pthread_getcpuclockid(pth, &clock_id); in now()
|
/third_party/ltp/utils/sctp/func_tests/ |
D | test_1_to_1_threads.c | 140 int pth[THREADS]; in main() local 178 pth[cnt] = cnt; in main() 179 status = pthread_create(&thread[cnt], &attr, relay, &pth[cnt]); in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | pthread_equal.c | 29 pthread_t pth = pthread_self(); in threadfuncB() local 30 int ret = pthread_equal(g_pthd_1, pth); in threadfuncB()
|
/third_party/boost/tools/inspect/ |
D | inspect.cpp | 137 bool visit_predicate( const path & pth ) in visit_predicate() argument 139 string local( boost::inspect::relative_to( pth, search_root_path() ) ); in visit_predicate() 140 string leaf( pth.leaf().string() ); in visit_predicate() 152 && !boost::filesystem::exists(pth / boost_no_inspect) in visit_predicate() 215 const path & pth, const string & content, const inspector_list & insp_list ) in check() argument 221 itr->inspector->inspect( lib, pth ); // always call two-argument form in check() 222 if ( find_signature( pth, itr->inspector->signatures() ) ) in check() 224 itr->inspector->inspect( lib, pth, content ); in check()
|
/third_party/python/Doc/library/ |
D | site.rst | 56 A path configuration file is a file whose name has the form :file:`{name}.pth` 66 An executable line in a :file:`.pth` file is run at every Python startup, 86 configuration files, :file:`foo.pth` and :file:`bar.pth`. Assume 87 :file:`foo.pth` contains the following:: 95 and :file:`bar.pth` contains:: 108 directory precedes the :file:`foo` directory because :file:`bar.pth` comes 109 alphabetically before :file:`foo.pth`; and :file:`spam` is omitted because it is 183 :file:`.pth` files in it will be processed. 210 Add a directory to sys.path and process its :file:`.pth` files. Typically
|
D | pkgutil.rst | 34 *name* argument. This feature is similar to :file:`\*.pth` files (see the
|
/third_party/ltp/testcases/kernel/sched/cfs-scheduler/ |
D | hackbench.c | 238 static unsigned int group(pthread_t * pth, in group() argument 266 pth[i] = create_worker(ctx, (void *)(void *)receiver); in group() 279 pth[num_fds + i] = in group()
|
/third_party/grpc/test/core/gprpp/ |
D | mpscq_test.cc | 172 for (auto& pth : pull_thds) { in test_mt_multipop() local 173 pth.Join(); in test_mt_multipop()
|
/third_party/gettext/gettext-tools/examples/po/ |
D | de.po | 8 # Philipp Thomas <pth@suse.de>, 2015. 16 "Last-Translator: Philipp Thomas <pth@suse.de>\n"
|
/third_party/boost/tools/build/src/tools/ |
D | clang-linux.jam | 38 : <toolset>clang <toolset-clang:platform>linux : pth ;
|
/third_party/gettext/gettext-runtime/po/ |
D | de.po | 77 # Philipp Thomas <pth@suse.com>, 2015.
|
D | ChangeLog.0 | 28 * de.po: Update from Philipp Thomas <pth@suse.de>.
|
/third_party/python/Doc/install/ |
D | index.rst | 557 search path, such as by putting a :file:`.pth` file in a site directory (see 674 directory. Path configuration files have an extension of :file:`.pth`, and each 681 directory containing the :file:`.pth` file. See the documentation of
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 940 :data:`sys.path` contains a ``.pth`` file.
|
/third_party/gettext/gettext-tools/po/ |
D | ChangeLog.1 | 21 * de.po: Update from Philipp Thomas <pth@suse.de>.
|
/third_party/gettext/gettext-runtime/m4/ |
D | ChangeLog.0 | 281 * threadlib.m4 (gl_THREADLIB_BODY): When testing whether pth works, use
|