Searched refs:trim (Results 76 - 100 of 198) sorted by relevance

12345678

/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionMachO.cpp198 return SplitSpec.size() > Idx ? SplitSpec[Idx].trim() : StringRef();
259 return SectionAttr.trim() == Descriptor.AssemblerName;
/freebsd-current/contrib/llvm-project/clang/lib/Driver/
H A DDistro.cpp185 if (!Line.trim().starts_with("VERSION"))
191 SplitLine.second.trim().split('.');
/freebsd-current/tools/lua/
H A Dtemplate.lua120 local function trim(s) function
395 c[j+1] = visit(visitors, trim(sub(view, p, e - 1)), "{")
415 c[j+1] = visit(visitors, trim(sub(view, p, e - 1)), "*")
445 c[j] = visit(visitors, trim(sub(view, p, e - 1)), "%")
468 c[j+1] = trim(sub(f, 1, x - 1))
470 c[j+3] = trim(sub(f, x + 1))
475 c[j+1] = trim(f)
496 c[j+1] = visit(visitors, trim(sub(view, p, e - 1)), "[")
522 local b = trim(sub(view, p, e - 1))
/freebsd-current/contrib/sendmail/contrib/
H A Dexpn.pl675 ($newaddr) = &trim($1);
681 ($newaddr) = &trim($2);
682 unshift(@names, &trim($3,$1));
688 unshift(@names,&trim($2));
689 local($f,$l) = (&trim($1),&trim($3));
744 sub trim subroutine
/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profile_collector.cpp177 DFSStack.trim(1);
241 ProfileBuffers->trim(ProfileBuffers->size());
313 ProfileBuffers->trim(ProfileBuffers->size());
/freebsd-current/contrib/ntp/sntp/libopts/
H A Dparse-duration.c388 trim (char * pz) function
390 /* trim leading white space */
394 /* trim trailing white space */
427 pz = trim (pz);
428 pT = trim (pT);
/freebsd-current/contrib/atf/atf-c++/detail/
H A Dtext.cpp106 impl::trim(const std::string& str) function in class:impl
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVObject.cpp76 return std::string(StringRef(lineNumberAsString(ShowZero)).trim());
/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/llvm/tools/llvm-remarkutil/
H A DRemarkCounter.h64 return FilterStr == StringToMatch.trim().str();
/freebsd-current/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DZOS.cpp174 StringRef ld_env_var = StringRef(getenv("_LD_SYSLIB")).trim();
183 ld_env_var = StringRef(getenv("_LD_SIDE_DECKS")).trim();
/freebsd-current/sys/tools/
H A Dmakesyscalls.lua244 local function trim(s, char) function
280 key = trim(key)
281 value = trim(value)
292 trailing_context = trim(trailing_context)
298 value = trim(value, delim)
303 value = trim(value)
544 line = trim(line):gsub("\\$", "")
653 return trim(arg)
684 local argtype = trim(arg:gsub(argname .. "$", ""), nil)
784 argtype = trim(argtyp
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp217 if (Line.trim().empty()) {
241 llvm::StringRef Name = Line.trim();
300 Name = Line.trim();
357 if (!to_integer(Tokens[i + 1].trim(), Size, 16))
468 return StackCFIRecord(Address, Size, Line.trim());
544 LocalSize, Line.trim());
/freebsd-current/lib/geom/eli/
H A Dgeom_eli.c205 { 't', "trim", NULL, G_TYPE_BOOL },
1138 int geliboot, int displaypass, int trim, int autoresize)
1189 if (trim == 0 && (md.md_flags & G_ELI_FLAG_NODELETE)) {
1192 } else if (trim == 1 && !(md.md_flags & G_ELI_FLAG_NODELETE)) {
1195 } else if (trim >= 0) {
1196 if (trim)
1227 bool autoresize, noautoresize, trim, notrim; local
1243 trim = gctl_get_int(req, "trim");
1279 if (trim
1137 eli_configure_detached(struct gctl_req *req, const char *prov, int boot, int geliboot, int displaypass, int trim, int autoresize) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSettings.cpp623 var_value = var_value.split(var_name).second.trim();
714 var_value = var_value.split(var_name).second.trim();
810 var_value = var_value.split(var_name).second.trim();
903 var_value = var_value.split(var_name).second.trim();
987 var_value = var_value.split(var_name).second.trim();
/freebsd-current/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp248 if (!llvm::StringRef(code).trim().empty()) {
302 auto path = llvm::StringRef(code.substr(1)).trim().str();
521 if (request.GetRawLine().trim().empty()) {
/freebsd-current/contrib/llvm-project/clang/lib/Basic/Targets/
H A DRISCV.cpp416 Feature = Feature.trim();
417 StringRef AttrString = Feature.split("=").second.trim();
/freebsd-current/sys/contrib/openzfs/man/
H A DMakefile.am96 %D%/man8/zpool-trim.8 \
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DPostfixExpression.cpp93 if (exprs.empty() || !exprs.back().trim().empty())
/freebsd-current/tests/sys/geom/class/gate/
H A Dggate_test.sh10 atf_set "descr" "ggatec survives a trim"
31 atf_check -s not-exit:0 -e ignore -o ignore trim -q -f ${ggate_dev}
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DInstrDocsEmitter.cpp88 // We trim spaces at each end of the asm string because rst needs the
90 OS << ": ``" << escapeForRST(StringRef(AsmString).trim(" "))
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp163 StringRef Line = LineIt->trim();
H A DDataExtractor.cpp178 return Bytes.trim(TrimChars);
/freebsd-current/contrib/llvm-project/clang/utils/TableGen/
H A DClangSyntaxEmitter.cpp180 while (Line.trim().empty() && !Doc.empty())
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionArgParser.cpp23 ref = ref.trim();

Completed in 442 milliseconds

12345678