Searched +full:- +full:- +full:base +full:- +full:directory (Results 1 – 25 of 1229) sorted by relevance
12345678910>>...50
| /third_party/gn/src/gn/ |
| D | filesystem_utils.h | 2 // 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 …]
|
| D | setup_unittest.cc | 2 // 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 …]
|
| D | command_gen.cc | 2 // 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 …]
|
| D | setup.h | 2 // 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 …]
|
| D | function_exec_script.cc | 2 // 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/ |
| D | clean.py | 5 # 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 …]
|
| D | install.py | 30 # 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 …]
|
| D | build.py | 21 ('build-base=', 'b', 22 "base directory for build library"), 23 ('build-purelib=', None, 24 "build directory for platform-neutral distributions"), 25 ('build-platlib=', None, 26 "build directory for platform-specific distributions"), 27 ('build-lib=', None, 28 "build directory for all distribution (defaults to either " + 29 "build-purelib or build-platlib"), 30 ('build-scripts=', None, [all …]
|
| /third_party/gn/src/base/files/ |
| D | file_util.h | 2 // 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 …]
|
| /third_party/skia/buildtools/checkdeps/ |
| D | README.md | 3 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/node/deps/zlib/google/ |
| D | zip.cc | 2 // 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 …]
|
| D | zip.h | 2 // 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 …]
|
| D | zip_reader.h | 2 // Use of this source code is governed by a BSD-style license that can be 14 #include "base/files/file.h" 15 #include "base/files/file_path.h" 16 #include "base/functional/callback.h" 17 #include "base/memory/weak_ptr.h" 18 #include "base/numerics/safe_conversions.h" 19 #include "base/time/time.h" 43 // Sets the last-modified time of the data. 44 virtual void SetTimeModified(const base::Time& time) {} in SetTimeModified() 67 // auto writer = CreateFilePathWriterDelegate(extract_dir, entry->path); [all …]
|
| /third_party/node/deps/v8/third_party/zlib/google/ |
| D | zip.cc | 2 // Use of this source code is governed by a BSD-style license that can be 10 #include "base/bind.h" 11 #include "base/files/file.h" 12 #include "base/files/file_enumerator.h" 13 #include "base/files/file_util.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 …]
|
| D | zip.h | 2 // Use of this source code is governed by a BSD-style license that can be 13 #include "base/callback.h" 14 #include "base/containers/span.h" 15 #include "base/files/file_path.h" 16 #include "base/files/platform_file.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 …]
|
| D | zip_reader.h | 2 // Use of this source code is governed by a BSD-style license that can be 14 #include "base/callback.h" 15 #include "base/files/file.h" 16 #include "base/files/file_path.h" 17 #include "base/memory/weak_ptr.h" 18 #include "base/numerics/safe_conversions.h" 19 #include "base/time/time.h" 43 // Sets the last-modified time of the data. 44 virtual void SetTimeModified(const base::Time& time) {} in SetTimeModified() 67 // auto writer = CreateFilePathWriterDelegate(extract_dir, entry->path); [all …]
|
| /third_party/skia/third_party/externals/freetype/builds/ |
| D | freetype.mk | 2 # 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/node/doc/api/ |
| D | path.md | 3 <!--introduced_in=v0.10.0--> 5 > Stability: 2 - Stable 7 <!-- source_link=lib/path.js --> 9 The `node:path` module provides utilities for working with file and directory 21 Windows-style paths are being used. 59 On Windows Node.js follows the concept of per-drive working directory. 63 [this MSDN page][MSDN-Rel-Path]. 67 <!-- YAML 70 - version: v6.0.0 71 pr-url: https://github.com/nodejs/node/pull/5348 [all …]
|
| /third_party/python/Doc/install/ |
| D | index.rst | 3 .. _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/icu/icu4c/source/tools/genrb/ |
| D | derb.1.in | 1 .\" 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/ |
| D | derb.1.in | 1 .\" 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/python/Doc/library/ |
| D | site.rst | 1 :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/typescript/tests/baselines/reference/tscWatch/resolutionCache/ |
| D | works-when-installing-something-in-node_modules-or-@types-when-there-is-no-notification-from-fs-for-index-file.js | 6 /// <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/skia/third_party/externals/freetype/docs/ |
| D | INSTALL.ANY | 9 --------------------- 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/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ant/ |
| D | ConvertIcuDataTask.java | 5 import static com.google.common.base.CharMatcher.inRange; 6 import static com.google.common.base.CharMatcher.is; 7 import static com.google.common.base.CharMatcher.whitespace; 8 import static com.google.common.base.Preconditions.checkArgument; 9 import static com.google.common.base.Preconditions.checkNotNull; 10 import static com.google.common.base.Preconditions.checkState; 42 import com.google.common.base.Ascii; 43 import com.google.common.base.CaseFormat; 44 import com.google.common.base.CharMatcher; 45 import com.google.common.base.Splitter; [all …]
|
12345678910>>...50