Home
last modified time | relevance | path

Searched +full:- +full:- +full:directory +full:- +full:prefix (Results 1 – 25 of 1144) sorted by relevance

12345678910>>...46

/external/clang/test/Driver/
Dps4-sdk-root.c1 // REQUIRES: x86-registered-target
5 // or relative to the location of the compiler driver), if "-nostdinc",
6 // "--sysroot" or "-isysroot" option is specified on the command line.
11 // or relative to the location of the compiler driver), if "-c", "-S", "-E",
12 // "--sysroot", "-nostdlib" or "-nodefaultlibs" option is specified on
17-Winvalid-or-nonexistent-directory -### -target x86_64-scei-ps4 %s 2>&1 | FileCheck -check-prefix=…
19 …. %clang -Winvalid-or-nonexistent-directory -### -c -target x86_64-scei-ps4 %s 2>&1 | FileCheck -c…
20 …. %clang -Winvalid-or-nonexistent-directory -### -S -target x86_64-scei-ps4 %s 2>&1 | FileCheck -c…
21 …. %clang -Winvalid-or-nonexistent-directory -### -E -target x86_64-scei-ps4 %s 2>&1 | FileCheck -c…
22 …lang -Winvalid-or-nonexistent-directory -### -emit-ast -target x86_64-scei-ps4 %s 2>&1 | FileCheck…
[all …]
/external/python/cpython2/Modules/
Dgetpath.c11 #include <mach-o/dyld.h>
16 * Two directories must be found, the platform independent directory
17 * (prefix), containing the common .py and .pyc files, and the platform
18 * dependent directory (exec_prefix), containing the shared library
19 * modules. Note that prefix and exec_prefix can be the same directory,
22 * Py_GetPath() carries out separate searches for prefix and exec_prefix.
24 * file or directory is found. If no prefix or exec_prefix is found, a
25 * warning message is issued and the preprocessor defined PREFIX and
38 * pathname if one is found) and the directory of the link target is used.
40 * Finally, argv0_path is set to the directory containing the executable
[all …]
/external/aws-sdk-java-v2/services-custom/s3-transfer-manager/src/it/java/software/amazon/awssdk/transfer/s3/
DS3TransferManagerUploadDirectoryIntegrationTest.java55 private static Path directory; field in S3TransferManagerUploadDirectoryIntegrationTest
62 directory = createLocalTestDirectory(); in setUp()
68 FileUtils.cleanUpTestDirectory(directory); in teardown()
70 log.warn(() -> "Failed to clean up test directory " + directory, exception); in teardown()
76 log.warn(() -> "Failed to delete s3 bucket " + TEST_BUCKET, exception); in teardown()
82 String prefix = "yolo"; in uploadDirectory_filesSentCorrectly() local
83 DirectoryUpload uploadDirectory = tmCrt.uploadDirectory(u -> u.source(directory) in uploadDirectory_filesSentCorrectly()
85 .s3Prefix(prefix)); in uploadDirectory_filesSentCorrectly()
90 …s3.listObjectsV2Paginator(b -> b.bucket(TEST_BUCKET).prefix(prefix)).contents().stream().map(S3Obj… in uploadDirectory_filesSentCorrectly()
93 … assertThat(keys).containsOnly(prefix + "/bar.txt", prefix + "/foo/1.txt", prefix + "/foo/2.txt"); in uploadDirectory_filesSentCorrectly()
[all …]
DS3TransferManagerDownloadDirectoryIntegrationTest.java49 + "-delimiter");
50 private static final String CUSTOM_DELIMITER = "-";
53 private Path directory; field in S3TransferManagerDownloadDirectoryIntegrationTest
61 …tmCrt.uploadDirectory(u -> u.source(sourceDirectory).bucket(TEST_BUCKET)).completionFuture().join(… in setUp()
63 tmCrt.uploadDirectory(u -> u.source(sourceDirectory) in setUp()
71 directory = Files.createTempDirectory("destination"); in setUpPerTest()
76 FileUtils.cleanUpTestDirectory(directory); in cleanup()
84 log.warn(() -> "Failed to clean up test directory " + sourceDirectory, exception); in teardown()
90 log.warn(() -> "Failed to delete s3 bucket " + TEST_BUCKET, exception); in teardown()
96 log.warn(() -> "Failed to delete s3 bucket " + TEST_BUCKET_CUSTOM_DELIMITER, exception); in teardown()
[all …]
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_temp_file.py2 # Use of this source code is governed by a BSD-style license that can be
20 def _GenerateName(prefix, suffix, dir): argument
22 return posixpath.join(dir, '%s-%s%s' % (prefix, random_hex, suffix))
31 def __init__(self, adb, suffix='', prefix='temp_file', dir='/data/local/tmp'): argument
39 prefix: The prefix of the name of the temporary file.
40 dir: The directory on the device in which the temporary file should be
43 ValueError if any of suffix, prefix, or dir are None.
45 if None in (dir, prefix, suffix):
46 m = 'Provided None path component. (dir: %s, prefix: %s, suffix: %s)' % (
47 dir, prefix, suffix)
[all …]
/external/python/cpython3/Modules/
Dgetpath.py18 # abspath(path) -- make relative paths absolute against CWD
19 # basename(path) -- the filename of path
20 # dirname(path) -- the directory name of path
21 # hassuffix(path, suffix) -- returns True if path has suffix
22 # isabs(path) -- path is absolute or not
23 # isdir(path) -- path exists and is a directory
24 # isfile(path) -- path exists and is a file
25 # isxfile(path) -- path exists and is an executable file
26 # joinpath(*paths) -- combine the paths
27 # readlines(path) -- a list of each line of text in the UTF-8 encoded file
[all …]
/external/python/cpython3/Doc/library/
Dtempfile.rst1 :mod:`tempfile` --- Generate temporary files and directories
15 --------------
19 :class:`TemporaryDirectory`, and :class:`SpooledTemporaryFile` are high-level
22 :func:`mkdtemp` are lower-level functions which require manual cleanup.
24 All the user-callable functions and constructors take additional arguments which
32 The module defines the following user-callable items:
34 .. function:: TemporaryFile(mode='w+b', buffering=-1, encoding=None, newline=None, suffix=None, pre…
36 Return a :term:`file-like object` that can be used as a temporary storage area.
39 …collected). Under Unix, the directory entry for the file is either not created at all or is remov…
45 :ref:`tempfile-examples`). On completion of the context or
[all …]
/external/python/cpython2/Doc/library/
Dtempfile.rst1 :mod:`tempfile` --- Generate temporary files and directories
17 --------------
29 Also, all the user-callable functions now take additional arguments which
35 The module defines the following user-callable functions:
38 .. function:: TemporaryFile([mode='w+b'[, bufsize=-1[, suffix=''[, prefix='tmp'[, dir=None]]]]])
40 Return a file-like object that can be used as a temporary storage area.
43 collected). Under Unix, the directory entry for the file is removed
51 stored. *bufsize* defaults to ``-1``, meaning that the operating system
54 The *dir*, *prefix* and *suffix* parameters are passed to :func:`mkstemp`.
57 platforms, it is a file-like object whose :attr:`!file` attribute is the
[all …]
/external/pcre/
DINSTALL4 Copyright (C) 1994-1996, 1999-2002, 2004-2017, 2020-2021 Free
9 notice and this notice are preserved. This file is offered as-is,
17 more-detailed instructions are generic; see the 'README' file for
25 various system-dependent variables used during compilation. It uses
26 those values to create a 'Makefile' in each directory of the package.
27 It may also create one or more '.h' files containing system-dependent
34 enabled with '--cache-file=config.cache' or simply '-C') that saves the
52 1. 'cd' to the directory containing the package's source code and type
60 3. Optionally, type 'make check' to run any self-tests that come with
61 the package, generally using the just-built uninstalled binaries.
[all …]
/external/google-breakpad/
DINSTALL4 Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
9 notice and this notice are preserved. This file is offered as-is,
17 more-detailed instructions are generic; see the `README' file for
25 various system-dependent variables used during compilation. It uses
26 those values to create a `Makefile' in each directory of the package.
27 It may also create one or more `.h' files containing system-dependent
34 and enabled with `--cache-file=config.cache' or simply `-C') that saves
53 1. `cd' to the directory containing the package's source code and type
61 3. Optionally, type `make check' to run any self-tests that come with
62 the package, generally using the just-built uninstalled binaries.
[all …]
/external/libcap-ng/libcap-ng-0.7/
DINSTALL4 Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
9 notice and this notice are preserved. This file is offered as-is,
17 more-detailed instructions are generic; see the `README' file for
25 various system-dependent variables used during compilation. It uses
26 those values to create a `Makefile' in each directory of the package.
27 It may also create one or more `.h' files containing system-dependent
34 and enabled with `--cache-file=config.cache' or simply `-C') that saves
53 1. `cd' to the directory containing the package's source code and type
61 3. Optionally, type `make check' to run any self-tests that come with
62 the package, generally using the just-built uninstalled binaries.
[all …]
/external/libexif/
DINSTALL9 notice and this notice are preserved. This file is offered as-is,
17 more-detailed instructions are generic; see the `README' file for
25 various system-dependent variables used during compilation. It uses
26 those values to create a `Makefile' in each directory of the package.
27 It may also create one or more `.h' files containing system-dependent
34 and enabled with `--cache-file=config.cache' or simply `-C') that saves
53 1. `cd' to the directory containing the package's source code and type
61 3. Optionally, type `make check' to run any self-tests that come with
62 the package, generally using the just-built uninstalled binaries.
65 documentation. When installing into a prefix owned by root, it is
[all …]
/external/lmfit/
DINSTALL9 notice and this notice are preserved. This file is offered as-is,
17 more-detailed instructions are generic; see the `README' file for
25 various system-dependent variables used during compilation. It uses
26 those values to create a `Makefile' in each directory of the package.
27 It may also create one or more `.h' files containing system-dependent
34 and enabled with `--cache-file=config.cache' or simply `-C') that saves
53 1. `cd' to the directory containing the package's source code and type
61 3. Optionally, type `make check' to run any self-tests that come with
62 the package, generally using the just-built uninstalled binaries.
65 documentation. When installing into a prefix owned by root, it is
[all …]
/external/antlr/runtime/C/
DINSTALL9 notice and this notice are preserved. This file is offered as-is,
17 more-detailed instructions are generic; see the `README' file for
25 various system-dependent variables used during compilation. It uses
26 those values to create a `Makefile' in each directory of the package.
27 It may also create one or more `.h' files containing system-dependent
34 and enabled with `--cache-file=config.cache' or simply `-C') that saves
53 1. `cd' to the directory containing the package's source code and type
61 3. Optionally, type `make check' to run any self-tests that come with
62 the package, generally using the just-built uninstalled binaries.
65 documentation. When installing into a prefix owned by root, it is
[all …]
/external/clang/test/Preprocessor/
Dsysroot-prefix.c1 // RUN: %clang_cc1 -v -isysroot /var/empty -I /var/empty/include -E %s -o /dev/null 2>&1 | FileChec…
2 // RUN: %clang_cc1 -v -isysroot /var/empty -I =/var/empty/include -E %s -o /dev/null 2>&1 | FileChe…
3 // RUN: %clang_cc1 -v -I =/var/empty/include -E %s -o /dev/null 2>&1 | FileCheck -check-prefix CHEC…
4 // RUN: %clang_cc1 -v -isysroot /var/empty -I =null -E %s -o /dev/null 2>&1 | FileCheck -check-pref…
5 // RUN: %clang_cc1 -v -isysroot /var/empty -isysroot /var/empty/root -I =null -E %s -o /dev/null 2>…
6 // RUN: %clang_cc1 -v -isysroot /var/empty/root -isysroot /var/empty -I =null -E %s -o /dev/null 2>…
8 // CHECK-ISYSROOT_NO_SYSROOT: ignoring nonexistent directory "/var/empty/include"
9 // CHECK-ISYSROOT_NO_SYSROOT-NOT: ignoring nonexistent directory "/var/empty/var/empty/include"
11 // CHECK-ISYSROOT_SYSROOT_DEV_NULL: ignoring nonexistent directory "/var/empty/var/empty/include"
12 // CHECK-ISYSROOT_SYSROOT_DEV_NULL-NOT: ignoring nonexistent directory "/var/empty"
[all …]
/external/python/cpython3/Doc/install/
Dindex.rst3 .. _install-index:
18 :ref:`What's New <distutils-deprecated>` entry for more information.
22 :ref:`installing-index`
33 recommendations section <https://packaging.python.org/guides/tool-recommendations/>`__
37 .. _inst-intro:
54 See :ref:`installing-index` and :ref:`distributing-index` for more details.
59 .. _inst-new-standard:
62 ------------------------------------
67 in the name of the downloaded archive, e.g. :file:`foo-1.0.tar.gz` or
68 :file:`widget-0.9.7.zip`. Next, the archive will unpack into a similarly named
[all …]
/external/strace/
DINSTALL4 Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
9 notice and this notice are preserved. This file is offered as-is,
16 configure, build, and install this package. The following more-detailed
25 various system-dependent variables used during compilation. It uses
26 those values to create a 'Makefile' in each directory of the package.
27 It may also create one or more '.h' files containing system-dependent
34 enabled with '--cache-file=config.cache' or simply '-C') that saves the
52 1. 'cd' to the directory containing the package's source code and type
60 3. Optionally, type 'make check' to run any self-tests that come with
61 the package, generally using the just-built uninstalled binaries.
[all …]
/external/python/cpython3/Lib/distutils/command/
Dinstall.py30 # The following code provides backward-compatible INSTALL_SCHEMES
46 # On POSIX-y platforms, Python will:
47 # - Build from .h files in 'headers' (only there when
49 # - Install .h files to 'include'
64 # platlibdir is available since 3.9: bpo-1294959
92 description = "install everything from build directory"
96 ('prefix=', None,
97 "installation prefix"),
98 ('exec-prefix=', None,
99 "(Unix only) prefix for platform-specific files"),
[all …]
/external/python/cpython2/Lib/distutils/command/
Dinstall.py35 'purelib': '$base/Lib/site-packages',
36 'platlib': '$base/Lib/site-packages',
44 'purelib': '$base/lib/python$py_version_short/site-packages',
45 'platlib': '$platbase/lib/python$py_version_short/site-packages',
73 'purelib': '$base/Lib/site-packages',
74 'platlib': '$base/Lib/site-packages',
96 description = "install everything from build directory"
100 ('prefix=', None,
101 "installation prefix"),
102 ('exec-prefix=', None,
[all …]
/external/libffi/
Dgenerate-darwin-source-and-headers.py13 directory = 'darwin_ios' variable in simulator_platform
16 triple = 'i386-apple-darwin11'
17 version_min = '-miphoneos-version-min=7.0'
19 prefix = "#ifdef __i386__\n\n" variable in simulator_platform
26 directory = 'darwin_ios' variable in simulator64_platform
29 triple = 'x86_64-apple-darwin13'
30 version_min = '-miphoneos-version-min=7.0'
32 prefix = "#ifdef __x86_64__\n\n" variable in simulator64_platform
39 directory = 'darwin_ios' variable in device_platform
42 triple = 'arm-apple-darwin11'
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/
Dgenerate-darwin-source-and-headers.py13 directory = 'darwin_ios' variable in simulator_platform
16 triple = 'i386-apple-darwin11'
17 version_min = '-miphoneos-version-min=5.1.1'
19 prefix = "#ifdef __i386__\n\n" variable in simulator_platform
26 directory = 'darwin_ios' variable in simulator64_platform
29 triple = 'x86_64-apple-darwin13'
30 version_min = '-miphoneos-version-min=7.0'
32 prefix = "#ifdef __x86_64__\n\n" variable in simulator64_platform
39 directory = 'darwin_ios' variable in device_platform
42 triple = 'arm-apple-darwin11'
[all …]
/external/python/setuptools/setuptools/_distutils/command/
Dinstall.py27 'purelib': '{base}/Lib/site-packages',
28 'platlib': '{base}/Lib/site-packages',
36 'purelib': '{base}/lib/{implementation_lower}{py_version_short}/site-packages',
37 'platlib': '{platbase}/{platlibdir}/{implementation_lower}{py_version_short}/site-packages',
51 'purelib': '{base}/site-packages',
52 'platlib': '{base}/site-packages',
58 'purelib': '{base}/site-packages',
59 'platlib': '{base}/site-packages',
176 prefix = not name.endswith(('_user', '_home'))
178 return pypy_name if old_pypy and prefix else name
[all …]
/external/apache-commons-io/src/main/java/org/apache/commons/io/output/
DDeferredFileOutputStream.java9 * http://www.apache.org/licenses/LICENSE-2.0
54 * .setPrefix(prefix)
69 private String prefix; field in DeferredFileOutputStream.Builder
71 private Path directory; field in DeferredFileOutputStream.Builder
84 … * This builder use the aspects threshold, outputFile, prefix, suffix, directory, buffer size.
91 …return new DeferredFileOutputStream(threshold, outputFile, prefix, suffix, directory, getBufferSiz… in get()
95 * Sets the temporary file directory.
97 * @param directory Temporary file directory.
100 public Builder setDirectory(final File directory) { in setDirectory() argument
101 this.directory = toPath(directory, null); in setDirectory()
[all …]
/external/python/cpython2/Doc/install/
Dindex.rst3 .. _install-index:
15 :ref:`installing-index`
29 end-user's point-of-view, describing how to extend the capabilities of a
30 standard Python installation by building and installing third-party Python
43 .. _inst-intro:
51 Python installation in the form of third-party modules. This might be necessary
55 In the past, there has been little support for adding third-party modules to an
59 This document is aimed primarily at the people who need to install third-party
60 Python modules: end-users and system administrators who just need to get some
66 the :ref:`distutils-index` manual. :ref:`debug-setup-script` may also be of
[all …]
/external/python/cpython3/Lib/distutils/
Dsysconfig.py23 _PREFIX as PREFIX, unknown
73 """Parse a Makefile-style file.
108 # Variables with a 'PY_' prefix in the makefile. These need to
109 # be made available without that prefix through sysconfig.
111 # if the expansion uses the name without a prefix.
182 # an in-source build.
188 # It's not a configure-based build, so the sys module doesn't have
194 """Do any platform-specific customization of a CCompiler instance.
201 # Perform first-time customization of compiler-related
234 cpp = cc + " -E" # not always
[all …]

12345678910>>...46