Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/bmake/unit-tests/
H A Dvarmod-range.exp2 make: "varmod-range.mk" line 53: Malformed conditional ("${:U:range=x}Rest" != "Rest")
4 make: "varmod-range.mk" line 62: Malformed conditional ("${:U:range=0x0}Rest" != "Rest")
6 make: "varmod-range.mk" line 78: Malformed conditional ("${a b c:L:rang}Rest" != "Rest")
8 make: "varmod-range.mk" line 85: Malformed conditional ("${a b c:L:rango}Rest" != "Rest")
10 make: "varmod-range.mk" line 92: Malformed conditional ("${a b c:L:ranger}Rest" != "Rest")
/freebsd-13.1/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()
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 …]
H A DDeclBase.h1272 Ptr = CurNode->Rest;
1287 Decls Rest = nullptr;
H A DASTContext.h691 ListNodeFreeList = Alloc->Rest.dyn_cast<DeclListNode*>(); in AllocateDeclListNode()
693 Alloc->Rest = nullptr; in AllocateDeclListNode()
701 N->Rest = ListNodeFreeList; in DeallocateDeclListNode()
/freebsd-13.1/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-13.1/contrib/llvm-project/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 …]
/freebsd-13.1/contrib/llvm-project/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 …]
/freebsd-13.1/sys/contrib/device-tree/src/arm/
H A Dste-u300.dts105 clock-type = <2>; /* Rest */
119 clock-type = <2>; /* Rest */
134 clock-type = <2>; /* Rest */
141 clock-type = <2>; /* Rest */
148 clock-type = <2>; /* Rest */
155 clock-type = <2>; /* Rest */
162 clock-type = <2>; /* Rest */
169 clock-type = <2>; /* Rest */
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp166 StringRef Rest = Input.substr(n1 + 2); in ParseLine() local
167 if (isDigit(Rest[0])) { in ParseLine()
169 size_t n3 = Rest.find(' '); in ParseLine()
171 if (Rest.getAsInteger(10, NumSamples)) in ParseLine()
190 n3 += Rest.substr(n3).find_first_not_of(' '); in ParseLine()
191 Rest = Rest.substr(n3); in ParseLine()
192 n3 = Rest.find_first_of(':'); in ParseLine()
202 Target = Rest.substr(0, n3); in ParseLine()
219 if (n4 == Rest.size()) in ParseLine()
226 size_t n3 = Rest.find_last_of(':'); in ParseLine()
[all …]
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/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.h146 template <typename First, typename Second, typename... Rest, typename Y>
148 return isa<First>(Val) || isa<Second, Rest...>(Val);
/freebsd-13.1/sys/contrib/device-tree/Bindings/net/
H A Dqcom,ethqos.txt25 Rest of the properties are defined in stmmac.txt file in same directory
/freebsd-13.1/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp186 StringRef Rest = Str.substr(Prefix.size()); in matchOption() local
187 bool Matched = IgnoreCase ? Rest.startswith_insensitive(I->Name) in matchOption()
188 : Rest.startswith(I->Name); in matchOption()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DELFObjectWriter.cpp1236 StringRef Rest = AliasName.substr(Pos); in executePostLayoutBinding() local
1237 StringRef Tail = Rest; in executePostLayoutBinding()
1238 if (Rest.startswith("@@@")) in executePostLayoutBinding()
1239 Tail = Rest.substr(Symbol.isUndefined() ? 2 : 1); in executePostLayoutBinding()
1256 if (Symbol.isUndefined() && Rest.startswith("@@") && in executePostLayoutBinding()
1257 !Rest.startswith("@@@")) { in executePostLayoutBinding()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp205 template<typename T, typename ...Rest> void operator()(T V, Rest ...Vs) { in operator ()()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeConvenience.h174 template <typename FieldTy, typename Next, typename... Rest>
179 emitOps<Next, Rest...>(abbrev); in emitOps()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp929 static void ExposePointerBase(const SCEV *&Base, const SCEV *&Rest, in ExposePointerBase() argument
933 Rest = SE.getAddExpr(Rest, in ExposePointerBase()
942 NewAddOps.back() = Rest; in ExposePointerBase()
943 Rest = SE.getAddExpr(NewAddOps); in ExposePointerBase()
944 ExposePointerBase(Base, Rest, SE); in ExposePointerBase()
1602 const SCEV *Rest = SE.getAddRecExpr(NewOps, L, in visitAddRecExpr() local
1609 const SCEV *ExposedRest = Rest; in visitAddRecExpr()
1628 const SCEV *AddExprRHS = SE.getUnknown(expand(Rest)); in visitAddRecExpr()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h270 bool isCalled(const FirstCallDesc &First, const CallDescs &... Rest) const { in isCalled() argument
271 return isCalled(First) || isCalled(Rest...); in isCalled()
/freebsd-13.1/sys/contrib/device-tree/Bindings/net/wireless/
H A Dqcom,ath10k.txt11 Rest of the properties are not applicable for PCI based devices.

12