/third_party/node/test/pummel/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/report/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/sequential/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/tick-processor/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/v8-updates/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/wasi/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/wpt/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/abort/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/addons/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/async-hooks/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/benchmark/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/embedding/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/doctool/ |
H A D | testcfg.py | 3 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/node/test/es-module/ |
H A D | testcfg.py | 2 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
/third_party/musl/src/stat/ |
H A D | chmod.c | 5 int chmod(const char *path, mode_t mode) in chmod() argument 8 return syscall(SYS_chmod, path, mode); in chmod() 10 return syscall(SYS_fchmodat, AT_FDCWD, path, mode); in chmod()
|
H A D | mkfifo.c | 6 int mkfifo(const char *path, mode_t mode) in mkfifo() argument 9 return syscall(SYS_mkfifo, path, mode); in mkfifo() 11 return mknod(path, mode | S_IFIFO, 0); in mkfifo()
|
H A D | mkdir.c | 5 int mkdir(const char *path, mode_t mode) in mkdir() argument 8 return syscall(SYS_mkdir, path, mode); in mkdir() 10 return syscall(SYS_mkdirat, AT_FDCWD, path, mode); in mkdir()
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
H A D | remove.c | 6 int remove(const char *path) in remove() argument 8 int r = unlink(path); in remove() 9 if (r==-EISDIR) r = rmdir(path); in remove()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
H A D | remove.c | 6 int remove(const char *path) in remove() argument 8 int r = unlink(path); in remove() 9 if (r==-EISDIR) r = rmdir(path); in remove()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
H A D | remove.c | 6 int remove(const char *path) in remove() argument 8 int r = unlink(path); in remove() 9 if (r==-EISDIR) r = rmdir(path); in remove()
|
/third_party/rust/crates/cxx/tests/ui/ |
H A D | include.rs | 4 include!("path/to" what); 5 include!(<path/to> what); 6 include!(<path/to); 7 include!(<path[to]>);
|
/third_party/skia/third_party/externals/brotli/scripts/dictionary/ |
H A D | step-01-download-rfc.py | 11 path = "rfc7932.txt" variable 13 with open(path, "w") as rfc: 16 print("Downloaded and saved " + str(len(text)) + " bytes to " + path)
|
/third_party/skia/tools/fiddle/ |
H A D | make_all_examples_cpp.py | 9 os.chdir(os.path.dirname(__file__)) 14 for path in sorted(glob.glob('../../docs/examples/*.cpp')): 15 o.write('#include "%s"\n' % path)
|
/third_party/skia/docs/examples/ |
H A D | Path_setFillType.cpp | 7 SkPath path; in REG_FIDDLE() local 8 path.setFillType(SkPathFillType::kInverseWinding); in REG_FIDDLE() 11 canvas->drawPath(path, paint); in REG_FIDDLE()
|
/foundation/graphic/graphic_3d/lume/LumeFont/src/ |
H A D | font_manager.cpp | 65 TypeFace InitTypeFace(FT_Face face, string_view path, string_view filename) in InitTypeFace() argument 68 string(path), // font file path in InitTypeFace() 160 IFile::Ptr file = fileManager.OpenFile(typeFace.path); in CreateFontBuffer() 162 CORE_LOG_E("failed to open font %s | %s", typeFace.path.data(), GetErrorString().c_str()); in CreateFontBuffer() 171 CORE_LOG_E("failed to read %zu bytes from %s | %s", len, typeFace.path.data(), GetErrorString().c_str()); in CreateFontBuffer() 245 void FontManager::GetTypeFacesByFile(vector<TypeFace>& typeFaces, string_view path) in GetTypeFacesByFile() argument 249 IFile::Ptr file = fileManager.OpenFile(path); in GetTypeFacesByFile() 251 CORE_LOG_E("failed to open font %s | %s", path.data(), GetErrorString().c_str()); in GetTypeFacesByFile() 255 auto entry = fileManager.GetEntry(path); in GetTypeFacesByFile() 302 GetTypeFacesByDir(vector<TypeFace>& typeFaces, string_view path) GetTypeFacesByDir() argument [all...] |