Home
last modified time | relevance | path

Searched refs:srcPath (Results 1 – 25 of 40) sorted by relevance

12

/third_party/node/lib/
Durl.js787 let srcPath = (result.pathname && result.pathname.split('/')) || [];
801 if (srcPath[0] === '') srcPath[0] = result.host;
802 else srcPath.unshift(result.host);
815 mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');
831 srcPath = relPath;
836 if (!srcPath) srcPath = [];
837 srcPath.pop();
838 srcPath = srcPath.concat(relPath);
846 result.hostname = result.host = srcPath.shift();
868 if (!srcPath.length) {
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/filesystem/winrt/
DSDL_sysfilesystem.cpp118 const char * srcPath = SDL_WinRTGetFSPathUTF8(SDL_WINRT_PATH_INSTALLED_LOCATION); in SDL_GetBasePath() local
122 if (!srcPath) { in SDL_GetBasePath()
127 destPathLen = SDL_strlen(srcPath) + 2; in SDL_GetBasePath()
134 SDL_snprintf(destPath, destPathLen, "%s\\", srcPath); in SDL_GetBasePath()
147 const WCHAR * srcPath = NULL; in SDL_GetPrefPath() local
155 srcPath = SDL_WinRTGetFSPathUNICODE(SDL_WINRT_PATH_LOCAL_FOLDER); in SDL_GetPrefPath()
156 if ( ! srcPath) { in SDL_GetPrefPath()
161 if (SDL_wcslen(srcPath) >= MAX_PATH) { in SDL_GetPrefPath()
165 SDL_wcslcpy(path, srcPath, SDL_arraysize(path)); in SDL_GetPrefPath()
/third_party/vk-gl-cts/external/openglcts/scripts/
Dbuild_caselists.py136 srcPath = getCaseListPath(buildCfg, module, caseListType)
139 if os.path.exists(srcPath):
140 os.remove(srcPath)
144 if not os.path.exists(srcPath):
145 raise Exception("%s not generated" % srcPath)
147 shutil.copyfile(srcPath, dstPath)
/third_party/vk-gl-cts/scripts/
Dbuild_caselists.py99 srcPath = getCaseListPath(buildCfg, module, caseListType)
102 if os.path.exists(srcPath):
103 os.remove(srcPath)
107 if not os.path.exists(srcPath):
108 raise Exception("%s not generated" % srcPath)
110 shutil.copyfile(srcPath, dstPath)
Drun_internal_tests.py46 …def __init__ (self, name, srcPath, buildPath, genParams, buildParams, testBinaryName, executor = '… argument
48 self.srcPath = srcPath
62 execute(["cmake", os.path.realpath(config.srcPath)] + config.genParams, workDir = config.buildPath)
Dmake_release.py217 srcPath = os.path.join(packageBuildInfo.dstBasePath, "src"))
/third_party/vk-gl-cts/scripts/android/
Dbuild_apk.py667 self.srcPath = BuildBaseAPK(self.package).getOutputs()[0]
672 self.srcPath,
680 srcPath = resolvePath(config, self.srcPath)
684 shutil.copyfile(srcPath, dstPath)
691 self.srcPath = AddJavaToAPK(self.package).getOutputs()[0]
696 self.srcPath,
709 srcPath = resolvePath(config, self.srcPath)
714 shutil.copyfile(srcPath, dstPath)
722 self.srcPath = AddAssetsToAPK(self.package, "").getOutputs()[0]
726 paths = [self.srcPath]
[all …]
/third_party/node/test/parallel/
Dtest-fs-link.js11 const srcPath = path.join(tmpdir.path, 'hardlink-target.txt'); constant
13 fs.writeFileSync(srcPath, 'hello world');
21 fs.link(srcPath, dstPath, common.mustCall(callback));
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecator.java31 String srcPath = null; in main() local
42 srcPath = args[++i]; in main()
65 if (srcPath == null) { in main()
68 srcDir = new File(srcPath); in main()
70 err.append("\nsrc must be an existing directory: '" + srcPath + "'"); in main()
/third_party/mindspore/mindspore/lite/tools/converter/legacy_optimizer/fusion/
Dquant_cast_fusion_pass.cc42 auto srcPath = matchedPath[kQuantCastSrcOp]; in DoFusion() local
43 MS_ASSERT(srcPath != nullptr); in DoFusion()
46 auto srcNode = graph->nodes.at(srcPath->nodeIdx).get(); in DoFusion()
69 auto status = IsolateOneWayNode(graph, srcPath->nodeIdx); in DoFusion()
/third_party/vk-gl-cts/scripts/build/
Dconfig.py40 def __init__ (self, buildDir, buildType, args, srcPath = DEQP_DIR): argument
41 self.srcPath = srcPath
48 return self.srcPath
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp132 ProgramBinary* readBinary (const std::string& srcPath) in readBinary() argument
134 std::ifstream in (srcPath.c_str(), std::ios::binary | std::ios::ate); in readBinary()
138 throw tcu::Exception("Failed to open " + srcPath); in readBinary()
432 void BinaryRegistryWriter::initFromPath (const std::string& srcPath) in initFromPath() argument
436 for (de::DirectoryIterator iter(srcPath); iter.hasItem(); iter.next()) in initFromPath()
567 BinaryRegistryReader::BinaryRegistryReader (const tcu::Archive& archive, const std::string& srcPath) in BinaryRegistryReader() argument
569 , m_srcPath (srcPath) in BinaryRegistryReader()
DvkBinaryRegistry.hpp176 BinaryRegistryReader (const tcu::Archive& archive, const std::string& srcPath);
231 void initFromPath (const std::string& srcPath);
/third_party/skia/src/utils/
DSkDashPath.cpp158 static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec, in cull_path() argument
162 if (srcPath.isLine(pts) && pts[0] == pts[1]) { in cull_path()
177 if (srcPath.isLine(pts)) { in cull_path()
187 if (srcPath.isRect(nullptr)) { in cull_path()
189 SkPath::Iter iter(srcPath, false); in cull_path()
/third_party/flutter/skia/src/utils/
DSkDashPath.cpp157 static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec, in cull_path() argument
161 if (srcPath.isLine(pts) && pts[0] == pts[1]) { in cull_path()
176 if (srcPath.isLine(pts)) { in cull_path()
186 if (srcPath.isRect(nullptr)) { in cull_path()
188 SkPath::Iter iter(srcPath, false); in cull_path()
/third_party/icu/icu4c/source/test/intltest/
Ddcfmtest.cpp208 const char *srcPath; in DataDrivenTests() local
215 srcPath=getPath(tdd, "dcfmtest.txt"); in DataDrivenTests()
216 if(srcPath==NULL) { in DataDrivenTests()
221 UChar *testData = ReadAndConvertFile(srcPath, len, status); in DataDrivenTests()
Dregextst.h71 const UnicodeString &input, const char *srcPath, int32_t line);
Dregextst.cpp3165 const char *srcPath; in Extended() local
3172 srcPath=getPath(tdd, "regextst.txt"); in Extended()
3173 if(srcPath==NULL) { in Extended()
3178 UChar *testData = ReadAndConvertFile(srcPath, len, "utf-8", status); in Extended()
3209 errln("%s:%d: ICU Error \"%s\"", srcPath, lineNum, u_errorName(status)); in Extended()
3237 errln("Bad pattern (missing quotes?) at %s:%d", srcPath, lineNum); in Extended()
3280 regex_find(testPattern, testFlags, matchString, srcPath, lineNum); in Extended()
3344 const char *srcPath, in regex_find() argument
3463 logln("Unable to create UTF-8 pattern, skipping UTF-8 tests for %s:%d", srcPath, line); in regex_find()
3472 … errln("%s, Line %d: Expected, but did not get, a pattern compilation error.", srcPath, line); in regex_find()
[all …]
/third_party/typescript/scripts/
DcreatePlaygroundBuild.js134 var srcPath = path.join(TYPESCRIPT_LIB_SOURCE, getFileName(name));
135 return fs.readFileSync(srcPath).toString();
/third_party/flutter/flutter/dev/bots/
Danalyze.dart358 final String srcPath = path.join(workingDirectory, 'packages', 'flutter', 'lib', 'src');
359 // Verify there's one libPath/*.dart for each srcPath/*/.
364 final List<String> directories = Directory(srcPath).listSync()
380 …dependencyMap[directory] = _findFlutterDependencies(path.join(srcPath, directory), errors, checkFo…
430 Set<String> _findFlutterDependencies(String srcPath, List<String> errors, { bool checkForMeta = fal…
431 return Directory(srcPath).listSync(recursive: true).where((FileSystemEntity entity) {
/third_party/vk-gl-cts/external/
Dfetch_sources.py145 srcPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
148 archive = tarfile.open(srcPath)
/third_party/skia/src/core/
DSkPath.cpp1374 SkPath& SkPath::addPath(const SkPath& srcPath, const SkMatrix& matrix, AddPathMode mode) { in addPath() argument
1375 if (srcPath.isEmpty()) { in addPath()
1380 const SkPath* src = &srcPath; in addPath()
1383 src = tmp.set(srcPath); in addPath()
1489 SkPath& SkPath::reverseAddPath(const SkPath& srcPath) { in reverseAddPath() argument
1491 const SkPath* src = &srcPath; in reverseAddPath()
1494 src = tmp.set(srcPath); in reverseAddPath()
/third_party/flutter/skia/src/core/
DSkPath.cpp1628 SkPath& SkPath::addPath(const SkPath& srcPath, const SkMatrix& matrix, AddPathMode mode) { in addPath() argument
1630 const SkPath* src = &srcPath; in addPath()
1633 src = tmp.set(srcPath); in addPath()
1744 SkPath& SkPath::reverseAddPath(const SkPath& srcPath) { in reverseAddPath() argument
1746 const SkPath* src = &srcPath; in reverseAddPath()
1749 src = tmp.set(srcPath); in reverseAddPath()
/third_party/skia/third_party/externals/opengl-registry/api/GLES2/
Dgl2ext.h3091 typedef void (GL_APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath);
3093 typedef void (GL_APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum tra…
3168 GL_APICALL void GL_APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath);
3170 GL_APICALL void GL_APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformT…
/third_party/flutter/skia/third_party/externals/angle2/include/GLES2/
Dgl2ext.h3091 typedef void (GL_APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath);
3093 typedef void (GL_APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum tra…
3168 GL_APICALL void GL_APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath);
3170 GL_APICALL void GL_APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformT…

12