Home
last modified time | relevance | path

Searched full:path (Results 1576 - 1600 of 38346) sorted by relevance

1...<<61626364656667686970>>...1534

/third_party/skia/modules/canvaskit/
H A Dinterface.js6 // Anything that modifies an exposed class (e.g. Path) should be set
52 CanvasKit.Path.MakeFromCmds = function(cmds) {
54 var path = CanvasKit.Path._MakeFromCmds(cmdPtr, cmds.length);
56 return path;
60 CanvasKit.Path.MakeFromVerbsPointsWeights = function(verbs, pts, weights) {
65 var path = CanvasKit.Path._MakeFromVerbsPointsWeights(
70 return path;
73 CanvasKit.Path
[all...]
/third_party/lame/
H A DOAT.xml20 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/python/Lib/test/
H A Dssl_servers.py14 here = os.path.dirname(__file__)
17 CERTFILE = os.path.join(here, 'keycert.pem')
55 def translate_path(self, path):
56 """Translate a /-separated PATH to the local filename syntax.
64 path = urllib.parse.urlparse(path)[2]
65 path = os.path.normpath(urllib.parse.unquote(path))
66 words = path
[all...]
/third_party/skia/site/docs/user/api/
H A Dskcanvas_creation.md32 const char* path) {
41 SkFILEWStream out(path);
87 void gl_example(int width, int height, void (*draw)(SkCanvas*), const char* path) {
108 SkFILEWStream out(path);
125 const char* path) {
126 SkFILEWStream pdfStream(path);
147 const char* path) {
153 SkFILEWStream skpStream(path);
186 const char* path) {
187 SkFILEWStream xpsStream(path);
[all...]
/third_party/skia/third_party/externals/freetype/tests/scripts/
H A Ddownload-test-fonts.py63 # Type: file path string
65 # Description: Path of source file, relative to the archive's
101 def check_existing(path: str, hex_digest: str):
102 """Return True if |path| exists and matches |hex_digest|."""
103 if not os.path.exists(path) or hex_digest is None:
106 with open(path, "rb") as f:
117 dest_path: Installation path
119 parent_path = os.path.dirname(dest_path)
120 if not os.path
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DFileOutputBuffer.cpp18 #include "llvm/Support/Path.h"
36 OnDiskBuffer(StringRef Path, fs::TempFile Temp, in OnDiskBuffer() argument
38 : FileOutputBuffer(Path), Buffer(std::move(Buf)), Temp(std::move(Temp)) {} in OnDiskBuffer()
78 InMemoryBuffer(StringRef Path, MemoryBlock Buf, std::size_t BufSize, in InMemoryBuffer() argument
80 : FileOutputBuffer(Path), Buffer(Buf), BufferSize(BufSize), in InMemoryBuffer()
118 createInMemoryBuffer(StringRef Path, size_t Size, unsigned Mode) { in createInMemoryBuffer() argument
124 return std::make_unique<InMemoryBuffer>(Path, MB, Size, Mode); in createInMemoryBuffer()
128 createOnDiskBuffer(StringRef Path, size_t Size, unsigned Mode) { in createOnDiskBuffer() argument
130 fs::TempFile::create(Path + ".tmp%%%%%%%", Mode); in createOnDiskBuffer()
157 return createInMemoryBuffer(Path, Siz in createOnDiskBuffer()
166 create(StringRef Path, size_t Size, unsigned Flags) create() argument
[all...]
/third_party/skia/tools/
H A Dbuild_command_buffer.py26 'path to Chromium checkout (directory containing .gclient)')
28 help='path to copy the command buffer shared library to. Typically this '
51 args.chrome_dir = os.path.abspath(args.chrome_dir)
52 args.output_dir = os.path.abspath(args.output_dir)
57 if os.path.isfile(args.chrome_dir):
60 if os.path.isfile(args.output_dir):
63 chrome_src_dir = os.path.join(args.chrome_dir, 'src')
65 if not os.path.isdir(chrome_src_dir):
68 if os.path.isfile(args.output_dir):
70 elif not os.path
[all...]
/third_party/python/PCbuild/
H A Dprepare_ssl.py15 # * Install ActivePerl and ensure it is somewhere on your path.
29 # Find all "foo.exe" files on the PATH.
31 entries = os.environ["PATH"].split(os.pathsep)
34 fname = os.path.abspath(os.path.join(p, filename))
35 if os.path.isfile(fname) and fname not in ret:
39 fname = os.path.abspath(os.path.join(p, filename))
40 if os.path.isfile(fname) and fname not in ret:
65 print(" Please install ActivePerl and ensure it appears on your path")
[all...]
/third_party/skia/gm/
H A Dquadpaths.cpp37 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, in drawPath() argument
41 path.setFillType(fill); in drawPath()
50 canvas->drawPath(path, paint); in drawPath()
88 PathAndName path; variable
89 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
90 path.fPath.quadTo(50*SK_Scalar1, 20*SK_Scalar1,
92 path.fName = "moveTo-quad";
123 this->drawPath(path.fPath, canvas, color, rect,
167 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, in drawPath() argument
171 path in drawPath()
218 PathAndName path; global() variable
[all...]
/third_party/skia/infra/bots/recipe_modules/flavor/
H A Dapi.py79 self._skia_dir = self.m.path['start_dir'].join('skia')
96 def create_clean_host_dir(self, path):
97 return self._f.create_clean_host_dir(path)
99 def create_clean_device_dir(self, path):
100 return self._f.create_clean_device_dir(path)
102 def read_file_on_device(self, path, **kwargs):
103 return self._f.read_file_on_device(path, **kwargs)
105 def remove_file_on_device(self, path):
106 return self._f.remove_file_on_device(path)
117 self.m.path['start_di
[all...]
/third_party/rust/crates/rustix/
H A DOAT.xml19 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...]
/vendor/hisilicon/
H A DOAT.xml24 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/skia/tests/
H A DGrClipStackTest.cpp50 // .path(p1)
51 // .path(p2)
135 ElementsBuilder& path(const SkPath& path) { in path() argument
136 return this->path(path, fLocalToDevice, fAA, fOp); in path()
138 ElementsBuilder& path(const SkPath& path, GrAA aa, SkClipOp op) { in path() argument
139 return this->path(path, fLocalToDevic in path()
141 path(const SkPath& path, const SkMatrix& m, GrAA aa, SkClipOp op) path() argument
877 SkPath path; // an hour glass DEF_TEST() local
1838 SkPath path = make_octagon(rect.makeOutset(5.f, 5.f), 5.f, 5.f); DEF_TEST() local
1839 cs.clipPath(SkMatrix::I(), path, GrAA::kYes, SkClipOp::kIntersect); DEF_TEST() local
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fProgramInterfaceQueryTestCase.cpp139 static glu::MatrixOrder getMatrixOrderFromPath (const std::vector<VariablePathComponent>& path) in getMatrixOrderFromPath() argument
144 for (int pathNdx = 0; pathNdx < (int)path.size(); ++pathNdx) in getMatrixOrderFromPath()
148 if (path[pathNdx].isInterfaceBlock()) in getMatrixOrderFromPath()
149 matOrder = path[pathNdx].getInterfaceBlock()->layout.matrixOrder; in getMatrixOrderFromPath()
150 else if (path[pathNdx].isDeclaration()) in getMatrixOrderFromPath()
151 matOrder = path[pathNdx].getDeclaration()->layout.matrixOrder; in getMatrixOrderFromPath()
152 else if (path[pathNdx].isVariableType()) in getMatrixOrderFromPath()
230 virtual void validateSingleVariable (const std::vector<VariablePathComponent>& path, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const = 0;
247 std::vector<VariablePathComponent> path; in validate() local
249 if (findProgramVariablePathByPathName(path, progra in validate()
375 validateSingleVariable(const std::vector<VariablePathComponent>& path, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const validateSingleVariable() argument
448 validateSingleVariable(const std::vector<VariablePathComponent>& path, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const validateSingleVariable() argument
522 validateSingleVariable(const std::vector<VariablePathComponent>& path, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const validateSingleVariable() argument
576 validateSingleVariable(const std::vector<VariablePathComponent>& path, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const validateSingleVariable() argument
[all...]
/foundation/filemanagement/dfs_service/test/mock/
H A Dcloud_download_uri_manager_hook.cpp27 void CloudDownloadUriManager::RemoveUri(const std::string& path) in RemoveUri() argument
29 if (pathUriMap_.find(path) != pathUriMap_.end()) { in RemoveUri()
30 LOGI("download_file : remove path [ %{public}s ] success", GetAnonyString(path).c_str()); in RemoveUri()
31 pathUriMap_.erase(path); in RemoveUri()
35 std::string CloudDownloadUriManager::GetUri(const std::string& path) in GetUri() argument
37 if (path.empty()) { in GetUri()
38 LOGI("path is empty"); in GetUri()
41 return path; in GetUri()
/third_party/icu/icu4j/main/tests/charset/
H A D.classpath3 <classpathentry excluding="**/.svn/" kind="src" path="src"/>
4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
5 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-charset"/>
6 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
7 <classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/>
8 <classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/>
9 <classpathentry kind="lib" path="/external-libraries/junit-4.12.jar" sourcepath="/external-libraries/junit-4.12-sources.jar">
14 <classpathentry kind="lib" path="/external-libraries/JUnitParams-1.0.5.jar" sourcepath="/external-libraries/JUnitParams-1.0.5-sources.jar">
19 <classpathentry kind="output" path="out/bin"/>
/third_party/node/test/parallel/
H A Dtest-fs-readfile-flags.js7 const path = require('path');
13 const emptyFile = path.join(tmpdir.path, 'empty.txt');
25 // Like `a+` but fails if the path exists.
32 const willBeCreated = path.join(tmpdir.path, 'will-be-created');
43 const willNotBeCreated = path.join(tmpdir.path, 'will-not-be-created');
H A Dtest-snapshot-console.js12 const path = require('path');
16 const blobPath = path.join(tmpdir.path, 'snapshot.blob');
17 const entry = fixtures.path('snapshot', 'console.js');
26 cwd: tmpdir.path
35 const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
44 cwd: tmpdir.path,
H A Dtest-snapshot-namespaced-builtin.js9 const path = require('path');
13 const blobPath = path.join(tmpdir.path, 'snapshot.blob');
23 path.join(tmpdir.path, 'entry.js'),
33 cwd: tmpdir.path
40 const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
/third_party/node/deps/v8/tools/gcmole/
H A Drun-gcmole.py7 import os.path namespace
12 GCMOLE_PATH = os.path.dirname(os.path.abspath(__file__))
13 CLANG_BIN = os.path.join(GCMOLE_PATH, 'gcmole-tools', 'bin')
14 CLANG_PLUGINS = os.path.join(GCMOLE_PATH, 'gcmole-tools')
15 DRIVER = os.path.join(GCMOLE_PATH, 'gcmole.py')
16 BASE_PATH = os.path.dirname(os.path.dirname(GCMOLE_PATH))
20 if not os.path.isfile("out/build/gen/torque-generated/builtin-definitions.h"):
/third_party/ninja/misc/
H A Dci.py15 def error(path, msg):
18 print('\x1b[1;31m{}\x1b[0;31m{}\x1b[0m'.format(path, msg))
22 path = os.path.join(root, filename)[2:]
23 if any([path.startswith(x) for x in ignores]):
25 with open(path, 'rb') as file:
30 error(path, ' missing newline at end of file.')
33 error(path, ' has Windows line endings.')
36 error(path, ':{} has trailing whitespace.'.format(line_nr))
/third_party/ltp/testcases/network/nfsv4/acl/
H A Dtest_long_acl.py19 def test_longacl(l,path):
23 u = subprocess.getoutput('rm ' + path + "/*") # clean directory
28 u = subprocess.getoutput('touch ' + path + "/" + testfile)
33 u = subprocess.getoutput('setfacl -m u:' + user + ':' + mode + " " + path + "/" + testfile)
35 print("setfacl -m u:" + user + ':' + mode + " " + path + "/" + testfile)
40 parser.add_option("-p", "--path", dest="path",help="path of test file")
42 test_longacl(options.length,options.path)
/third_party/musl/libc-test/src/functionalext/common/
H A Dfilepath_util.h43 #define FILE_ABSOLUTE_PATH(file_name, path) do { \
44 if(!getcwd(path, sizeof(path))) { \
45 t_error("%s getcwd for path failed\n", __func__); \
48 strncat(path, STR_SLASH, 1); \
49 strncat(path, file_name, strlen(file_name)); \
52 #define FILE_ABSOLUTE_DIR(path) do { \
53 if(!getcwd(path, sizeof(path))) { \
/third_party/skia/third_party/externals/swiftshader/
H A D.gitmodules2 path = third_party/cppdap
5 path = third_party/googletest
8 path = third_party/json
11 path = third_party/libbacktrace/src
14 path = third_party/PowerVR_Examples
17 path = third_party/benchmark
20 path = third_party/glslang
23 path = third_party/angle/angle
26 path = third_party/git-hooks
/third_party/toybox/toys/other/
H A Dwhich.c1 /* which.c - Find executable files in $PATH.
13 Search $PATH for executable files matching filename(s).
19 // Find an exectuable file either at a path with a slash in it (absolute or
20 // relative to current directory), or in $PATH. Returns absolute path to file,
27 // If they gave us a path, don't worry about $PATH or -a in which_in_path()
42 // Search $PATH for matches. in which_in_path()
43 list = find_in_path(getenv("PATH"), filename); in which_in_path()

Completed in 18 milliseconds

1...<<61626364656667686970>>...1534