Home
last modified time | relevance | path

Searched refs:pathsep (Results 1 – 25 of 95) sorted by relevance

1234

/third_party/libinput/src/
Dbuilddir.h39 char *pathsep; in builddir_lookup() local
55 pathsep = strrchr(execdir, '/'); in builddir_lookup()
56 if (!pathsep) in builddir_lookup()
59 *pathsep = '\0'; in builddir_lookup()
/third_party/curl/lib/
Durlapi.c279 char *pathsep; in concat_url() local
305 pathsep = strchr(protsep, '?'); in concat_url()
306 if(pathsep) in concat_url()
307 *pathsep = 0; in concat_url()
314 pathsep = strrchr(protsep, '/'); in concat_url()
315 if(pathsep) in concat_url()
316 *pathsep = 0; in concat_url()
321 pathsep = strchr(protsep, '/'); in concat_url()
322 if(pathsep) in concat_url()
323 protsep = pathsep + 1; in concat_url()
[all …]
/third_party/node/deps/npm/test/need-npm5-update/
Dlegacy-npm-self-install.js44 var pathsep = isWin32 ? ';' : ':'
52 var PATH = env.PATH ? env.PATH.split(pathsep) : []
56 env.PATH = PATH.join(pathsep)
/third_party/openssl/apps/
Drehash.c337 const char *pathsep; in do_dir() local
347 pathsep = (buflen && !ends_with_dirsep(dirname)) ? "/": ""; in do_dir()
375 dirname, pathsep, filename) >= buflen) in do_dir()
408 dirname, pathsep, &n, bp->hash, in do_dir()
430 dirname, pathsep, &n, bp->hash, in do_dir()
/third_party/python/Lib/distutils/command/
Dbuild_ext.py55 sep_by = " (separated by '%s')" % os.pathsep
155 self.include_dirs = self.include_dirs.split(os.pathsep)
164 self.include_dirs.extend(py_include.split(os.path.pathsep))
167 plat_py_include.split(os.path.pathsep))
179 self.library_dirs = self.library_dirs.split(os.pathsep)
184 self.rpath = self.rpath.split(os.pathsep)
/third_party/python/Lib/distutils/tests/
Dtest_config_cmd.py68 cmd.include_dirs = 'one%stwo' % os.pathsep
70 cmd.library_dirs = 'three%sfour' % os.pathsep
Dtest_build_ext.py193 for p in py_include.split(os.path.pathsep):
197 for p in plat_py_include.split(os.path.pathsep):
210 cmd.library_dirs = 'my_lib_dir%sother_lib_dir' % os.pathsep
218 cmd.rpath = 'one%stwo' % os.pathsep
/third_party/python/Lib/test/
Dtest_mailcap.py83 env_mailcaps = env["MAILCAPS"].split(os.pathsep)
86 env["MAILCAPS"] = os.pathsep.join(env_mailcaps)
Dtest_embed.py256 env = dict(os.environ, PYTHONPATH=os.pathsep.join(sys.path))
272 env['PYTHONPATH'] = os.pathsep.join(sys.path)
647 paths = pythonpath_env.split(os.path.pathsep)
700 expected['module_search_path'] = os.path.pathsep.join(config['module_search_paths'])
1141 env = {'TESTPATH': os.path.pathsep.join(paths)}
1164 env = {'TESTPATH': os.path.pathsep.join(paths)}
1225 paths_str = os.path.pathsep.join(paths)
1256 paths_str = os.path.pathsep.join(paths)
1383 self.assertEqual(Py_GetPath().split(os.path.pathsep),
/third_party/python/PCbuild/
Dprepare_ssl.py31 entries = os.environ["PATH"].split(os.pathsep)
188 os.pathsep + \
/third_party/boost/libs/predef/tools/ci/
Dlibrary_test.py86 os.environ['PATH'] = os.pathsep.join([
96 os.environ['PATH'] = os.pathsep.join([self.b2_dir, os.environ['PATH']])
/third_party/cef/patch/patches/
Drunhooks.patch33 runtime_path = os.path.pathsep.join(vs_runtime_dll_dirs)
34 os.environ['PATH'] = runtime_path + os.path.pathsep + os.environ['PATH']
/third_party/flutter/skia/infra/bots/recipe_modules/git/
Dapi.py18 return self.m.env({'PATH': self.m.path.pathsep.join(
/third_party/skia/infra/bots/recipe_modules/git/
Dapi.py18 return self.m.env({'PATH': self.m.path.pathsep.join(
/third_party/python/Lib/distutils/
D_msvccompiler.py153 paths = os.getenv('path').split(os.pathsep)
226 paths = self._paths.split(os.pathsep)
234 for dir in vc_env.get('include', '').split(os.pathsep):
238 for dir in vc_env.get('lib', '').split(os.pathsep):
/third_party/flutter/skia/tools/infra/
Dgo.py35 for entry in os.environ.get('PATH', '').split(os.pathsep):
/third_party/skia/infra/bots/recipe_modules/infra/
Dapi.py29 'PATH': self.m.path.pathsep.join([
/third_party/cef/tools/
Dgclient_util.py16 paths = os.environ.get('PATH').split(os.pathsep)
/third_party/boost/tools/build/src/util/
Dpath.py331 splitdirs += dir.split (os.pathsep)
449 for p in elem.split(os.path.pathsep):
/third_party/skia/tools/infra/
Dgo.py35 for entry in os.environ.get('PATH', '').split(os.pathsep):
/third_party/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/
Dlit.cfg26 path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
/third_party/boost/more/getting_started/detail/
Dcommon-unix.rst23 .. |pathsep| replace:: colon substdef
/third_party/python/Tools/scripts/
Dwhich.py17 pathlist = os.environ['PATH'].split(os.pathsep)
Dwin_add2path.py42 envpath = os.pathsep.join(paths)
/third_party/python/PC/layout/support/
Dpip.py55 search_path = os.pathsep.join(wheels)

1234