Home
last modified time | relevance | path

Searched full:directory (Results 1 – 25 of 5801) sorted by relevance

12345678910>>...233

/third_party/mesa3d/.gitlab-ci/container/
Dbuild-skqp_git-sync-deps.patch19 @@ -94,21 +94,25 @@ def is_git_toplevel(git, directory):
22 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
23 - return os.path.realpath(directory) == os.path.realpath(toplevel)
24 + return os.path.realpath(directory) == os.path.realpath(toplevel.decode())
29 -def status(directory, checkoutable):
31 +def status(directory, commithash, change):
38 - directory = truncate(directory, dlen)
40 - sys.stdout.write('%-*s @ %s\n' % (dlen, directory, checkoutable))
41 + directory = truncate_beginning(directory, dlen)
44 + sys.stdout.write('%-*s %s %s\n' % (dlen, directory, symbol, commithash))
[all …]
/third_party/python/Tools/msi/lib/
Dlib_files.wxs10 <Component Id="$(var.ext).pyd" Directory="DLLs" Guid="*">
16 <Component Id="sqlite3.dll" Directory="DLLs" Guid="*">
19 <Component Id="libcrypto.dll" Directory="DLLs" Guid="*">
22 <Component Id="libssl.dll" Directory="DLLs" Guid="*">
25 <Component Id="libffi.dll" Directory="DLLs" Guid="*">
28 <Component Id="venvlauncher.exe" Directory="Lib_venv_scripts_nt" Guid="*">
31 <Component Id="venvwlauncher.exe" Directory="Lib_venv_scripts_nt" Guid="*">
38 <!-- The auto-generated directory is not available when building symbols -->
40 <Directory Id="Lib_venv__pdbs" Name="venv">
41 <Directory Id="Lib_venv_scripts__pdbs" Name="scripts">
[all …]
/third_party/skia/tools/
Dgit-sync-deps18 will use the file ../DEPS relative to this script's directory.
76 def git_repository_sync_is_disabled(git, directory): argument
79 [git, 'config', 'sync-deps.disable'], cwd=directory)
85 def is_git_toplevel(git, directory): argument
86 """Return true iff the directory is the top level of a Git repository.
91 directory (string) the path into which the repository
96 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
97 return os.path.realpath(directory) == os.path.realpath(toplevel.decode())
102 def status(directory, commithash, change): argument
109 directory = truncate_beginning(directory, dlen)
[all …]
/third_party/vk-gl-cts/external/amber/src/tools/
Dgit-sync-deps30 will use the file ../DEPS relative to this script's directory.
92 def git_repository_sync_is_disabled(git, directory): argument
95 [git, 'config', 'sync-deps.disable'], cwd=directory)
101 def is_git_toplevel(git, directory): argument
102 """Return true iff the directory is the top level of a Git repository.
107 directory (string) the path into which the repository
112 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
113 return os.path.realpath(bytes(directory, 'utf8')) == os.path.realpath(toplevel)
118 def status(directory, checkoutable): argument
122 directory = tail_truncate(directory, dlen)
[all …]
/third_party/skia/third_party/externals/spirv-tools/utils/
Dgit-sync-deps40 will use the file ../DEPS relative to this script's directory.
100 def git_repository_sync_is_disabled(git, directory): argument
103 [git, 'config', 'sync-deps.disable'], cwd=directory)
109 def is_git_toplevel(git, directory): argument
110 """Return true iff the directory is the top level of a Git repository.
115 directory (string) the path into which the repository
120 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
121 return os.path.realpath(bytes(directory, 'utf8')) == os.path.realpath(toplevel)
126 def status(directory, checkoutable): argument
130 directory = truncate(directory, dlen)
[all …]
Dupdate_build_version.py24 # - The software version deduced from the CHANGES file in the given directory.
26 # git commit information for the directory. The commit information
42 def mkdir_p(directory): argument
43 """Make the directory, and all its ancestors as required. Any of the
46 if directory == "":
47 # We're being asked to make the current directory.
51 os.makedirs(directory)
53 if e.errno == errno.EEXIST and os.path.isdir(directory):
59 def command_output(cmd, directory): argument
60 """Runs a command in a directory and returns its standard output stream.
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/
Dgit-sync-deps40 will use the file ../DEPS relative to this script's directory.
100 def git_repository_sync_is_disabled(git, directory): argument
103 [git, 'config', 'sync-deps.disable'], cwd=directory)
109 def is_git_toplevel(git, directory): argument
110 """Return true iff the directory is the top level of a Git repository.
115 directory (string) the path into which the repository
120 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
121 return os.path.realpath(bytes(directory, 'utf8')) == os.path.realpath(toplevel)
126 def status(directory, checkoutable): argument
130 directory = truncate(directory, dlen)
[all …]
Dupdate_build_version.py24 # - The software version deduced from the CHANGES file in the given directory.
26 # git commit information for the directory. The commit information
42 def mkdir_p(directory): argument
43 """Make the directory, and all its ancestors as required. Any of the
46 if directory == "":
47 # We're being asked to make the current directory.
51 os.makedirs(directory)
53 if e.errno == errno.EEXIST and os.path.isdir(directory):
59 def command_output(cmd, directory): argument
60 """Runs a command in a directory and returns its standard output stream.
[all …]
/third_party/rust/crates/clang-sys/build/
Dcommon.rs132 /// `libclang` directory patterns for Haiku.
142 /// `libclang` directory patterns for Linux (and FreeBSD).
153 /// `libclang` directory patterns for macOS.
161 /// `libclang` directory patterns for Windows.
175 /// `libclang` directory patterns for illumos
185 /// Finds the files in a directory that match one or more filename glob patterns
187 fn search_directory(directory: &Path, filenames: &[String]) -> Vec<(PathBuf, String)> { in search_directory()
188 // Escape the specified directory in case it contains characters that have in search_directory()
190 let directory = Pattern::escape(directory.to_str().unwrap()); in search_directory() localVariable
191 let directory = Path::new(&directory); in search_directory() localVariable
[all …]
/third_party/spirv-tools/utils/
Dgit-sync-deps39 will use the file ../DEPS relative to this script's directory.
108 def git_repository_sync_is_disabled(git, directory): argument
111 [git, 'config', 'sync-deps.disable'], cwd=directory)
117 def is_git_toplevel(git, directory): argument
118 """Return true iff the directory is the top level of a Git repository.
123 directory (string) the path into which the repository
128 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
129 return os.path.realpath(bytes(directory, 'utf8')) == os.path.realpath(toplevel)
134 def status(directory, checkoutable): argument
138 directory = truncate(directory, dlen)
[all …]
/third_party/libwebsockets/win32port/dirent/
Ddirent-win32.h56 /* Directory bit */
244 /* Current directory entry */
256 /* Initial directory name */
348 * Open directory stream DIRNAME for read and return a pointer to the
349 * internal working area that is used to retrieve individual directory
360 /* Must have directory name */ in _wopendir()
391 /* Allocate room for absolute directory name and search pattern */ in _wopendir()
398 * Convert relative directory name to an absolute one. This in _wopendir()
400 * working directory is changed between opendir() and rewinddir(). in _wopendir()
416 /* Append search pattern \* to the directory name */ in _wopendir()
[all …]
/third_party/glslang/
Dbuild_info.py43 <commit> - The git commit information for the directory taken from
52 def mkdir_p(directory): argument
53 """Make the directory, and all its ancestors as required. Any of the
56 if directory == "":
57 # We're being asked to make the current directory.
61 os.makedirs(directory)
63 if e.errno == errno.EEXIST and os.path.isdir(directory):
69 def command_output(cmd, directory): argument
70 """Runs a command in a directory and returns its standard output stream.
77 cwd=directory,
[all …]
/third_party/python/Tools/msi/
Dcommon.wxs12 <Component Id="OptionalFeature" Guid="*" Directory="InstallDirectory">
56 <Directory Id="TARGETDIR" Name="SourceDir">
58 … <Directory Id="InstallDirectory" ComponentGuidGenerationSeed="$(var.InstallDirectoryGuidSeed)" />
60 </Directory>
80 <Directory Id="DLLs" Name="DLLs">
81 <Directory Id="Catalogs" />
82 </Directory>
88 <Directory Id="Doc" Name="Doc">
89 <Directory Id="Doc_html" Name="html" />
90 </Directory>
[all …]
/third_party/mesa3d/src/gtest/include/gtest/internal/
Dgtest-filepath.h51 // FilePath - a class for file and directory pathname manipulation which
53 // Used for helper functions for naming files in a directory for xml output.
57 // a directory, otherwise it is assumed to represent a file. In either case,
58 // it may or may not represent an actual file or directory in the file system.
83 // Returns the current working directory, or "" if unsuccessful.
86 // Given directory = "dir", base_name = "test", number = 0,
90 static FilePath MakeFileName(const FilePath& directory,
95 // Given directory = "dir", relative_path = "test.xml",
98 static FilePath ConcatPaths(const FilePath& directory,
102 // will be directory/base_name.extension or
[all …]
/third_party/googletest/googletest/include/gtest/internal/
Dgtest-filepath.h58 // FilePath - a class for file and directory pathname manipulation which
60 // Used for helper functions for naming files in a directory for xml output.
64 // a directory, otherwise it is assumed to represent a file. In either case,
65 // it may or may not represent an actual file or directory in the file system.
88 // Returns the current working directory, or "" if unsuccessful.
91 // Given directory = "dir", base_name = "test", number = 0,
95 static FilePath MakeFileName(const FilePath& directory,
99 // Given directory = "dir", relative_path = "test.xml",
102 static FilePath ConcatPaths(const FilePath& directory,
106 // will be directory/base_name.extension or
[all …]
/third_party/node/deps/googletest/include/gtest/internal/
Dgtest-filepath.h58 // FilePath - a class for file and directory pathname manipulation which
60 // Used for helper functions for naming files in a directory for xml output.
64 // a directory, otherwise it is assumed to represent a file. In either case,
65 // it may or may not represent an actual file or directory in the file system.
88 // Returns the current working directory, or "" if unsuccessful.
91 // Given directory = "dir", base_name = "test", number = 0,
95 static FilePath MakeFileName(const FilePath& directory,
99 // Given directory = "dir", relative_path = "test.xml",
102 static FilePath ConcatPaths(const FilePath& directory,
106 // will be directory/base_name.extension or
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
Dgenvk.py71 """Returns a directory of [ generator function, generator options ] indexed
103 # Output target directory
104 directory = args.directory
177 directory = directory,
202 directory = directory,
220 directory = directory,
238 directory = directory,
262 directory = directory,
282 directory = directory,
304 directory = directory,
[all …]
/third_party/python/Doc/includes/
Demail-dir.py3 """Send the contents of a directory as a MIME message."""
18 Send the contents of a directory as a MIME message.
23 parser.add_argument('-d', '--directory',
24 help="""Mail the contents of the specified directory,
25 otherwise use the current directory. Only the regular
26 files in the directory are sent, and we don't recurse to
39 directory = args.directory
40 if not directory:
41 directory = '.'
44 msg['Subject'] = f'Contents of directory {os.path.abspath(directory)}'
[all …]
/third_party/typescript/tests/baselines/reference/
DpathsValidation5.trace.json6 "Directory 'tests/cases/compiler/src/node_modules' does not exist, skipping all lookups in it.",
7 "Directory 'tests/cases/compiler/node_modules' does not exist, skipping all lookups in it.",
8 "Directory 'tests/cases/node_modules' does not exist, skipping all lookups in it.",
9 "Directory 'tests/node_modules' does not exist, skipping all lookups in it.",
10 "Directory 'node_modules' does not exist, skipping all lookups in it.",
11 "Directory '/node_modules' does not exist, skipping all lookups in it.",
14 "Directory 'tests/cases/compiler/src/node_modules' does not exist, skipping all lookups in it.",
15 "Directory 'tests/cases/compiler/node_modules' does not exist, skipping all lookups in it.",
16 "Directory 'tests/cases/node_modules' does not exist, skipping all lookups in it.",
17 "Directory 'tests/node_modules' does not exist, skipping all lookups in it.",
[all …]
DcachedModuleResolution6.trace.json5 "Directory '/a/b/c/d/e/node_modules' does not exist, skipping all lookups in it.",
6 "Directory '/a/b/c/d/node_modules' does not exist, skipping all lookups in it.",
7 "Directory '/a/b/c/node_modules' does not exist, skipping all lookups in it.",
8 "Directory '/a/b/node_modules' does not exist, skipping all lookups in it.",
9 "Directory '/a/node_modules' does not exist, skipping all lookups in it.",
10 "Directory '/node_modules' does not exist, skipping all lookups in it.",
12 "Directory '/a/b/c/d/e/node_modules' does not exist, skipping all lookups in it.",
13 "Directory '/a/b/c/d/node_modules' does not exist, skipping all lookups in it.",
14 "Directory '/a/b/c/node_modules' does not exist, skipping all lookups in it.",
15 "Directory '/a/b/node_modules' does not exist, skipping all lookups in it.",
[all …]
/third_party/python/Tools/msi/exe/
Dexe_files.wxs5 <Component Id="LICENSE.txt" Directory="InstallDirectory" Guid="*">
8 <Component Id="NEWS.txt" Directory="InstallDirectory" Guid="*">
18 … <Component Id="python.exe" Directory="InstallDirectory" Guid="$(var.PythonExeComponentGuid)">
26 … <Component Id="pythonw.exe" Directory="InstallDirectory" Guid="$(var.PythonwExeComponentGuid)">
32 <Component Id="vcruntime140.dll" Directory="InstallDirectory" Guid="*">
36 <Component Id="vcruntime140_1.dll" Directory="InstallDirectory" Guid="*">
45 <Component Id="python.pdb" Directory="InstallDirectory" Guid="*">
48 <Component Id="pythonw.pdb" Directory="InstallDirectory" Guid="*">
56 <Component Id="python_d.exe" Directory="InstallDirectory" Guid="*">
59 <Component Id="python_d.pdb" Directory="InstallDirectory" Guid="*">
[all …]
/third_party/mesa3d/src/gtest/src/
Dgtest-filepath.cc70 // Windows CE doesn't have a current directory. You should not use
71 // the current directory in tests on Windows CE, but this at least
93 // Returns the current working directory, or "" if unsuccessful.
97 // These platforms do not have a current directory, so we just return in GetCurrentDir()
145 // Returns a copy of the FilePath with the directory part removed.
147 // FilePath("file"). If there is no directory part ("just_a_file"), it returns
156 // RemoveFileName returns the directory path with the filename removed.
173 // Helper functions for naming files in a directory for xml output.
175 // Given directory = "dir", base_name = "test", number = 0,
179 FilePath FilePath::MakeFileName(const FilePath& directory, in MakeFileName() argument
[all …]
/third_party/skia/third_party/externals/icu/source/samples/udata/
Dreadme.txt25 2. Add ICU's bin directory to the path, e.g.
28 3. cd into the udata directory, e.g.
33 … in the same directory. If this is the case, this will likely cause a problem with reader looking…
37 Specify an ICU install directory when running configure,
40 cd <icu directory>/source
41 runConfigureICU <platform-name> --prefix <icu install directory> [other options]
49 cd <icu directory>/source/samples/udata
50 gmake ICU_PATH=<icu source directory> ICU_PREFIX=<icu install directory)
53 cd <icu directory>/source/samples/udata
54 gmake ICU_PREFIX=<icu install directory> check
[all …]
/third_party/icu/icu4c/source/samples/udata/
Dreadme.txt25 2. Add ICU's bin directory to the path, e.g.
28 3. cd into the udata directory, e.g.
33 … in the same directory. If this is the case, this will likely cause a problem with reader looking…
37 Specify an ICU install directory when running configure,
40 cd <icu directory>/source
41 runConfigureICU <platform-name> --prefix <icu install directory> [other options]
49 cd <icu directory>/source/samples/udata
50 gmake ICU_PATH=<icu source directory> ICU_PREFIX=<icu install directory)
53 cd <icu directory>/source/samples/udata
54 gmake ICU_PREFIX=<icu install directory> check
[all …]
/third_party/skia/third_party/externals/icu/source/samples/csdet/
Dreadme.txt24 2. Add ICU's bin directory to the path, e.g.
27 3. cd into the uresb directory, e.g.
31 …WARNING: The .txt files must be in the same directory as the executable, which is not the case by …
35 Specify an ICU install directory when running configure,
38 cd <icu directory>/source
39 runConfigureICU <platform-name> --prefix <icu install directory> [other options]
46 cd <icu directory>/source/samples/uresb
47 gmake ICU_PREFIX=<icu install directory) ICU_PATH=<icu source directory>
50 cd <icu directory>/source/samples/uresb
52 gmake ICU_PREFIX=<icu install directory> check
[all …]

12345678910>>...233