Home
last modified time | relevance | path

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

12

/external/libusb/msvc/
Dddk_build.cmd48 set srcPath=libusb\os\obj%BUILD_ALT_DIR%\%cpudir% variable
73 copy %srcPath%\libusb-%version%.dll %dstPath%\dll
74 copy %srcPath%\libusb-%version%.pdb %dstPath%\dll
76 copy %srcPath%\libusb-%version%.lib %dstPath%\lib
92 set srcPath=examples\listdevs_ddkbuild\obj%BUILD_ALT_DIR%\%cpudir% variable
95 copy %srcPath%\listdevs.exe %dstPath%\examples
96 copy %srcPath%\listdevs.pdb %dstPath%\examples
112 set srcPath=examples\xusb_ddkbuild\obj%BUILD_ALT_DIR%\%cpudir% variable
115 copy %srcPath%\xusb.exe %dstPath%\examples
116 copy %srcPath%\xusb.pdb %dstPath%\examples
[all …]
/external/deqp/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.py215 srcPath = os.path.join(packageBuildInfo.dstBasePath, "src"))
/external/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()
/external/deqp/scripts/build/
Dconfig.py37 def __init__ (self, buildDir, buildType, args, srcPath = DEQP_DIR): argument
38 self.srcPath = srcPath
44 return self.srcPath
/external/mesa3d/src/gallium/state_trackers/vega/
Dapi_path.c123 void vegaAppendPath(VGPath dstPath, VGPath srcPath) in vegaAppendPath() argument
128 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) { in vegaAppendPath()
132 src = handle_to_path(srcPath); in vegaAppendPath()
221 void vegaTransformPath(VGPath dstPath, VGPath srcPath) in vegaTransformPath() argument
226 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) { in vegaTransformPath()
230 src = handle_to_path(srcPath); in vegaTransformPath()
/external/deqp/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp131 ProgramBinary* readBinary (const std::string& srcPath) in readBinary() argument
133 std::ifstream in (srcPath.c_str(), std::ios::binary | std::ios::ate); in readBinary()
137 throw tcu::Exception("Failed to open " + srcPath); in readBinary()
431 void BinaryRegistryWriter::initFromPath (const std::string& srcPath) in initFromPath() argument
435 for (de::DirectoryIterator iter(srcPath); iter.hasItem(); iter.next()) in initFromPath()
566 BinaryRegistryReader::BinaryRegistryReader (const tcu::Archive& archive, const std::string& srcPath) in BinaryRegistryReader() argument
568 , m_srcPath (srcPath) in BinaryRegistryReader()
DvkBinaryRegistry.hpp176 BinaryRegistryReader (const tcu::Archive& archive, const std::string& srcPath);
231 void initFromPath (const std::string& srcPath);
/external/google-breakpad/src/tools/mac/dump_syms/
Ddump_syms_tool.mm53 : srcPath(), dsymPath(), arch(), cfi(true), handle_inter_cu_refs(true) {}
54 NSString *srcPath; field
117 bool split_module = options.dsymPath && options.srcPath && options.cfi;
118 NSString* primary_file = split_module ? options.dsymPath : options.srcPath;
159 if (!dump_symbols.Read(options.srcPath))
240 options->srcPath = [[NSFileManager defaultManager]
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
DAntlr3Mojo.java483 String srcPath = sourceDirectory.getPath() + File.separator; in findSourceSubdir() local
485 if (!grammarFileName.startsWith(srcPath)) { in findSourceSubdir()
489 File unprefixedGrammarFileName = new File(grammarFileName.substring(srcPath.length())); in findSourceSubdir()
/external/icu/icu4c/source/test/intltest/
Ddcfmtest.cpp188 const char *srcPath; in DataDrivenTests() local
195 srcPath=getPath(tdd, "dcfmtest.txt"); in DataDrivenTests()
196 if(srcPath==NULL) { in DataDrivenTests()
201 UChar *testData = ReadAndConvertFile(srcPath, len, status); in DataDrivenTests()
Dregextst.h66 const UnicodeString &input, const char *srcPath, int32_t line);
Dregextst.cpp3193 const char *srcPath; in Extended() local
3200 srcPath=getPath(tdd, "regextst.txt"); in Extended()
3201 if(srcPath==NULL) { in Extended()
3206 UChar *testData = ReadAndConvertFile(srcPath, len, "utf-8", status); in Extended()
3237 errln("%s:%d: ICU Error \"%s\"", srcPath, lineNum, u_errorName(status)); in Extended()
3265 errln("Bad pattern (missing quotes?) at %s:%d", srcPath, lineNum); in Extended()
3308 regex_find(testPattern, testFlags, matchString, srcPath, lineNum); in Extended()
3372 const char *srcPath, in regex_find() argument
3491 logln("Unable to create UTF-8 pattern, skipping UTF-8 tests for %s:%d", srcPath, line); in regex_find()
3500 … errln("%s, Line %d: Expected, but did not get, a pattern compilation error.", srcPath, line); in regex_find()
[all …]
/external/deqp/external/
Dfetch_sources.py118 srcPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
121 archive = tarfile.open(srcPath)
/external/skia/src/utils/
DSkDashPath.cpp87 static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec, in cull_path() argument
95 if (!srcPath.isLine(pts)) { in cull_path()
/external/mesa3d/src/mapi/vgapi/
Dvgapi.csv5 void, AppendPath, VGPath dstPath, VGPath srcPath
77 void, TransformPath, VGPath dstPath, VGPath srcPath
/external/lzma/CPP/7zip/UI/FileManager/
DExtractCallback.h225 const wchar_t *srcPath,
DExtractCallback.cpp544 const wchar_t *srcPath, Int32 srcIsFolder, in AskWrite() argument
599 srcPath, in AskWrite()
/external/mesa3d/include/VG/
Dopenvg.h593 VG_API_CALL void VG_API_ENTRY vgAppendPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT;
601 VG_API_CALL void VG_API_ENTRY vgTransformPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT;
/external/swiftshader/include/GLES2/
Dgl2ext.h2527 typedef void (GL_APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath);
2529 typedef void (GL_APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum tra…
2585 GL_APICALL void GL_APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath);
2587 GL_APICALL void GL_APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformT…
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/guice/lib/build/
Dbnd-0.0.384.jarMETA-INF/MANIFEST.MF LICENSE OSGI-OPT/ OSGI-OPT/bnd.bnd ...

12