Home
last modified time | relevance | path

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

1234567

/netbsd/usr.bin/make/unit-tests/
H A Dvarmod-range.exp2 make: "varmod-range.mk" line 55: Malformed conditional ("${:U:range=x}Rest" != "Rest")
4 make: "varmod-range.mk" line 66: Malformed conditional ("${:U:range=0x0}Rest" != "Rest")
6 make: "varmod-range.mk" line 84: Malformed conditional ("${a b c:L:rang}Rest" != "Rest")
8 make: "varmod-range.mk" line 93: Malformed conditional ("${a b c:L:rango}Rest" != "Rest")
10 make: "varmod-range.mk" line 102: Malformed conditional ("${a b c:L:ranger}Rest" != "Rest")
/netbsd/external/apache2/llvm/dist/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()
104 List = ToDealloc->Rest; in MaybeDeallocList()
200 Tail = &Node->Rest; in replaceExternalDecls()
204 Node->Rest = DeclsAsList; in replaceExternalDecls()
234 Node->Rest = D; in addOrReplaceDecl()
251 N->Rest = D; in addOrReplaceDecl()
258 N->Rest = Node; in addOrReplaceDecl()
259 Node->Rest = D; in addOrReplaceDecl()
[all …]
/netbsd/external/apache2/llvm/dist/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 …]
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DDataLayout.cpp277 Rest = Split.second; in parseSpecifier()
313 if (Rest.empty()) in parseSpecifier()
325 if (Rest.empty()) in parseSpecifier()
342 if (!Rest.empty()) { in parseSpecifier()
352 if (!Rest.empty()) { in parseSpecifier()
391 if (Rest.empty()) in parseSpecifier()
410 if (!Rest.empty()) { in parseSpecifier()
438 if (Rest.empty()) in parseSpecifier()
493 if (Rest.empty()) in parseSpecifier()
495 if (Rest.size() > 1) in parseSpecifier()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheck.cpp1694 return {Ret, Rest}; in FindCheckType()
1701 Rest = Rest.ltrim(); in FindCheckType()
1707 Rest = Rest.ltrim(); in FindCheckType()
1711 return {Ret, Rest}; in FindCheckType()
1715 if (Rest.consume_front(":")) in FindCheckType()
1717 if (Rest.front() == '{') in FindCheckType()
1730 if (Rest.front() != ':' && Rest.front() != '{') in FindCheckType()
1737 if (Rest.startswith("DAG-NOT:") || Rest.startswith("NOT-DAG:") || in FindCheckType()
1738 Rest.startswith("NEXT-NOT:") || Rest.startswith("NOT-NEXT:") || in FindCheckType()
1739 Rest.startswith("SAME-NOT:") || Rest.startswith("NOT-SAME:") || in FindCheckType()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/utils/benchmark/src/
H A Dstring_util.h21 template <class First, class... Rest>
23 Rest&&... rest) { in StrCatImp()
25 return StrCatImp(out, std::forward<Rest>(rest)...); in StrCatImp()
H A Dsysinfo.cc68 template <class First, class... Rest>
69 void PrintImp(std::ostream& out, First&& f, Rest&&... rest) { in PrintImp()
71 PrintImp(out, std::forward<Rest>(rest)...); in PrintImp()
/netbsd/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
H A Dstring_util.h25 template <class First, class... Rest>
26 inline std::ostream& StrCatImp(std::ostream& out, First&& f, Rest&&... rest) { in StrCatImp()
28 return StrCatImp(out, std::forward<Rest>(rest)...); in StrCatImp()
H A Dsysinfo.cc70 template <class First, class... Rest>
71 void PrintImp(std::ostream& out, First&& f, Rest&&... rest) { in PrintImp()
73 PrintImp(out, std::forward<Rest>(rest)...); in PrintImp()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp208 StringRef Rest = R; in run() local
210 std::tie(FileName, Rest) = Rest.split(','); in run()
211 if (Rest.empty()) { in run()
215 std::tie(SymbolName, Rest) = Rest.split(','); in run()
217 for (char C : Rest) { in run()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp1049 StringRef CommandStr, Rest; in runMRIScript() local
1050 std::tie(CommandStr, Rest) = Line.split(' '); in runMRIScript()
1051 Rest = Rest.trim(); in runMRIScript()
1052 if (!Rest.empty() && Rest.front() == '"' && Rest.back() == '"') in runMRIScript()
1053 Rest = Rest.drop_front().drop_back(); in runMRIScript()
1066 object::Archive &Lib = readLibrary(Rest); in runMRIScript()
1076 addMember(NewMembers, Rest); in runMRIScript()
1087 ArchiveName = std::string(Rest); in runMRIScript()
1091 return comparePaths(M.MemberName, Rest); in runMRIScript()
/netbsd/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DSampleProfReader.cpp156 StringRef Rest = Input.substr(n1 + 2); in ParseLine() local
157 if (isDigit(Rest[0])) { in ParseLine()
159 size_t n3 = Rest.find(' '); in ParseLine()
161 if (Rest.getAsInteger(10, NumSamples)) in ParseLine()
180 n3 += Rest.substr(n3).find_first_not_of(' '); in ParseLine()
181 Rest = Rest.substr(n3); in ParseLine()
182 n3 = Rest.find_first_of(':'); in ParseLine()
192 Target = Rest.substr(0, n3); in ParseLine()
209 if (n4 == Rest.size()) in ParseLine()
216 size_t n3 = Rest.find_last_of(':'); in ParseLine()
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp316 StringRef Rest = TextToWrite; in OutputContentUpTo() local
317 while (!Rest.empty()) { in OutputContentUpTo()
319 std::tie(LineText, Rest) = Rest.split(LocalEOL); in OutputContentUpTo()
322 if (!Rest.empty()) in OutputContentUpTo()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DRecordSerialization.h221 Error consume(BinaryStreamReader &Reader, T &&X, U &&Y, Args &&... Rest) { in consume() argument
224 return consume(Reader, Y, std::forward<Args>(Rest)...); in consume()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DTrailingObjects.h62 template <typename First, typename... Rest> class AlignmentCalcHelper {
66 RestAlignment = AlignmentCalcHelper<Rest...>::Alignment,
H A DCasting.h146 template <typename First, typename Second, typename... Rest, typename Y>
148 return isa<First>(Val) || isa<Second, Rest...>(Val);
/netbsd/external/apache2/llvm/dist/llvm/lib/Option/
H A DOptTable.cpp186 StringRef Rest = Str.substr(Prefix.size()); in matchOption() local
188 ? Rest.startswith_lower(I->Name) in matchOption()
189 : Rest.startswith(I->Name); in matchOption()
/netbsd/external/apache2/llvm/dist/llvm/lib/MC/
H A DELFObjectWriter.cpp1252 StringRef Rest = AliasName.substr(Pos); in executePostLayoutBinding() local
1253 StringRef Tail = Rest; in executePostLayoutBinding()
1254 if (Rest.startswith("@@@")) in executePostLayoutBinding()
1255 Tail = Rest.substr(Symbol.isUndefined() ? 2 : 1); in executePostLayoutBinding()
1272 if (Symbol.isUndefined() && Rest.startswith("@@") && in executePostLayoutBinding()
1273 !Rest.startswith("@@@")) { in executePostLayoutBinding()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp919 static void ExposePointerBase(const SCEV *&Base, const SCEV *&Rest, in ExposePointerBase() argument
923 Rest = SE.getAddExpr(Rest, in ExposePointerBase()
932 NewAddOps.back() = Rest; in ExposePointerBase()
933 Rest = SE.getAddExpr(NewAddOps); in ExposePointerBase()
934 ExposePointerBase(Base, Rest, SE); in ExposePointerBase()
1588 const SCEV *Rest = SE.getAddRecExpr(NewOps, L, in visitAddRecExpr() local
1595 const SCEV *ExposedRest = Rest; in visitAddRecExpr()
1614 const SCEV *AddExprRHS = SE.getUnknown(expand(Rest)); in visitAddRecExpr()
/netbsd/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DItaniumDemangle.cpp205 template<typename T, typename ...Rest> void operator()(T V, Rest ...Vs) { in operator ()()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h174 template <typename FieldTy, typename Next, typename... Rest>
179 emitOps<Next, Rest...>(abbrev); in emitOps()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A DJSON.cpp683 const UTF8 *Data = reinterpret_cast<const UTF8 *>(S.data()), *Rest = Data; in isUTF8()
684 if (LLVM_LIKELY(isLegalUTF8String(&Rest, Data + S.size()))) in isUTF8()
688 *ErrOffset = Rest - Data; in isUTF8()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1152 const uint8_t Rest = ThisNopLength - Prefixes; in writeNopData() local
1153 if (Rest != 0) in writeNopData()
1154 OS.write(Nops[Rest - 1], Rest); in writeNopData()
/netbsd/sys/dev/usb/
H A Dif_atureg.h352 uint8_t Rest[11]; member
/netbsd/external/gpl3/gcc/dist/gcc/d/
H A DChangeLog-200617 Rest of 0.178 changes:
311 Rest of DMD 0.174 merge:
405 Rest of DMD 0.173 merge:
458 Rest of DMD 0.170 merge:
502 Rest of 0.169 merge:
537 Rest of 0.168 changes:

1234567