Home
last modified time | relevance | path

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

12345678910>>...42

/third_party/gn/src/gn/
Dfilesystem_utils.h2 // Use of this source code is governed by a BSD-style license that can be
13 #include "base/files/file_path.h"
19 std::string FilePathToUTF8(const base::FilePath::StringType& str);
20 inline std::string FilePathToUTF8(const base::FilePath& path) { in FilePathToUTF8()
23 base::FilePath UTF8ToFilePath(std::string_view sp);
25 // Extensions -----------------------------------------------------------------
36 // Filename parts -------------------------------------------------------------
65 // Path parts -----------------------------------------------------------------
68 // directory name of the given path, including the last slash. Note that the
73 // empty substring if none. For example "//foo/bar/" -> "bar".
[all …]
Dsetup_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
7 #include "base/command_line.h"
8 #include "base/files/file_path.h"
9 #include "base/files/file_util.h"
10 #include "base/files/scoped_temp_dir.h"
19 static void WriteFile(const base::FilePath& file, const std::string& data) { in WriteFile()
21 base::WriteFile(file, data.data(), data.size())); in WriteFile()
25 base::CommandLine cmdline(base::CommandLine::NO_PROGRAM); in TEST_F()
27 // Create a temp directory containing a .gn file and a BUILDCONFIG.gn file, in TEST_F()
28 // pass it as --root. in TEST_F()
[all …]
Dsetup.h2 // Use of this source code is governed by a BSD-style license that can be
11 #include "base/files/file_path.h"
26 namespace base {
41 // The parameter is the string the user specified for the build directory. We
45 // With force_create = false, setup will fail if the build directory doesn't
47 // directory will be created if necessary. Commands explicitly doing
49 // should set it to false to prevent creating oddly-named directories in case
50 // the user omits the build directory argument (which is easy to do).
52 // cmdline is the gn invocation command, with flags like --root and --dotfile.
53 // If no explicit cmdline is passed, base::CommandLine::ForCurrentProcess()
[all …]
Dcommand_gen.cc2 // Use of this source code is governed by a BSD-style license that can be
11 #include "base/command_line.h"
12 #include "base/strings/string_number_conversions.h"
13 #include "base/strings/stringprintf.h"
14 #include "base/timer/elapsed_timer.h"
42 const char kSwitchCleanStale[] = "clean-stale";
56 const char kSwitchIdeRootTarget[] = "ide-root-target";
57 const char kSwitchNinjaExecutable[] = "ninja-executable";
58 const char kSwitchNinjaExtraArgs[] = "ninja-extra-args";
59 const char kSwitchNinjaOutputsFile[] = "ninja-outputs-file";
[all …]
Dfunction_exec_script.cc2 // Use of this source code is governed by a BSD-style license that can be
5 #include "base/command_line.h"
6 #include "base/files/file_util.h"
7 #include "base/logging.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "base/strings/utf_string_conversions.h"
30 const SourceFileSet* whitelist = build_settings->exec_script_whitelist(); in CheckExecScriptPermissions()
34 LocationRange function_range = function->GetRange(); in CheckExecScriptPermissions()
38 if (whitelist->find(function_range.begin().file()->name()) != in CheckExecScriptPermissions()
39 whitelist->end()) in CheckExecScriptPermissions()
[all …]
/third_party/python/Lib/distutils/command/
Dclean.py5 # contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
16 ('build-base=', 'b',
17 "base build directory (default: 'build.build-base')"),
18 ('build-lib=', None,
19 "build directory for all modules (default: 'build.build-lib')"),
20 ('build-temp=', 't',
21 "temporary build directory (default: 'build.build-temp')"),
22 ('build-scripts=', None,
23 "build directory for scripts (default: 'build.build-scripts')"),
24 ('bdist-base=', None,
[all …]
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'
59 value = value.replace("$installed_base", "$base")
64 # platlibdir is available since 3.9: bpo-1294959
92 description = "install everything from build directory"
95 # Select installation scheme and set base director(y|ies)
98 ('exec-prefix=', None,
99 "(Unix only) prefix for platform-specific files"),
[all …]
/third_party/skia/buildtools/checkdeps/
DREADME.md3 DEPS files specify which files the sources in a directory tree may include.
7 First you have the normal module-level deps. These are the ones used by
12 "base":"http://foo.bar/trunk/base"
16 DEPS files not in the top-level of a module won't need this. Then you have any
17 additional include rules. You can add (using `+`) or subtract (using `-`) from
18 the previously specified rules (including module-level deps). You can also
29 # Code should be able to use base (it's specified in the module-level
30 # deps above), but nothing in "base/evil" because it's evil.
31 "-base/evil",
34 "+base/evil/not",
[all …]
/third_party/gn/src/base/files/
Dfile_util.h2 // Use of this source code is governed by a BSD-style license that can be
24 #include "base/files/file.h"
25 #include "base/files/file_path.h"
31 #include "base/logging.h"
32 #include "base/posix/eintr_wrapper.h"
35 namespace base {
39 //-----------------------------------------------------------------------------
54 // Deletes the given path, whether it's a file or a directory.
55 // If it's a directory, it's perfectly happy to delete all of the
56 // directory's contents. Passing true to recursive deletes
[all …]
Dscoped_temp_dir.h2 // Use of this source code is governed by a BSD-style license that can be
8 // An object representing a temporary / scratch directory that should be
11 // directory fails to be deleted. As a result, deletion is not guaranteed by
13 // CreateUniqueTempDir creates the directory in a location that is
16 // Multiple calls to the methods which establish a temporary directory
20 #include "base/files/file_path.h"
22 namespace base {
26 // No directory is owned/created initially.
32 // Creates a unique directory in TempPath, and takes ownership of it.
36 // Creates a unique directory under a given path, and takes ownership of it.
[all …]
/third_party/skia/m133/third_party/externals/zlib/google/
Dzip.cc2 // Use of this source code is governed by a BSD-style license that can be
10 #include "base/files/file.h"
11 #include "base/files/file_enumerator.h"
12 #include "base/files/file_util.h"
13 #include "base/functional/bind.h"
14 #include "base/logging.h"
15 #include "base/memory/ptr_util.h"
16 #include "base/strings/string_util.h"
26 bool IsHiddenFile(const base::FilePath& file_path) { in IsHiddenFile()
30 // Creates a directory at |extract_dir|/|entry_path|, including any parents.
[all …]
Dzip.h2 // Use of this source code is governed by a BSD-style license that can be
13 #include "base/containers/span.h"
14 #include "base/files/file_path.h"
15 #include "base/files/platform_file.h"
16 #include "base/functional/callback.h"
17 #include "base/time/time.h"
20 namespace base {
29 using Paths = base::span<const base::FilePath>;
36 // All parameters paths are expected to be relative to the source directory.
43 base::Time last_modified;
[all …]
/third_party/rust/rust/src/ci/docker/
DREADME.md14 ./src/ci/docker/run.sh x86_64-gnu
21 DEPLOY=1 ./src/ci/docker/run.sh x86_64-gnu
24 **NOTE**: Re-using the same `obj` dir with different docker images with
25 the same target triple (e.g. `dist-x86_64-linux` and `dist-various-1`)
28 If you encounter any issues when using multiple Docker images, try deleting your `obj` directory
33 - Each host architecture has its own `host-{arch}` directory, and those
36 - `host-{arch}/disabled` contains images that are not built on CI.
37 - `scripts` contains files shared by multiple Docker images.
45 1. Stop the virtual machine from the terminal with `docker-machine stop`
58 * Read-only: ☐ *unchecked*
[all …]
/third_party/skia/third_party/externals/freetype/builds/
Dfreetype.mk2 # FreeType 2 library sub-Makefile
6 # Copyright (C) 1996-2021 by
23 # PLATFORM_DIR The architecture-dependent directory,
26 # OBJ_DIR The directory in which object files are created.
28 # LIB_DIR The directory in which the library is created.
30 # DOC_DIR The directory in which the API reference is created.
34 # DEVEL_DIR Development directory which is added to the INCLUDES
38 # in the platform-specific configuration files.
41 # file for `src/base/ftsystem.c'.
44 # file for `src/base/ftdebug.c'. [For a normal build, this
[all …]
/third_party/protobuf/src/google/protobuf/compiler/csharp/
Dcsharp_options.h1 // Protocol Buffers - Google's data interchange format
4 // Use of this source code is governed by a BSD-style
6 // https://developers.google.com/open-source/licenses/bsd
29 // Base namespace to use to create directory hierarchy. Defaults to "".
31 // where directories are created relative to a project-specific base
32 // namespace. For example, in a project with a base namespace of PetShop, a
34 // generate Model/Shared/User.cs underneath the specified --csharp_out
35 // directory.
37 // If no base namespace is specified, all files are generated in the
38 // --csharp_out directory, with no subdirectories created automatically.
[all …]
/third_party/skia/m133/third_party/externals/icu/source/tools/genrb/
Dderb.1.in1 .\" Hey, Emacs! This is -*-nroff-*- you know...
7 .\" Copyright (C) 2000-2014 IBM, Inc. and others.
12 \- disassemble a resource bundle
25 .BI "\-e\fP, \fB\-\-encoding" " encoding"
28 .BI "\-\-bom"
31 .BI "\-t\fP, \fB\-\-truncate" " \fR[ \fPsize\fR ]\fP"
34 .BI "\-s\fP, \fB\-\-sourcedir" " source"
37 .BI "\-d\fP, \fB\-\-destdir" " destination"
40 .BI "\-i\fP, \fB\-\-icudatadir" " directory"
43 .BI "\-c\fP, \fB\-\-to\-stdout"
[all …]
/third_party/icu/icu4c/source/tools/genrb/
Dderb.1.in1 .\" Hey, Emacs! This is -*-nroff-*- you know...
7 .\" Copyright (C) 2000-2014 IBM, Inc. and others.
12 \- disassemble a resource bundle
25 .BI "\-e\fP, \fB\-\-encoding" " encoding"
28 .BI "\-\-bom"
31 .BI "\-t\fP, \fB\-\-truncate" " \fR[ \fPsize\fR ]\fP"
34 .BI "\-s\fP, \fB\-\-sourcedir" " source"
37 .BI "\-d\fP, \fB\-\-destdir" " destination"
40 .BI "\-i\fP, \fB\-\-icudatadir" " directory"
43 .BI "\-c\fP, \fB\-\-to\-stdout"
[all …]
/third_party/skia/third_party/externals/icu/source/tools/genrb/
Dderb.1.in1 .\" Hey, Emacs! This is -*-nroff-*- you know...
7 .\" Copyright (C) 2000-2014 IBM, Inc. and others.
12 \- disassemble a resource bundle
25 .BI "\-e\fP, \fB\-\-encoding" " encoding"
28 .BI "\-\-bom"
31 .BI "\-t\fP, \fB\-\-truncate" " \fR[ \fPsize\fR ]\fP"
34 .BI "\-s\fP, \fB\-\-sourcedir" " source"
37 .BI "\-d\fP, \fB\-\-destdir" " destination"
40 .BI "\-i\fP, \fB\-\-icudatadir" " directory"
43 .BI "\-c\fP, \fB\-\-to\-stdout"
[all …]
/third_party/typescript/tests/baselines/reference/tscWatch/resolutionCache/
Dworks-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js6 /// <reference no-default-lib="true"/>
22 /// <reference path="base.d.ts" />
24 //// [/user/username/projects/myproject/node_modules/@types/node/base.d.ts]
25 // Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
26 /// <reference path="ts3.6/base.d.ts" />
28 //// [/user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts]
40 /a/lib/tsc.js --w --extendedDiagnostics
44 Current directory: /user/username/projects/myproject CaseSensitiveFileNames: false
52 FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types/node/base.d.…
53 …tchInfo: /user/username/projects/myproject/node_modules/@types/node/ts3.6/base.d.ts 250 undefined …
[all …]
/third_party/python/Doc/library/
Dsite.rst1 :mod:`site` --- Site-specific configuration hook
5 :synopsis: Module responsible for site-specific configuration.
9 --------------
14 import can be suppressed using the interpreter's :option:`-S` option.
18 Importing this module will append site-specific paths to the module search path
19 and add a few builtins, unless :option:`-S` was used. In that case, this module
21 or additions to the builtins. To explicitly trigger the usual site-specific
26 :option:`-S`.
29 pair: site-packages; directory
34 :file:`lib/site-packages` (on Windows) or
[all …]
/third_party/libabigail/tests/
Dtest-read-btf.cc1 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2 // -*- Mode: C++ -*-
4 // Copyright (C) 2022-2023 Red Hat, Inc.
20 #include "abg-btf-reader.h"
21 #include "test-read-common.h"
40 "data/test-read-btf/test0.o",
44 "data/test-read-btf/test0.o.abi",
45 "output/test-read-btf/test0.o.abi",
46 "--btf",
49 "data/test-read-btf/test1.o",
[all …]
/third_party/python/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 …]
/third_party/skia/third_party/externals/freetype/docs/
DINSTALL.ANY9 ---------------------
13 2.6.1) it is necessary to disable pre-compiled headers. This is
21 * You need to add the directory `include' to your include path when
30 -- base components (required)
32 src/base/ftsystem.c
33 src/base/ftinit.c
34 src/base/ftdebug.c
36 src/base/ftbase.c
38 src/base/ftbbox.c -- recommended, see <ftbbox.h>
39 src/base/ftglyph.c -- recommended, see <ftglyph.h>
[all …]
/third_party/rust/rust/tests/codegen/
Ddebug-compile-unit-path.rs1 // compile-flags: -g --remap-path-prefix={{cwd}}=/cwd/ --remap-path-prefix={{src-base}}=/base/
4 // Ensure that we remap the compile unit directory and that we set it to the compilers current
5 // working directory and not something else.
8 // CHECK-DAG: [[FILE:![0-9]*]] = !DIFile(filename: "/base/debug-compile-unit-path.rs{{.*}}", direct…
9 // CHECK-DAG: {{![0-9]*}} = distinct !DICompileUnit({{.*}}file: [[FILE]]
/third_party/rust/rust/tests/rustdoc-ui/doctest/
Drun-directory.rs4 // check-pass
5 // [correct]compile-flags:--test --test-run-directory={{src-base}}
6 // [incorrect]compile-flags:--test --test-run-directory={{src-base}}/coverage
7 // normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
8 // normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
12 /// std::fs::read_to_string("doctest/run-directory.rs").unwrap(),
13 /// include_str!("run-directory.rs"),
20 /// assert!(std::fs::read_to_string("doctest/run-directory.rs").is_err());

12345678910>>...42