Home
last modified time | relevance | path

Searched refs:Rest (Results 1 – 25 of 36) sorted by relevance

12

/freebsd/contrib/bmake/unit-tests/
H A Dvarmod-range.exp2 …: while evaluating "${:U:range=x}Rest" != "Rest"": Invalid number "x}Rest" != "Rest"" for ':range'…
5 make: "varmod-range.mk" line 78: Malformed conditional ("${:U:range=0x0}Rest" != "Rest")
7 make: "varmod-range.mk" line 96: Malformed conditional ("${a b c:L:rang}Rest" != "Rest")
9 make: "varmod-range.mk" line 105: Malformed conditional ("${a b c:L:rango}Rest" != "Rest")
11 make: "varmod-range.mk" line 114: Malformed conditional ("${a b c:L:ranger}Rest" != "Rest")
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclContextInternals.h59 NewTail = &Node->Rest; in erase_if()
60 List = Node->Rest; in erase_if()
65 List = N->Rest; in erase_if()
103 List = ToDealloc->Rest; in MaybeDeallocList()
199 Tail = &Node->Rest; in replaceExternalDecls()
203 Node->Rest = DeclsAsList; in replaceExternalDecls()
233 Node->Rest = D; in addOrReplaceDecl()
250 N->Rest = D; in addOrReplaceDecl()
257 N->Rest = Node; in addOrReplaceDecl()
258 Node->Rest = D; in addOrReplaceDecl()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRulesInternal.h29 void ignoreError(Expected<FirstT> &First, Expected<RestT> &... Rest) { in ignoreError() argument
32 ignoreError(Rest...); in ignoreError()
38 llvm::Error findError(Expected<FirstT> &First, Expected<RestT> &... Rest) { in findError() argument
40 ignoreError(Rest...); in findError()
43 return findError(Rest...); in findError()
72 const FirstT &First, const RestT &... Rest) { in visitRefactoringOptionsImpl()
83 return visitRefactoringOptionsImpl(Visitor, Rest...); in visitRefactoringOptionsImpl()
96 template <typename Base, typename First, typename... Rest>
98 HasBaseOf<Base, Rest...>::value,
106 template <typename Base, typename First, typename... Rest>
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp295 Rest = Split.second; in parseSpecifier()
331 if (Rest.empty()) in parseSpecifier()
343 if (Rest.empty()) in parseSpecifier()
360 if (!Rest.empty()) { in parseSpecifier()
370 if (!Rest.empty()) { in parseSpecifier()
409 if (Rest.empty()) in parseSpecifier()
431 if (!Rest.empty()) { in parseSpecifier()
459 if (Rest.empty()) in parseSpecifier()
514 if (Rest.empty()) in parseSpecifier()
516 if (Rest.size() > 1) in parseSpecifier()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DArena.cpp203 llvm::StringRef Rest = In; in parseFormula() local
204 auto *Result = parse(*this, Rest); in parseFormula()
206 return llvm::make_error<FormulaParseError>(In, In.size() - Rest.size()); in parseFormula()
207 Rest = Rest.ltrim(); in parseFormula()
208 if (!Rest.empty()) // parse didn't consume all the input in parseFormula()
209 return llvm::make_error<FormulaParseError>(In, In.size() - Rest.size()); in parseFormula()
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1549 return {Ret, Rest}; in FindCheckType()
1556 Rest = Rest.ltrim(); in FindCheckType()
1562 Rest = Rest.ltrim(); in FindCheckType()
1566 return {Ret, Rest}; in FindCheckType()
1570 if (Rest.consume_front(":")) in FindCheckType()
1572 if (Rest.front() == '{') in FindCheckType()
1587 if (Rest.front() != ':' && Rest.front() != '{') in FindCheckType()
1594 if (Rest.starts_with("DAG-NOT:") || Rest.starts_with("NOT-DAG:") || in FindCheckType()
1595 Rest.starts_with("NEXT-NOT:") || Rest.starts_with("NOT-NEXT:") || in FindCheckType()
1596 Rest.starts_with("SAME-NOT:") || Rest.starts_with("NOT-SAME:") || in FindCheckType()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/
H A DHeaderAnalysis.cpp110 StringRef Rest(Text, End - Text); in parseIWYUPragma() local
114 Rest.consume_back("*/"); in parseIWYUPragma()
115 return Rest.trim(); in parseIWYUPragma()
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp232 StringRef Rest = R; in run() local
234 std::tie(FileName, Rest) = Rest.split(','); in run()
235 if (Rest.empty()) { in run()
239 std::tie(SymbolName, Rest) = Rest.split(','); in run()
241 for (char C : Rest) { in run()
/freebsd/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp1190 StringRef CommandStr, Rest; in runMRIScript() local
1191 std::tie(CommandStr, Rest) = Line.split(' '); in runMRIScript()
1192 Rest = Rest.trim(); in runMRIScript()
1193 if (!Rest.empty() && Rest.front() == '"' && Rest.back() == '"') in runMRIScript()
1194 Rest = Rest.drop_front().drop_back(); in runMRIScript()
1209 object::Archive &Lib = readLibrary(Rest); in runMRIScript()
1223 addMember(NewMembers, Rest); in runMRIScript()
1234 ArchiveName = std::string(Rest); in runMRIScript()
1240 return comparePaths(M.MemberName, Rest); in runMRIScript()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp243 StringRef Rest = Input.substr(n1 + 2); in ParseLine() local
244 if (isDigit(Rest[0])) { in ParseLine()
246 size_t n3 = Rest.find(' '); in ParseLine()
248 if (Rest.getAsInteger(10, NumSamples)) in ParseLine()
267 n3 += Rest.substr(n3).find_first_not_of(' '); in ParseLine()
268 Rest = Rest.substr(n3); in ParseLine()
269 n3 = Rest.find_first_of(':'); in ParseLine()
279 Target = Rest.substr(0, n3); in ParseLine()
296 if (n4 == Rest.size()) in ParseLine()
303 size_t n3 = Rest.find_last_of(':'); in ParseLine()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp293 StringRef Rest = TextToWrite; in OutputContentUpTo() local
294 while (!Rest.empty()) { in OutputContentUpTo()
296 size_t Idx = Rest.find(LocalEOL); in OutputContentUpTo()
297 StringRef LineText = Rest.substr(0, Idx); in OutputContentUpTo()
307 Rest = Rest.substr(Idx); in OutputContentUpTo()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DRecordSerialization.h220 Error consume(BinaryStreamReader &Reader, T &&X, U &&Y, Args &&... Rest) { in consume() argument
223 return consume(Reader, Y, std::forward<Args>(Rest)...); in consume()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DTrailingObjects.h62 template <typename First, typename... Rest> class AlignmentCalcHelper {
66 RestAlignment = AlignmentCalcHelper<Rest...>::Alignment,
H A DCasting.h552 template <typename First, typename Second, typename... Rest, typename From>
554 return isa<First>(Val) || isa<Second, Rest...>(Val);
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dqcom,ethqos.txt27 Rest of the properties are defined in stmmac.txt file in same directory
/freebsd/sys/contrib/device-tree/Bindings/slimbus/
H A Dqcom,slim-ngd.yaml117 /* Rest of the WCD9340 codec */
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp1260 StringRef Rest = AliasName.substr(Pos); in executePostLayoutBinding() local
1261 StringRef Tail = Rest; in executePostLayoutBinding()
1262 if (Rest.starts_with("@@@")) in executePostLayoutBinding()
1263 Tail = Rest.substr(Symbol.isUndefined() ? 2 : 1); in executePostLayoutBinding()
1280 if (Symbol.isUndefined() && Rest.starts_with("@@") && in executePostLayoutBinding()
1281 !Rest.starts_with("@@@")) { in executePostLayoutBinding()
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp165 StringRef Rest = Str.substr(Prefix.size()); in matchOption() local
166 bool Matched = IgnoreCase ? Rest.starts_with_insensitive(I->getName()) in matchOption()
167 : Rest.starts_with(I->getName()); in matchOption()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1044 const uint8_t Rest = ThisNopLength - Prefixes; in writeNopData() local
1045 if (Rest != 0) in writeNopData()
1046 OS.write(Nops[Rest - 1], Rest); in writeNopData()
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h175 template <typename FieldTy, typename Next, typename... Rest>
180 emitOps<Next, Rest...>(abbrev); in emitOps()
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp248 template<typename T, typename ...Rest> void operator()(T V, Rest ...Vs) { in operator ()()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp702 const UTF8 *Data = reinterpret_cast<const UTF8 *>(S.data()), *Rest = Data; in isUTF8()
703 if (LLVM_LIKELY(isLegalUTF8String(&Rest, Data + S.size()))) in isUTF8()
707 *ErrOffset = Rest - Data; in isUTF8()
/freebsd/crypto/openssl/
H A DREADME-PROVIDERS.md140 /* Rest of application */
/freebsd/sys/contrib/device-tree/Bindings/net/wireless/
H A Dqcom,ath10k.txt11 Rest of the properties are not applicable for PCI based devices.
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h2380 auto enumerate(FirstRange &&First, RestRanges &&...Rest) {
2381 if constexpr (sizeof...(Rest) != 0) {
2385 size_t sizes[] = {range_size(First), range_size(Rest)...};
2392 std::forward<RestRanges>(Rest)...);

12