/aosp_15_r20/sdk/files/ant/ |
H A D | build.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 4 <!-- 5 This build file is imported by the project build file. It contains 9 At the beginning of the file is a list of properties that can be overridden 11 first definition sticks and is never changed). 14 - custom task definitions, 15 - more properties (do not override those unless the whole build system is modified). 16 - macros used throughout the build, 17 - base build targets, 18 - debug-specific build targets, [all …]
|
/aosp_15_r20/external/okio/okio/src/commonMain/kotlin/okio/ |
H A D | Path.kt | 8 * http://www.apache.org/licenses/LICENSE-2.0 11 * distributed under the License is distributed on an "AS IS" BASIS, 18 import okio.Path.Companion.toPath 21 * A hierarchical address on a file system. A path is an identifier only; a [FileSystem] is required 22 * to access the file that a path refers to, if any. 25 * ---------------------- 28 * (including Linux, Android, macOS, and iOS), the `/` slash character separates path segments. On 29 * Windows, the `\` backslash character separates path segments. The two platforms each have their 30 * own rules for path resolution. This class implements all rules on all platforms; for example you 31 * can model a Linux path in a native Windows application. [all …]
|
/aosp_15_r20/art/test/ |
H A D | run_test_build.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 18 This scripts compiles Java files which are needed to execute run-tests. 19 It is intended to be used only from soong genrule. 36 from os.path import relpath 37 from pathlib import Path 49 lock_file = None # Keep alive as long as this process is alive. 54 "952-invoke-custom", # b/228312861: RBE uses wrong inputs. 55 "979-const-method-handle", # b/228312861: RBE uses wrong inputs. 63 self.android_build_top = android_build_top.absolute() [all …]
|
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xml/utils/ |
H A D | SystemIDResolver.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 13 * distributed under the License is distributed on an "AS IS" BASIS, 19 * $Id: SystemIDResolver.java 468655 2006-10-28 07:12:06Z minchau $ 30 * This class is used to resolve relative URIs and SystemID 31 * strings into absolute URIs. 33 * <p>This is a generic utility for resolving URIs, other than the 35 * see code comments for details on how resolution is performed.</p> 42 * Get an absolute URI from a given relative URI (local path). 44 * <p>The relative URI is a local filesystem path. The path can be 45 * absolute or relative. If it is a relative path, it is resolved relative [all …]
|
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
H A D | SystemIDResolver.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 13 * distributed under the License is distributed on an "AS IS" BASIS, 19 * $Id: SystemIDResolver.java 468654 2006-10-28 07:09:23Z minchau $ 30 * This class is used to resolve relative URIs and SystemID 31 * strings into absolute URIs. 33 * <p>This is a generic utility for resolving URIs, other than the 35 * see code comments for details on how resolution is performed.</p> 37 * This class is a copy of the one in org.apache.xml.utils. 40 * This class is not a public API, it is only public because it is 49 * Get an absolute URI from a given relative URI (local path). [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/path/ |
H A D | windows.rs | 3 use crate::path::{Path, PathBuf, Prefix}; 14 pub fn is_sep_byte(b: u8) -> bool { 19 pub fn is_verbatim_sep(b: u8) -> bool { 23 /// Returns true if `path` looks like a lone filename. 24 pub(crate) fn is_file_name(path: &OsStr) -> bool { 25 !path.as_encoded_bytes().iter().copied().any(is_sep_byte) 27 pub(crate) fn has_trailing_slash(path: &OsStr) -> bool { 28 let is_verbatim = path.as_encoded_bytes().starts_with(br"\\?\"); 30 if let Some(&c) = path.as_encoded_bytes().last() { is_separator(c) } else { false } 33 /// Appends a suffix to a path. [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sys/path/ |
H A D | windows.rs | 3 use crate::path::{Path, PathBuf, Prefix}; 14 pub fn is_sep_byte(b: u8) -> bool { 19 pub fn is_verbatim_sep(b: u8) -> bool { 23 /// Returns true if `path` looks like a lone filename. 24 pub(crate) fn is_file_name(path: &OsStr) -> bool { 25 !path.as_encoded_bytes().iter().copied().any(is_sep_byte) 27 pub(crate) fn has_trailing_slash(path: &OsStr) -> bool { 28 let is_verbatim = path.as_encoded_bytes().starts_with(br"\\?\"); 30 if let Some(&c) = path.as_encoded_bytes().last() { is_separator(c) } else { false } 33 /// Appends a suffix to a path. [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/path/ |
H A D | windows.rs | 3 use crate::path::{Path, PathBuf, Prefix}; 15 pub fn is_sep_byte(b: u8) -> bool { 20 pub fn is_verbatim_sep(b: u8) -> bool { 24 pub fn is_verbatim(path: &[u16]) -> bool { 25 path.starts_with(utf16!(r"\\?\")) || path.starts_with(utf16!(r"\??\")) 28 /// Returns true if `path` looks like a lone filename. 29 pub(crate) fn is_file_name(path: &OsStr) -> bool { 30 !path.as_encoded_bytes().iter().copied().any(is_sep_byte) 32 pub(crate) fn has_trailing_slash(path: &OsStr) -> bool { 33 let is_verbatim = path.as_encoded_bytes().starts_with(br"\\?\"); [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sys/path/ |
H A D | windows.rs | 3 use crate::path::{Path, PathBuf, Prefix}; 15 pub fn is_sep_byte(b: u8) -> bool { 20 pub fn is_verbatim_sep(b: u8) -> bool { 24 pub fn is_verbatim(path: &[u16]) -> bool { 25 path.starts_with(utf16!(r"\\?\")) || path.starts_with(utf16!(r"\??\")) 28 /// Returns true if `path` looks like a lone filename. 29 pub(crate) fn is_file_name(path: &OsStr) -> bool { 30 !path.as_encoded_bytes().iter().copied().any(is_sep_byte) 32 pub(crate) fn has_trailing_slash(path: &OsStr) -> bool { 33 let is_verbatim = path.as_encoded_bytes().starts_with(br"\\?\"); [all …]
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sys/path/ |
H A D | windows.rs | 3 use crate::path::{Path, PathBuf, Prefix}; 15 pub fn is_sep_byte(b: u8) -> bool { 20 pub fn is_verbatim_sep(b: u8) -> bool { 24 pub fn is_verbatim(path: &[u16]) -> bool { 25 path.starts_with(utf16!(r"\\?\")) || path.starts_with(utf16!(r"\??\")) 28 /// Returns true if `path` looks like a lone filename. 29 pub(crate) fn is_file_name(path: &OsStr) -> bool { 30 !path.as_encoded_bytes().iter().copied().any(is_sep_byte) 32 pub(crate) fn has_trailing_slash(path: &OsStr) -> bool { 33 let is_verbatim = path.as_encoded_bytes().starts_with(br"\\?\"); [all …]
|
/aosp_15_r20/tools/asuite/aidegen/lib/ |
H A D | common_util.py | 3 # Copyright 2018 - The Android Open Source Project 9 # http://www.apache.org/licenses/LICENSE-2.0 12 # distributed under the License is distributed on an "AS IS" BASIS, 48 FAKE_MODULE_ERROR = '{} is a fake module.' 49 OUTSIDE_ROOT_ERROR = '{} is outside android root.' 50 PATH_NOT_EXISTS_ERROR = 'The path {} doesn\'t exist.' 52 _REBUILD_MODULE_INFO = '%s We should rebuild module-info.json file for it.' 56 _DATE_FORMAT = '%Y-%m-%d %H:%M:%S' 57 _ARG_IS_NULL_ERROR = "{0}.{1}: argument '{2}' is null." 58 _ARG_TYPE_INCORRECT_ERROR = "{0}.{1}: argument '{2}': type is {3}, must be {4}." [all …]
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/openat2/ |
H A D | resolve_test.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 4 * Copyright (C) 2018-2019 SUSE LLC. 24 * |-- procexe -> /proc/self/exe 25 * |-- procroot -> /proc/self/root 26 * |-- root/ 27 * |-- mnt/ [mountpoint] 28 * | |-- self -> ../mnt/ 29 * | `-- absself -> /mnt/ 30 * |-- etc/ 31 * | `-- passwd [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Support/ |
D | Path.h | 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file declares the llvm::sys::path namespace. It is designed after 11 // path class. 13 //===----------------------------------------------------------------------===// 25 namespace path { 35 /// Check if \p S uses POSIX path rules. 48 /// Check if \p S uses Windows path rules. 54 /// Path iterator. [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ |
H A D | Path.h | 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file declares the llvm::sys::path namespace. It is designed after 11 // path class. 13 //===----------------------------------------------------------------------===// 25 namespace path { 35 /// Check if \p S uses POSIX path rules. 48 /// Check if \p S uses Windows path rules. 54 /// Path iterator. [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Support/ |
D | Path.h | 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file declares the llvm::sys::path namespace. It is designed after 11 // path class. 13 //===----------------------------------------------------------------------===// 25 namespace path { 35 /// Check if \p S uses POSIX path rules. 48 /// Check if \p S uses Windows path rules. 54 /// Path iterator. [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Support/ |
D | Path.h | 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file declares the llvm::sys::path namespace. It is designed after 11 // path class. 13 //===----------------------------------------------------------------------===// 25 namespace path { 35 /// Check if \p S uses POSIX path rules. 48 /// Check if \p S uses Windows path rules. 54 /// Path iterator. [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Support/ |
D | Path.h | 1 //===- llvm/Support/Path.h - Path Operating System Concept ------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file declares the llvm::sys::path namespace. It is designed after 11 // path class. 13 //===----------------------------------------------------------------------===// 25 namespace path { 35 /// Check if \p S uses POSIX path rules. 48 /// Check if \p S uses Windows path rules. 54 /// Path iterator. [all …]
|
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/manual/ |
D | cmake-file-api.7.rst | 1 .. cmake-manual-description: CMake File-Based API 3 cmake-file-api(7) 13 CMake provides a file-based API that clients may use to get semantic 20 The file-based API uses a ``<build>/.cmake/api/`` directory at the top 21 of a build tree. The API is versioned to support changes to the layout 22 of files within the API directory. API file layout versioning is 29 API v1 is housed in the ``<build>/.cmake/api/v1/`` directory. 48 ------------------------------- 55 ``v1/query/`` directory. The form is:: 57 <build>/.cmake/api/v1/query/<kind>-v<major> [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/go/internal/workcmd/ |
D | use.go | 2 // Use of this source code is governed by a BSD-style 14 "path/filepath" 27 UsageLine: "go work use [-r] [moddirs]", 29 Long: `Use provides a command-line interface for adding 40 and newly added ones. With no arguments, this update is the only 43 The -r flag searches recursively for modules in the argument 68 …base.Fatalf("go: no go.work file found\n\t(run 'go work init' first or specify path using GOWORK e… 79 workDir := filepath.Dir(gowork) // absolute, since gowork itself is absolute 81 haveDirs := make(map[string][]string) // absolute → original(s) 84 if filepath.IsAbs(use.Path) { [all …]
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | pathlib.rst | 2 :mod:`pathlib` --- Object-oriented filesystem paths 6 :synopsis: Object-oriented filesystem paths 12 .. index:: single: path; operations 14 -------------- 17 appropriate for different operating systems. Path classes are divided 18 between :ref:`pure paths <pure-paths>`, which provide purely computational 19 operations without I/O, and :ref:`concrete paths <concrete-paths>`, which 22 .. image:: pathlib-inheritance.png 24 :class: invert-in-dark-mode 26 If you've never used this module before or just aren't sure which class is [all …]
|
/aosp_15_r20/external/webrtc/tools_webrtc/vim/ |
H A D | webrtc.ycm_extra_conf.py | 5 # Use of this source code is governed by a BSD-style license 11 # Autocompletion config for YouCompleteMe in WebRTC. This is just copied from 23 # ln -rs tools_webrtc/vim/webrtc.ycm_extra_conf.py \ 29 # let g:ycm_extra_conf_globlist=['<path to .ycm_extra_conf.py>'] 47 # * The purpose of this script is to construct an accurate enough command line 50 # * Right now, we only pull the -I and -D flags. That seems to be sufficient 59 import os.path 66 '-DUSE_CLANG_COMPLETER', 67 '-std=c++11', 68 '-x', [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/filesystem/test/ |
D | operations_test.cpp | 1 // Boost operations_test.cpp ---------------------------------------------------------// 69 inline void setenv_(const char* name, const fs::path::value_type* val, int) in setenv_() 102 // file stream I/O, use path::string() to get a narrow character c_str() 121 fs::path dir; 122 fs::path d1; 123 fs::path d2; 124 fs::path f0; 125 fs::path f1; 126 fs::path d1f1; 130 fs::path ng(" no-way, Jose"); [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/nio/file/ |
D | Path.java | 5 * This code is free software; you can redistribute it and/or modify it 11 * This code is distributed in the hope that it will be useful, but WITHOUT 14 * version 2 for more details (a copy is included in the LICENSE file that 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 37 * typically represent a system dependent file path. 39 * <p> A {@code Path} represents a path that is hierarchical and composed of a 42 * hierarchy, may also be present. The name element that is <em>farthest</em> 43 * from the root of the directory hierarchy is the name of a file or directory. 44 * The other name elements are directory names. A {@code Path} can represent a 46 * A {@code Path} is considered to be an <i>empty path</i> if it consists [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/9/libcore/ojluni/src/main/java/java/nio/file/ |
D | Path.java | 5 * This code is free software; you can redistribute it and/or modify it 11 * This code is distributed in the hope that it will be useful, but WITHOUT 14 * version 2 for more details (a copy is included in the LICENSE file that 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 37 * typically represent a system dependent file path. 39 * <p> A {@code Path} represents a path that is hierarchical and composed of a 42 * hierarchy, may also be present. The name element that is <em>farthest</em> 43 * from the root of the directory hierarchy is the name of a file or directory. 44 * The other name elements are directory names. A {@code Path} can represent a 46 * A {@code Path} is considered to be an <i>empty path</i> if it consists [all …]
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/nio/file/ |
H A D | Path.java | 5 * This code is free software; you can redistribute it and/or modify it 11 * This code is distributed in the hope that it will be useful, but WITHOUT 14 * version 2 for more details (a copy is included in the LICENSE file that 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 37 * typically represent a system dependent file path. 39 * <p> A {@code Path} represents a path that is hierarchical and composed of a 42 * hierarchy, may also be present. The name element that is <em>farthest</em> 43 * from the root of the directory hierarchy is the name of a file or directory. 44 * The other name elements are directory names. A {@code Path} can represent a 46 * A {@code Path} is considered to be an <i>empty path</i> if it consists [all …]
|