/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | remap_file_pages.c | 23 const char *path = "/data/remap_file_pages.txt"; variable 107 int fd = open(path, O_RDWR | O_CREAT, TEST_MODE); in remap_file_pages_0100() 116 fd = open(path, O_RDWR); in remap_file_pages_0100()
|
/third_party/musl/ldso/linux/ |
H A D | ld_log.c | 61 char *path = get_app_name(buf, PROCESS_NAME_LEN); in get_ld_log_value() local 62 if (!path) { in get_ld_log_value() 67 strcat(app_param_name, path); in get_ld_log_value()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | flockfile.c | 23 const char *path = "/data/test.txt"; variable 100 fp = fopen(path, "w+"); in flockfile_0200() 118 remove(path); in flockfile_0200()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | rand.h | 104 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes); 105 int RAND_egd(const char *path); 106 int RAND_egd_bytes(const char *path, int bytes);
|
/third_party/node/deps/openssl/openssl/Configurations/platform/ |
H A D | BASE.pm | 69 # This returns the given path (EXPR) with the matching suffix from LIST stripped 71 my $path = shift; 73 if ($path =~ m|\Q${_}\E$|) { 77 return $path;
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | dot.rs | 7 use std::path::Path; 24 pub fn write_dot_file<P>(ctx: &BindgenContext, path: P) -> io::Result<()> in write_dot_file() 28 let file = File::create(path)?; in write_dot_file()
|
/third_party/rust/crates/cxx/gen/build/src/ |
H A D | error.rs | 6 use std::path::Path; 40 Error::ExportedDirNotAbsolute(path) => write!( in fmt() 42 "element of {} must be absolute path, but was: {:?}", in fmt() 44 path, in fmt()
|
H A D | paths.rs | 4 use std::path::{Component, Path, PathBuf}; 14 // Given a path provided by the user, determines where generated files related 15 // to that path should go in our out dir. In particular we don't want to 17 // passed a path containing lots of `..` or an absolute path. 18 pub(crate) fn local_relative_path(path: &Path) -> PathBuf { 20 for component in path.components() {
|
/third_party/rust/crates/clap/tests/derive/ |
H A D | custom_string_parsers.rs | 18 use std::path::PathBuf; 23 path: PathBuf, 42 path: PathBuf::from("/usr/bin"), in test_path_opt_simple() 133 path: PathBuf, 141 path: PathBuf::from("src/lib.rs"), in test_parser_with_default_value()
|
/third_party/python/Tools/scripts/ |
H A D | update_file.py | 11 import os.path namespace 28 elif os.path.isdir(tmpfile): 29 tmpfile = os.path.join(tmpfile, filename + '.tmp') 77 parser.add_argument('filename', help='path to be updated') 78 parser.add_argument('tmpfile', help='path with new contents')
|
/third_party/openssl/Configurations/platform/ |
H A D | BASE.pm | 69 # This returns the given path (EXPR) with the matching suffix from LIST stripped 71 my $path = shift; 73 if ($path =~ m|\Q${_}\E$|) { 77 return $path;
|
/third_party/skia/src/core/ |
H A D | SkEdgeBuilder.h | 20 int buildEdges(const SkPath& path, 40 int build (const SkPath& path, const SkIRect* clip, bool clipToTheRight); 41 int buildPoly(const SkPath& path, const SkIRect* clip, bool clipToTheRight);
|
/third_party/openssl/include/openssl/ |
H A D | rand.h | 104 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes); 105 int RAND_egd(const char *path); 106 int RAND_egd_bytes(const char *path, int bytes);
|
/third_party/skia/src/utils/ |
H A D | SkTextUtils.cpp | 28 SkScalar x, SkScalar y, const SkFont& font, SkPath* path) { in GetPath() 36 } rec = { path, pos.get() }; in GetPath() 38 path->reset(); in GetPath() 27 GetPath(const void* text, size_t length, SkTextEncoding encoding, SkScalar x, SkScalar y, const SkFont& font, SkPath* path) GetPath() argument
|
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/ |
H A D | sync_restricted_traces_to_cipd.py | 9 # restricted_traces.json. Requires access to the CIPD path to work. 25 SCRIPT_DIR = os.path.dirname(sys.argv[0]) 38 with open(os.path.join(SCRIPT_DIR, JSON_PATH)) as f: 61 trace_folder = os.path.join(SCRIPT_DIR, trace)
|
/third_party/skia/third_party/externals/angle2/src/tests/test_expectations/ |
H A D | GPUTestExpectationsParser.h | 41 bool loadTestExpectationsFromFile(const GPUTestConfig &config, const std::string &path); 43 bool loadAllTestExpectationsFromFile(const std::string &path); 92 bool loadTestExpectationsFromFileImpl(const GPUTestConfig *config, const std::string &path);
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | restrace.h | 98 static void traceOpen(const char* path, const char* type, const char* name); 101 static void traceOpenDataFile(const char* path, const char* type, const char* name); 102 static void traceOpenResFile(const char* path, const char* name);
|
/third_party/toybox/toys/other/ |
H A D | inotifyd.c | 53 char *path = *ss, *masks = strchr(*ss, ':'); in inotifyd_main() local 68 if (inotify_add_watch(fds.fd, path, mask) < 0) perror_exit_raw(path); in inotifyd_main()
|
/third_party/python/Lib/test/ |
H A D | test_cppext.py | 3 import os.path namespace 57 python = os.path.join(venv_dir, 'Scripts', python_exe) 59 python = os.path.join(venv_dir, 'bin', python_exe)
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/GeneratedCodeInfo/ |
H A D | Annotation.php | 20 * is formatted the same as SourceCodeInfo.Location.path. 22 * Generated from protobuf field <code>repeated int32 path = 1 [packed = true];</code> 24 private $path; variable 26 * Identifies the filesystem path to the original source .proto. 53 * @type int[]|\Google\Protobuf\Internal\RepeatedField $path 55 * is formatted the same as SourceCodeInfo.Location.path. 57 * Identifies the filesystem path to the original source .proto. 74 * is formatted the same as SourceCodeInfo.Location.path. 76 * Generated from protobuf field <code>repeated int32 path = 1 [packed = true];</code> 81 return $this->path; 95 $this->path = $arr; global() variable [all...] |
/third_party/protobuf/php/src/Google/Protobuf/Internal/SourceCodeInfo/ |
H A D | Location.php | 21 * Each element is a field number or an index. They form a path from 23 * example, this path: 35 * Thus, the above path gives the location of a field name. If we removed 38 * this path refers to the whole field declaration (from the beginning 41 * Generated from protobuf field <code>repeated int32 path = 1 [packed = true];</code> 43 private $path; variable 110 * @type int[]|\Google\Protobuf\Internal\RepeatedField $path 113 * Each element is a field number or an index. They form a path from 115 * example, this path: 127 * Thus, the above path give 245 $this->path = $arr; global() variable [all...] |
/third_party/python/Lib/test/test_email/ |
H A D | torture_test.py | 21 from os.path import join, dirname, abspath 22 path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename)) 23 return open(path, 'r')
|
/third_party/skia/third_party/externals/abseil-cpp/absl/copts/ |
H A D | generate_copts.py | 9 from os import path namespace 28 return path.join(path.dirname(__file__), filename)
|
/third_party/skia/modules/sksg/src/ |
H A D | SkSGMerge.cpp | 72 auto append = [&](const SkPath& path) { in onRevalidate() 79 // First merge path determines the fill type. in onRevalidate() 80 fMerged = path; in onRevalidate() 82 fMerged.addPath(path); in onRevalidate()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGRect.cpp | 70 SkPath path = SkPath::RRect(this->resolve(ctx.lengthContext())); in onAsPath() local 72 this->mapToParent(&path); in onAsPath() 74 return path; in onAsPath()
|