Home
last modified time | relevance | path

Searched refs:stripArgs (Results 1 – 11 of 11) sorted by relevance

/dports/devel/chroma/chroma-0.9.2/vendor/github.com/alecthomas/colour/
H A Dcolour.go212 return fmt.Fprintln(p.w, stripArgs(args...)...)
216 return fmt.Fprint(p.w, stripArgs(args...)...)
250 func stripArgs(args ...interface{}) []interface{} { func
H A Dcolour_test.go35 actual = stripArgs(actual...)
/dports/devel/cmake-gui/cmake-3.22.1/Source/
H A DcmInstallTargetGenerator.cxx797 std::string stripArgs; in AddStripRule() local
803 stripArgs = "-x "; in AddStripRule()
805 stripArgs = "-u -r "; in AddStripRule()
812 << "\" " << stripArgs << "\"" << toDestDirPath << "\")\n"; in AddStripRule()
/dports/devel/cmake-doc/cmake-3.22.1/Source/
H A DcmInstallTargetGenerator.cxx797 std::string stripArgs; in AddStripRule() local
803 stripArgs = "-x "; in AddStripRule()
805 stripArgs = "-u -r "; in AddStripRule()
812 << "\" " << stripArgs << "\"" << toDestDirPath << "\")\n"; in AddStripRule()
/dports/devel/cmake/cmake-3.22.1/Source/
H A DcmInstallTargetGenerator.cxx797 std::string stripArgs; in AddStripRule() local
803 stripArgs = "-x "; in AddStripRule()
805 stripArgs = "-u -r "; in AddStripRule()
812 << "\" " << stripArgs << "\"" << toDestDirPath << "\")\n"; in AddStripRule()
/dports/misc/rump/buildrump.sh-b914579/src/usr.bin/xinstall/
H A Dxinstall.c102 static char *stripArgs; variable
266 stripArgs = strdup(optarg); in main()
267 if (stripArgs == NULL) in main()
1065 run(stripprog, stripArgs, to_name, 1); in strip()
/dports/devel/qbs/qbs-src-1.21.0/share/qbs/modules/cpp/
H A Dandroid-gcc.qbs171 var stripArgs = ["--strip-all", "-o", output.filePath, input.filePath];
172 var stripCmd = new Command(product.cpp.stripPath, stripArgs);
/dports/devel/qbs/qbs-src-1.21.0/share/qbs/module-providers/Qt/templates/
H A Dandroid_support.qbs417 var stripArgs = ["--strip-all"];
428 stripArgs.push(filePath);
433 process.exec(product.cpp.stripPath, stripArgs, false);
/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Syntax/Translation/
H A DInternalToAbstract.hs901 strip ps = stripArgs True ps
903 stripArgs _ [] = [] function
904 stripArgs fixedPos (a : as)
909 then stripArgs False as
912 | otherwise = stripName fixedPos (stripArg a) : stripArgs True as
915 goWild = stripName fixedPos a' : stripArgs True as
934 A.ConP i c ps -> A.ConP i c $ stripArgs True ps
/dports/devel/qt5-remoteobjects/kde-qtremoteobjects-5.15.2p3/src/repparser/
H A Dparser.g452 QString stripArgs(const QString &arguments)
465 QString input = stripArgs(propertyDeclaration).trimmed();
573 const QString strippedArgs = stripArgs(arguments);
/dports/devel/qbs/qbs-src-1.21.0/share/qbs/modules/Android/sdk/
H A Dsdk.qbs494 var stripArgs = ["--strip-all", "-o", deploymentData.outputFilePaths[i],
496 var cmd = new Command(input.cpp.stripPath, stripArgs);