/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | dynamic_loading_required.rs | 21 pub unsafe fn new<P>(path: P) -> Result<Self, ::libloading::Error> in new() 25 let library = ::libloading::Library::new(path)?; in new()
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _parser.py | 1 import os.path namespace 18 return os.path.join(REPO_ROOT, relfile)
|
/third_party/python/Tools/peg_generator/scripts/ |
H A D | benchmark.py | 18 sys.path.insert(0, os.getcwd()) 97 with open(os.path.join("data", "xxl.py"), "r") as f:
|
/third_party/python/Tools/scripts/ |
H A D | diff.py | 14 def file_mtime(path): 15 t = datetime.fromtimestamp(os.stat(path).st_mtime,
|
/third_party/python/Lib/distutils/ |
H A D | core.py | 33 script = os.path.basename(script_name) 101 attrs['script_name'] = os.path.basename(sys.argv[0])
|
/third_party/python/Lib/distutils/command/ |
H A D | install_data.py | 55 # it's a tuple with path to install to and a list of files 57 if not os.path.isabs(dir): 58 dir = os.path.join(self.install_dir, dir)
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | gen_emulated_builtin_function_tables.py | 73 def load_json(path): 74 with open(path) as map_file:
|
/third_party/vk-gl-cts/external/vulkan-docs/src/config/ |
H A D | makeSubmit.py | 58 """outDir - path to output directory for generated specs. 137 # could derive that path. 138 sys.path.insert(0, 'scripts') 143 results.outdir = os.path.abspath(results.outdir)
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | check_symbol_exports.py | 23 import os.path namespace 106 if not os.path.isfile(args.library):
|
/third_party/skia/resources/sksl/ |
H A D | update_fuzzer.py | 22 startDir = os.path.dirname(os.path.abspath(__file__))
|
/third_party/skia/src/gpu/ops/ |
H A D | PathInnerTriangulateOp.h | 26 // 1) Tessellate the path's outer curves into the stencil buffer. 27 // 2) Triangulate the path's inner fan and fill it with a stencil test against the curves. 30 // In practice, a path's inner fan takes up a large majority of its pixels. So from a GPU load 37 const SkPath& path, in PathInnerTriangulateOp() 45 , fPath(path) in PathInnerTriangulateOp() 90 // Pass 2: Fill the path's inner fan with a stencil test against the curves. (In extenuating 36 PathInnerTriangulateOp(const SkMatrix& viewMatrix, const SkPath& path, GrPaint&& paint, GrAAType aaType, FillPathFlags pathFlags, const SkRect& drawBounds) PathInnerTriangulateOp() argument
|
/third_party/skia/third_party/externals/spirv-cross/tests-other/ |
H A D | hlsl_resource_bindings.cpp | 16 static std::vector<SpvId> read_file(const char *path) in read_file() argument 19 FILE *file = fopen(path, "rb"); in read_file()
|
H A D | msl_resource_bindings.cpp | 16 static std::vector<SpvId> read_file(const char *path) in read_file() argument 19 FILE *file = fopen(path, "rb"); in read_file()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | check_symbol_exports.py | 23 import os.path namespace 106 if not os.path.isfile(args.library):
|
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/unicode/ |
H A D | ctest.h | 152 * @param path Path from root under which test will be placed. Ex. '/a/b/mytest' 158 const char *path); 173 * @param path Path relative to the root, Ex. '/a/b' 179 const char *path); 250 * <PRE>Usage: %s [ -l ] [ -v ] [ -? ] [ /path/to/test ]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Process.cpp | 39 assert(!path::is_absolute(FileName)); in FindInEnvPath() 57 path::append(FilePath, FileName); in FindInEnvPath()
|
/third_party/skia/tools/copyright/ |
H A D | main.py | 69 """Return a list of all files (absolute path for each one) within a tree. 76 path_list.append(os.path.abspath(os.path.join(dirpath, filename)))
|
/third_party/skia/tools/ |
H A D | merge_static_libs.py | 24 out_lib: path to the static library which will be created from in_libs 30 abs_in_libs.append(os.path.abspath(in_lib)) 46 objects.append(os.path.abspath(obj))
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | udata.h | 187 * @param path Specifies an absolute path and/or a basename for the 204 udata_open(const char *path, const char *type, const char *name, 228 * <p>If <code>path==NULL</code>, then ICU data is loaded. 236 * @param path Specifies an absolute path and/or a basename for the 256 udata_openChoice(const char *path, const char *type, const char *name, 365 * data with the specifed path that has already been opened, or 366 * if setAppData with the same path has already been called.
|
/third_party/typescript/tests/baselines/reference/ |
H A D | esModuleInterop.js | 5 //// [path.d.ts]
13 import path from "./path"; 16 path; 51 var path_1 = __importDefault(require("./path"));
|
H A D | twiceNestedKeyofIndexInference.js | 12 declare function set<T, K1 extends keyof T>(source: T, path: [K1], value: T[K1]): Set1<T, K1>; 14 declare function set<T, K1 extends keyof T, K2 extends keyof T[K1]>(source: T, path: [K1, K2], value: T[K1][K2]): Set2<T, K1, K2>;
|
/third_party/python/Lib/lib2to3/tests/ |
H A D | pytree_idempotency.py | 54 # Process every single module on sys.path (but not in packages) 55 for dir in sys.path: 65 fn = os.path.join(dir, name)
|
/third_party/python/Lib/test/test_importlib/import_/ |
H A D | test___loader__.py | 12 def find_spec(self, fullname, path=None, target=None): 38 def find_module(self, fullname, path=None):
|
/third_party/skia/include/core/ |
H A D | SkContourMeasure.h | 37 Returns false if there is no path, or a zero-length path was specified, in which case 95 * Initialize the Iter with a path. 96 * The parts of the path that are needed are copied, so the client is free to modify/delete 97 * the path after this call. 102 SkContourMeasureIter(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 106 * Reset the Iter with a path. 107 * The parts of the path that are needed are copied, so the client is free to modify/delete 108 * the path after this call. 110 void reset(const SkPath& path, boo [all...] |
/third_party/skia/infra/bots/recipes/ |
H A D | upload_buildstats_results.py | 13 'recipe_engine/path', 26 src_path = api.path['start_dir'].join('perf') 37 basename = api.path.basename(src)
|