Searched refs:trim (Results 1 - 25 of 198) sorted by path

12345678

/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/
H A Ddtest.pl168 sub trim { subroutine
192 $exceptions{trim($line)} = 1;
/freebsd-current/cddl/sbin/zpool/
H A DMakefile46 zpool-trim.8 \
/freebsd-current/contrib/atf/atf-c++/detail/
H A Dtext.cpp106 impl::trim(const std::string& str) function in class:impl
H A Dtext.hpp93 std::string trim(const std::string&);
H A Dtext_test.cpp257 ATF_TEST_CASE(trim); variable
258 ATF_TEST_CASE_HEAD(trim)
260 set_md_var("descr", "Tests the trim function");
262 ATF_TEST_CASE_BODY(trim)
264 using atf::text::trim;
266 ATF_REQUIRE_EQ(trim(""), "");
267 ATF_REQUIRE_EQ(trim(" "), "");
268 ATF_REQUIRE_EQ(trim("\t"), "");
270 ATF_REQUIRE_EQ(trim(" foo"), "foo");
271 ATF_REQUIRE_EQ(trim("\
[all...]
/freebsd-current/contrib/bmake/mk/
H A Ddirdeps.mk466 # first trim things we know we want to skip
/freebsd-current/contrib/bsddialog/utility/
H A Dbsddialog.c285 bool trim, crwrap; local
290 trim = true;
293 trim = false;
297 trim = false;
334 if (!trim || buf[j] != ' ' || j == 0 || buf[j-1] != ' ')
/freebsd-current/contrib/bsnmp/tests/
H A Dcatch.hpp3162 std::string trim( std::string const& str );
3164 StringRef trim(StringRef ref);
9645 line = trim(line);
9864 // We need to trim filter specs to avoid trouble with superfluous
9869 elem = trim(elem);
9872 elem = trim(elem);
10485 parsed.push_back(trim(extractInstanceName(enumValue)));
13603 std::string trim( std::string const& str ) {
13611 StringRef trim(StringRef ref) {
14218 m_trimmed_name(trim(nameAndLocatio
[all...]
/freebsd-current/contrib/cortex-strings/scripts/
H A Dtrim.sh7 convert $i -bordercolor white -border 1x1 -trim +repage -alpha off +dither -colors 32 PNG8:next-$i
/freebsd-current/contrib/dialog/samples/
H A Dmsgbox26 $DIALOG --title "MESSAGE BOX" --trim "$@" \
13 $DIALOG --aspect 12 --title "MESSAGE BOX aspect=12" --trim "$@" \
20 $DIALOG --aspect 6 --title "MESSAGE BOX aspect=6" --trim "$@" \
28 --trim "$@" --msgbox " \
/freebsd-current/contrib/libxo/xohtml/external/
H A Djquery.js94 trim = String.prototype.trim,
563 data = jQuery.trim( data );
670 // Use native String.trim function wherever possible
671 trim: trim ?
675 trim.call( text );
2270 elem.className = jQuery.trim( setClass );
2300 elem.className = jQuery.trim( className );
6717 if ( value >= 1 && jQuery.trim( filte
[all...]
H A Djquery.qtip.js1396 showEvents = options.show.event ? $.trim('' + options.show.event).split(' ') : [],
1397 hideEvents = options.hide.event ? $.trim('' + options.hide.event).split(' ') : [],
1714 show: $.trim('' + options.show.event).replace(/ /g, namespace+' ') + namespace,
1715 hide: $.trim('' + options.hide.event).replace(/ /g, namespace+' ') + namespace
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DJsonSupport.h33 std::string Str = RawSR.trim().str();
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h435 trim(ArrayRef<const NodeTy *> Nodes,
H A DExprEngine.h245 std::string DumpGraph(bool trim = false, StringRef Filename="");
254 void ViewGraph(bool trim = false);
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp13541 VFeature = VFeature.trim();
/freebsd-current/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.cpp145 getRegexFlag(OrFlag.trim()))
162 getCloseRegexMatch(Flag.trim()))
H A DParser.cpp302 // Don't trim newlines.
/freebsd-current/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp547 // Go ahead and trim whitespace rather than either erroring or
549 Feature = Feature.trim();
558 Ret.BranchProtection = Feature.split('=').second.trim();
567 Ret.CPU = Feature.split("=").second.trim();
572 Ret.Tune = Feature.split("=").second.trim();
/freebsd-current/contrib/llvm-project/clang/lib/Basic/Targets/
H A DAArch64.cpp1097 Feature = Feature.trim();
1102 Ret.BranchProtection = Feature.split('=').second.trim();
1111 Feature.split("=").second.trim().split("+");
1128 Feature.split("=").second.trim().split("+");
1136 Ret.Tune = Feature.split("=").second.trim();
H A DRISCV.cpp416 Feature = Feature.trim();
417 StringRef AttrString = Feature.split("=").second.trim();
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp4202 Feature.push_back(CurFeat.trim());
/freebsd-current/contrib/llvm-project/clang/lib/Driver/
H A DDistro.cpp185 if (!Line.trim().starts_with("VERSION"))
191 SplitLine.second.trim().split('.');
H A DDriver.cpp1593 StringRef ParentProcess = Data.slice(ParentProcPos+15, LineEnd).trim();
/freebsd-current/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DAArch64.cpp284 Opt = Opt.trim();

Completed in 403 milliseconds

12345678