| /third_party/json/ |
| H A D | OAT.xml | 20 basedir: Root dir, the basedir + project path is the real source file location.
29 5. task project: Projects to be checked, the path field define the source root dir of the project.
34 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is:
35 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
37 "compatibility" is used to check license compatibility in the specified path;
38 "license" is used to check source license header in the specified path;
39 "copyright" is used to check source copyright header in the specified path;
40 "import" is used to check source dependency in the specified path, such as import ... ,include ...
41 "filetype" is used to check file type in the specified path, supported file types: archive, binary
42 "filename" is used to check whether the specified file exists in the specified path(suppor [all...] |
| /third_party/node/deps/v8/third_party/ittapi/ |
| H A D | buildall.py | 22 def read_registry(path, depth=0xFFFFFFFF, statics={}): 27 parts = path.split('\\') 29 path = '\\'.join(parts[1:]) 68 return enum_nodes(path, depth) 90 path, err = subprocess.Popen("which cmake", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() 91 if not path.strip(): 92 path, err = subprocess.Popen("which xcrun", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() 93 if not path.strip(): 123 bin_dir = os.path.join(work_dir, 'bin') 124 if os.path [all...] |
| /third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
| H A D | script_mutator.js | 12 const path = require('path'); 54 this.mutateDb = new db.MutateDb(db_path || path.join(process.cwd(), 'db')); 79 while (path.dirname(mjsunitPath) != mjsunitPath && 80 path.basename(mjsunitPath) != 'mjsunit') { 81 mjsunitPath = path.dirname(mjsunitPath); 84 if (path.basename(mjsunitPath) == 'mjsunit') { 85 mjsunitPath = path.join(mjsunitPath, 'mjsunit.js'); 97 let currentDir = path.dirname(input.absPath); 99 while (path [all...] |
| /third_party/node/deps/v8/tools/vim/ |
| H A D | ninja-build.vim | 15 " in your path (which it is automatically if depot_tools is in your path). 20 " so /path/to/src/tools/vim/ninja-build.vim 28 """Returns the absolute path of the current buffer.""" 33 """Returns the absolute path to the V8 source root.""" 34 candidate = os.path.dirname(path_to_current_buffer()) 41 [os.path.isdir(os.path.join(candidate, fp)) for fp in fingerprints]): 42 candidate = os.path.dirname(candidate) 50 sys.path [all...] |
| /third_party/node/deps/v8/tools/release/ |
| H A D | list_deprecated.py | 11 from pathlib import Path namespace 28 def __init__(self, path): 29 self.path = path 37 files = map(Path, filter(lambda l: l.endswith('.h'), files.splitlines())) 55 logging.info(f"blame list for {self.path}") 57 ['git', 'blame', '-t', '--line-porcelain', self.path], 137 file_position = (f"{self.path}:{linenumber}").ljust(40) 144 ['git', 'log', '-1', '--format=%H%n%ct', self.path], 153 parser.add_argument("include_dir", nargs='?', help="Path t [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-fs-access.js | 16 const path = require('path'); 22 const doesNotExist = path.join(tmpdir.path, '__this_should_not_exist'); 23 const readOnlyFile = path.join(tmpdir.path, 'read_only_file'); 24 const readWriteFile = path.join(tmpdir.path, 'read_write_file'); 97 assert.strictEqual(err.path, doesNotExist); 112 assert.strictEqual(err.path, readOnlyFil [all...] |
| H A D | test-fs-utimes.js | 32 const lpath = `${tmpdir.path}/symlink`; 73 const stats = fs.statSync(tmpdir.path); 75 const asPath = (path) => path; 76 const asUrl = (path) => url.pathToFileURL(path); 101 fs.utimes(pathType(tmpdir.path), atime, mtime, common.mustCall((err) => { 102 expect_ok('utimes', tmpdir.path, err, atime, mtime); 112 fd = fs.openSync(tmpdir.path, 'r+'); 114 fd = fs.openSync(tmpdir.path, ' [all...] |
| H A D | test-fs-write-file-sync.js | 29 const path = require('path'); 44 const file = path.join(tmpdir.path, 'testWriteFileSync.txt'); 54 const file = path.join(tmpdir.path, 'testAppendFileSync.txt'); 80 const file = path.join(tmpdir.path, 'testWriteFileSyncFd.txt'); 97 const file = path.join(tmpdir.path, 'testWriteFileSyncFlag [all...] |
| H A D | test-fs-write.js | 26 const path = require('path'); 32 const fn = path.join(tmpdir.path, 'write.txt'); 33 const fn2 = path.join(tmpdir.path, 'write2.txt'); 34 const fn3 = path.join(tmpdir.path, 'write3.txt'); 35 const fn4 = path.join(tmpdir.path, 'write [all...] |
| /third_party/node/test/pummel/ |
| H A D | test-heapsnapshot-near-heap-limit-by-api.js | 39 fixtures.path('workload', 'grow-and-set-near-heap-limit.js'), 41 cwd: tmpdir.path, 52 const list = fs.readdirSync(tmpdir.path) 67 fixtures.path('workload', 'grow-and-set-near-heap-limit.js'), 69 cwd: tmpdir.path, 80 const list = fs.readdirSync(tmpdir.path) 95 fixtures.path('workload', 'grow-and-set-near-heap-limit.js'), 97 cwd: tmpdir.path, 109 const list = fs.readdirSync(tmpdir.path) 124 fixtures.path('workloa [all...] |
| /third_party/node/deps/v8/tools/ |
| H A D | run-wasm-api-tests.py | 16 C and C++ versions, both with GCC ("gcc" and "g++" binaries found in $PATH) 35 CHECKOUT_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 36 WASM_PATH = os.path.join(CHECKOUT_PATH, "third_party", "wasm-api") 37 CLANG_PATH = os.path.join(CHECKOUT_PATH, "third_party", "llvm-build", 46 "c": os.path.join(CLANG_PATH, "clang"), 47 "cc": os.path.join(CLANG_PATH, "clang++"), 80 self.src_file_basename = os.path.join(WASM_PATH, "example", name) 81 self.dst_file_basename = os.path [all...] |
| /third_party/node/src/permission/ |
| H A D | fs_permission.cc | 56 // is UNC file path in is_tree_granted() 136 const std::string path = WildcardIfDir(res); in GrantAccess() local 138 granted_in_fs_.Insert(path); in GrantAccess() 141 granted_out_fs_.Insert(path); in GrantAccess() 178 const std::string path(s); in Lookup() 179 auto path_len = path.length(); in Lookup() 186 auto node = current_node->NextNode(path, parent_node_prefix_len); in Lookup() 200 void FSPermission::RadixTree::Insert(const std::string& path) { in Insert() argument 204 int path_len = path.length(); in Insert() 207 bool is_wildcard_node = path[ in Insert() [all...] |
| /third_party/noto-cjk/ |
| H A D | OAT.xml | 24 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is: 25 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/> 27 "compatibility" is used to check license compatibility in the specified path; 28 "license" is used to check source license header in the specified path; 29 "copyright" is used to check source copyright header in the specified path; 30 "import" is used to check source dependency in the specified path, such as import ... ,include ... 31 "filetype" is used to check file type in the specified path, supported file types: archive, binary 32 "filename" is used to check whether the specified file exists in the specified path(projectroot means the root dir of the project), supported file names: LICENSE, README, README.OpenSource 34 5. policyitem path: This field is used for define the source file scope to apply this policyitem, the "!" prefix means exclude the files. For example, "!.*/lib/.*" means files in lib dir will be exclude while process this policyitem. 38 8. filefilter: Filter rules, the type filename is used to filter file name, the type filepath is used to filter file path [all...] |
| /third_party/ninja/ |
| H A D | OAT.xml | 19 basedir: Root dir, the basedir + project path is the real source file location. 28 5. task project: Projects to be checked, the path field define the source root dir of the project. 33 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is: 34 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/> 36 "compatibility" is used to check license compatibility in the specified path; 37 "license" is used to check source license header in the specified path; 38 "copyright" is used to check source copyright header in the specified path; 39 "import" is used to check source dependency in the specified path, such as import ... ,include ... 40 "filetype" is used to check file type in the specified path, supported file types: archive, binary 41 "filename" is used to check whether the specified file exists in the specified path(suppor [all...] |
| /third_party/node/deps/npm/node_modules/node-gyp/lib/ |
| H A D | process-release.js | 7 const path = require('path') 112 libPath: normalizePath(path.relative(url.parse(baseUrl).path, url.parse(libUrl32).path)) 116 libPath: normalizePath(path.relative(url.parse(baseUrl).path, url.parse(libUrl64).path)) 120 libPath: normalizePath(path.relative(url.parse(baseUrl).path, ur [all...] |
| /third_party/lwip/ |
| H A D | OAT.xml | 24 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is:
25 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
27 "compatibility" is used to check license compatibility in the specified path;
28 "license" is used to check source license header in the specified path;
29 "copyright" is used to check source copyright header in the specified path;
30 "import" is used to check source dependency in the specified path, such as import ... ,include ...
31 "filetype" is used to check file type in the specified path, supported file types: archive, binary
32 "filename" is used to check whether the specified file exists in the specified path(projectroot means the root dir of the project), supported file names: LICENSE, README, README.OpenSource
34 5. policyitem path: This field is used for define the source file scope to apply this policyitem, the "!" prefix means exclude the files. For example, "!.*/lib/.*" means files in lib dir will be exclude while process this policyitem.
38 8. filefilter: Filter rules, the type filename is used to filter file name, the type filepath is used to filter file path [all...] |
| /third_party/mtdev/ |
| H A D | OAT.xml | 20 basedir: Root dir, the basedir + project path is the real source file location.
29 5. task project: Projects to be checked, the path field define the source root dir of the project.
34 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is:
35 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
37 "compatibility" is used to check license compatibility in the specified path;
38 "license" is used to check source license header in the specified path;
39 "copyright" is used to check source copyright header in the specified path;
40 "import" is used to check source dependency in the specified path, such as import ... ,include ...
41 "filetype" is used to check file type in the specified path, supported file types: archive, binary
42 "filename" is used to check whether the specified file exists in the specified path(suppor [all...] |
| /third_party/node/deps/openssl/openssl/crypto/rand/ |
| H A D | rand_egd.c | 21 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) in RAND_query_egd_bytes() argument 26 int RAND_egd(const char *path) in RAND_egd() argument 31 int RAND_egd_bytes(const char *path, int bytes) in RAND_egd_bytes() argument 47 char sun_path[108]; /* path name (gag) */ 109 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) in RAND_query_egd_bytes() argument 122 if (strlen(path) >= sizeof(addr.sun_path)) in RAND_query_egd_bytes() 124 strcpy(addr.sun_path, path); in RAND_query_egd_bytes() 125 i = offsetof(struct sockaddr_un, sun_path) + strlen(path); in RAND_query_egd_bytes() 204 int RAND_egd_bytes(const char *path, int bytes) in RAND_egd_bytes() argument 208 num = RAND_query_egd_bytes(path, NUL in RAND_egd_bytes() 216 RAND_egd(const char *path) RAND_egd() argument [all...] |
| /third_party/rust/crates/cxx/ |
| H A D | OAT.xml | 19 basedir: Root dir|the basedir + project path is the real source file location.
28 5. task project: Projects to be checked|the path field define the source root dir of the project.
33 2. policyitem: The fields type|name|path|desc is required|and the fields rule|group|filefilter is optional,the default value is:
34 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
36 "compatibility" is used to check license compatibility in the specified path;
37 "license" is used to check source license header in the specified path;
38 "copyright" is used to check source copyright header in the specified path;
39 "import" is used to check source dependency in the specified path|such as import ... ,include ...
40 "filetype" is used to check file type in the specified path|supported file types: archive|binary
41 "filename" is used to check whether the specified file exists in the specified path(suppor [all...] |
| /third_party/rust/crates/libc/ |
| H A D | OAT.xml | 19 basedir: Root dir, the basedir + project path is the real source file location.
28 5. task project: Projects to be checked, the path field define the source root dir of the project.
33 2. policyitem: The fields type, name, path, desc is required, and the fields rule, group, filefilter is optional,the default value is:
34 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
36 "compatibility" is used to check license compatibility in the specified path;
37 "license" is used to check source license header in the specified path;
38 "copyright" is used to check source copyright header in the specified path;
39 "import" is used to check source dependency in the specified path, such as import ... ,include ...
40 "filetype" is used to check file type in the specified path, supported file types: archive, binary
41 "filename" is used to check whether the specified file exists in the specified path(suppor [all...] |
| /third_party/rust/crates/clap/clap_derive/src/ |
| H A D | attr.rs | 28 let kind = if attr.path().is_ident("clap") { in parse_all() 29 Sp::new(AttrKind::Clap, attr.path().span()) in parse_all() 30 } else if attr.path().is_ident("structopt") { in parse_all() 31 Sp::new(AttrKind::StructOpt, attr.path().span()) in parse_all() 32 } else if attr.path().is_ident("command") { in parse_all() 33 Sp::new(AttrKind::Command, attr.path().span()) in parse_all() 34 } else if attr.path().is_ident("group") { in parse_all() 35 Sp::new(AttrKind::Group, attr.path().span()) in parse_all() 36 } else if attr.path().is_ident("arg") { in parse_all() 37 Sp::new(AttrKind::Arg, attr.path() in parse_all() [all...] |
| /third_party/rust/crates/heck/ |
| H A D | OAT.xml | 19 basedir: Root dir|the basedir + project path is the real source file location.
28 5. task project: Projects to be checked|the path field define the source root dir of the project.
33 2. policyitem: The fields type|name|path|desc is required|and the fields rule|group|filefilter is optional,the default value is:
34 <policyitem type="" name="" path="" desc="" rule="may" group="defaultGroup" filefilter="defaultPolicyFilter"/>
36 "compatibility" is used to check license compatibility in the specified path;
37 "license" is used to check source license header in the specified path;
38 "copyright" is used to check source copyright header in the specified path;
39 "import" is used to check source dependency in the specified path|such as import ... ,include ...
40 "filetype" is used to check file type in the specified path|supported file types: archive|binary
41 "filename" is used to check whether the specified file exists in the specified path(suppor [all...] |
| /third_party/python/Lib/distutils/tests/ |
| H A D | test_upload.py | 118 path = os.path.join(tmp, 'xxx') 119 self.write_file(path) 120 command, pyversion, filename = 'xxx', '2.6', path 167 path = os.path.join(tmp, 'xxx') 168 self.write_file(path, content='yy\r') 169 command, pyversion, filename = 'xxx', '2.6', path 195 path = os.path [all...] |
| /third_party/openssl/crypto/rand/ |
| H A D | rand_egd.c | 21 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) in RAND_query_egd_bytes() argument 26 int RAND_egd(const char *path) in RAND_egd() argument 31 int RAND_egd_bytes(const char *path, int bytes) in RAND_egd_bytes() argument 47 char sun_path[108]; /* path name (gag) */ 109 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) in RAND_query_egd_bytes() argument 122 if (strlen(path) >= sizeof(addr.sun_path)) in RAND_query_egd_bytes() 124 strcpy(addr.sun_path, path); in RAND_query_egd_bytes() 125 i = offsetof(struct sockaddr_un, sun_path) + strlen(path); in RAND_query_egd_bytes() 204 int RAND_egd_bytes(const char *path, int bytes) in RAND_egd_bytes() argument 208 num = RAND_query_egd_bytes(path, NUL in RAND_egd_bytes() 216 RAND_egd(const char *path) RAND_egd() argument [all...] |
| /third_party/skia/src/ports/ |
| H A D | SkOSFile_posix.cpp | 27 bool sk_exists(const char *path, SkFILE_Flags flags) { in sk_exists() argument 36 // if the default path fails, check the bundle (but only if read-only) in sk_exists() 37 if (0 == access(path, mode)) { in sk_exists() 40 return (kRead_SkFILE_Flag == flags && ios_get_path_in_bundle(path, nullptr)); in sk_exists() 43 return (0 == access(path, mode)); in sk_exists() 135 SkOSFile::Iter::Iter(const char path[], const char suffix[]) { in Iter() argument 137 this->reset(path, suffix); in Iter() 148 void SkOSFile::Iter::reset(const char path[], const char suffix[]) { in reset() argument 154 self.fPath.set(path); in reset() 156 if (path) { in reset() [all...] |