Searched refs:trim (Results 1 - 25 of 117) sorted by relevance

12345

/freebsd-11-stable/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-11-stable/usr.sbin/trim/
H A DMakefile1 # $FreeBSD: stable/11/usr.sbin/trim/Makefile 343118 2019-01-17 18:07:59Z eugen $
3 PROG= trim
4 MAN= trim.8
H A Dtrim.c48 __FBSDID("$FreeBSD: stable/11/usr.sbin/trim/trim.c 345375 2019-03-21 11:32:52Z eugen $");
53 static int trim(const char *path, off_t offset, off_t length, bool dryrun, bool verbose);
112 * trim -f /dev/da0 -r rfile
114 * This would trim whole device then error on non-existing file -r.
117 * trim -f -- /dev/da0 -r rfile
133 if (trim(fname, offset, length, dryrun, verbose) < 0)
206 trim(const char *path, off_t offset, off_t length, bool dryrun, bool verbose) function
215 printf("trim %s offset %ju length %ju\n",
/freebsd-11-stable/contrib/ncurses/progs/
H A Dtransform.c46 bool trim = FALSE; local
52 trim = TRUE;
55 trim = FALSE;
59 if (trim) {
/freebsd-11-stable/contrib/lua/src/
H A Dlbitlib.c40 /* macro to trim extra bits */
41 #define trim(x) ((x) & ALLONES) macro
54 return trim(r);
77 pushunsigned(L, trim(r));
87 pushunsigned(L, trim(r));
94 pushunsigned(L, trim(r));
102 r = trim(r);
109 r = trim(r);
134 r = trim((r >> i) | ~(trim(~(lua_Unsigne
[all...]
/freebsd-11-stable/contrib/atf/atf-c++/detail/
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...]
H A Dtext.hpp93 std::string trim(const std::string&);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlbitlib.c24 /* macro to trim extra bits */
25 #define trim(x) ((x) & ALLONES) macro
41 return trim(r);
64 lua_pushunsigned(L, trim(r));
74 lua_pushunsigned(L, trim(r));
81 lua_pushunsigned(L, trim(r));
89 r = trim(r);
96 r = trim(r);
121 r = trim((r >> i) | ~(~(b_uint)0 >> i)); /* add signal bit */
131 r = trim(
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp58 StringRef RepString = Spec.trim("{}");
67 RepString = RepString.trim();
72 RepString = RepString.trim();
78 RepString = RepString.trim();
80 Options = RepString.drop_front().trim();
83 RepString = RepString.trim();
/freebsd-11-stable/contrib/groff/contrib/grap2graph/
H A Dgrap2graph.sh82 convert -trim -crop 0x0 $convert_opts - $tmp/grap2graph.$format \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cpp94 char *trim; local
95 ExtractTokenUpToDelimiter(str, "\n", &trim);
106 const char *rest = trim;
111 InternalFree(trim);
136 InternalFree(trim);
/freebsd-11-stable/usr.sbin/efidp/
H A Defidp.c125 trim(char *s) function
148 walker= trim(buffer);
179 walker= trim(buffer);
230 walker= trim(buffer);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueString.cpp50 value = value.trim();
H A DOptionValueSInt64.cpp45 std::string value_str = value_ref.trim().str();
H A DOptionValueUInt64.cpp50 std::string value_str = value_ref.trim().str();
H A DOptionValueFormatEntity.cpp82 llvm::StringRef trimmed_value_str = value_str.trim();
H A DOptionValueLanguage.cpp42 ConstString lang_name(value.trim());
H A DOptionValueArch.cpp47 std::string value_str = value.trim().str();
/freebsd-11-stable/contrib/groff/contrib/eqn2graph/
H A Deqn2graph.sh88 && convert -trim -crop 0x0 $convert_opts $tmp/eqn2graph.ps $tmp/eqn2graph.$format \
/freebsd-11-stable/contrib/groff/contrib/pic2graph/
H A Dpic2graph.sh98 && convert -trim -crop 0x0 $convert_opts $tmp/pic2graph.ps $tmp/pic2graph.$format \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Testing/Support/
H A DSupportHelpers.cpp49 InputFilePath.append((*File)->getBuffer().trim());
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DYaml.h29 if (ConfigFile.trim().empty())
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DArgs.cpp71 s = s.trim();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DJsonSupport.h32 std::string Str = RawSR.trim().str();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpTypes.cpp49 line = line.trim();

Completed in 131 milliseconds

12345