/third_party/node/lib/ |
D | url.js | 787 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/ |
D | SDL_sysfilesystem.cpp | 118 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/ |
D | build_caselists.py | 136 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/ |
D | build_caselists.py | 99 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)
|
D | run_internal_tests.py | 46 …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)
|
D | make_release.py | 217 srcPath = os.path.join(packageBuildInfo.dstBasePath, "src"))
|
/third_party/vk-gl-cts/scripts/android/ |
D | build_apk.py | 667 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/ |
D | test-fs-link.js | 11 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/ |
D | Deprecator.java | 31 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/ |
D | quant_cast_fusion_pass.cc | 42 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/ |
D | config.py | 40 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/ |
D | vkBinaryRegistry.cpp | 132 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()
|
D | vkBinaryRegistry.hpp | 176 BinaryRegistryReader (const tcu::Archive& archive, const std::string& srcPath); 231 void initFromPath (const std::string& srcPath);
|
/third_party/skia/src/utils/ |
D | SkDashPath.cpp | 158 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/ |
D | SkDashPath.cpp | 157 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/ |
D | dcfmtest.cpp | 208 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()
|
D | regextst.h | 71 const UnicodeString &input, const char *srcPath, int32_t line);
|
D | regextst.cpp | 3165 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/ |
D | createPlaygroundBuild.js | 134 var srcPath = path.join(TYPESCRIPT_LIB_SOURCE, getFileName(name)); 135 return fs.readFileSync(srcPath).toString();
|
/third_party/flutter/flutter/dev/bots/ |
D | analyze.dart | 358 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/ |
D | fetch_sources.py | 145 srcPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename) 148 archive = tarfile.open(srcPath)
|
/third_party/skia/src/core/ |
D | SkPath.cpp | 1374 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/ |
D | SkPath.cpp | 1628 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/ |
D | gl2ext.h | 3091 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/ |
D | gl2ext.h | 3091 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…
|