/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclContextInternals.h | 60 NewTail = &Node->Rest; in erase_if() 61 List = Node->Rest; in erase_if() 66 List = N->Rest; in erase_if() 115 List = ToDealloc->Rest; in MaybeDeallocList() 200 Node->Rest = DeclsAsList; in replaceExternalDecls() 211 Node->Rest = DeclsAsList; in replaceExternalDecls() 240 Node->Rest = D; in addOrReplaceDecl() 250 N = N->Rest.dyn_cast<DeclListNode *>()) { in addOrReplaceDecl() 255 if (auto *ND = N->Rest.dyn_cast<NamedDecl *>()) { in addOrReplaceDecl() 257 N->Rest = D; in addOrReplaceDecl() [all …]
|
H A D | ASTContext.h | 751 ListNodeFreeList = Alloc->Rest.dyn_cast<DeclListNode*>(); in AllocateDeclListNode() 753 Alloc->Rest = nullptr; in AllocateDeclListNode() 761 N->Rest = ListNodeFreeList; in DeallocateDeclListNode()
|
H A D | DeclBase.h | 1348 Ptr = CurNode->Rest; 1363 Decls Rest = nullptr;
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/ |
H A D | RefactoringActionRulesInternal.h | 29 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 D | DataLayout.cpp | 289 StringRef &Rest = Split.second; // The rest of the string. in parseSpecifier() local 293 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() 295 Rest = Split.second; in parseSpecifier() 302 } while (!Rest.empty()); in parseSpecifier() 331 if (Rest.empty()) in parseSpecifier() 334 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() 343 if (Rest.empty()) in parseSpecifier() 346 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() 360 if (!Rest.empty()) { in parseSpecifier() 361 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | Utils.cpp | 135 StringRef Name, Rest; in isPrivateLibrary() local 136 std::tie(Name, Rest) = in isPrivateLibrary() 140 if (IsSymLink && Rest == "framework") in isPrivateLibrary() 151 return !(Rest.starts_with("framework/") && in isPrivateLibrary() 152 (Rest.ends_with(Name) || Rest.ends_with((Name + ".tbd").str()) || in isPrivateLibrary() 153 (IsSymLink && Rest.ends_with("Current")))); in isPrivateLibrary()
|
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 1539 StringRef Rest = Buffer.drop_front(Prefix.size()); in FindCheckType() local 1542 if (Rest.consume_front(":")) in FindCheckType() 1543 return {Check::CheckComment, Rest}; in FindCheckType() 1550 if (Rest.consume_front(":")) in FindCheckType() 1551 return {Ret, Rest}; in FindCheckType() 1552 if (!Rest.consume_front("{")) in FindCheckType() 1558 Rest = Rest.ltrim(); in FindCheckType() 1559 if (Rest.consume_front("LITERAL")) in FindCheckType() 1562 return {Check::CheckNone, Rest}; in FindCheckType() 1564 Rest = Rest.ltrim(); in FindCheckType() [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-range.exp | 3 while evaluating "${:U:range=x}Rest" != "Rest"" with value ""
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-ar/ |
H A D | llvm-ar.cpp | 1201 StringRef CommandStr, Rest; in runMRIScript() local 1202 std::tie(CommandStr, Rest) = Line.split(' '); in runMRIScript() 1203 Rest = Rest.trim(); in runMRIScript() 1204 if (!Rest.empty() && Rest.front() == '"' && Rest.back() == '"') in runMRIScript() 1205 Rest = Rest.drop_front().drop_back(); in runMRIScript() 1220 object::Archive &Lib = readLibrary(Rest); in runMRIScript() 1234 addMember(NewMembers, Rest); in runMRIScript() 1245 ArchiveName = std::string(Rest); in runMRIScript() 1251 return comparePaths(M.MemberName, Rest); in runMRIScript()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto2/ |
H A D | llvm-lto2.cpp | 255 StringRef Rest, FileName, SymbolName; in run() local 256 std::tie(FileName, Rest) = R.split(','); in run() 257 if (Rest.empty()) { in run() 261 std::tie(SymbolName, Rest) = Rest.split(','); in run() 263 for (char C : Rest) { in run()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | SampleProfReader.cpp | 243 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() 251 if (Rest.substr(0, n3).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() 277 StringRef AfterColon = Rest.substr(n3 + 1); in ParseLine() 279 Target = Rest.substr(0, n3); in ParseLine() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | InclusionRewriter.cpp | 295 StringRef Rest = TextToWrite; in OutputContentUpTo() local 296 while (!Rest.empty()) { in OutputContentUpTo() 298 size_t Idx = Rest.find(LocalEOL); in OutputContentUpTo() 299 StringRef LineText = Rest.substr(0, Idx); in OutputContentUpTo() 309 Rest = Rest.substr(Idx); in OutputContentUpTo()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | RecordSerialization.h | 220 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 D | TrailingObjects.h | 62 template <typename First, typename... Rest> class AlignmentCalcHelper { 66 RestAlignment = AlignmentCalcHelper<Rest...>::Alignment,
|
H A D | Casting.h | 552 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 D | qcom,ethqos.txt | 27 Rest of the properties are defined in stmmac.txt file in same directory
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | ELFObjectWriter.cpp | 1141 StringRef Rest = AliasName.substr(Pos); in executePostLayoutBinding() local 1142 StringRef Tail = Rest; in executePostLayoutBinding() 1143 if (Rest.starts_with("@@@")) in executePostLayoutBinding() 1144 Tail = Rest.substr(Symbol.isUndefined() ? 2 : 1); in executePostLayoutBinding() 1161 if (Symbol.isUndefined() && Rest.starts_with("@@") && in executePostLayoutBinding() 1162 !Rest.starts_with("@@@")) { in executePostLayoutBinding()
|
/freebsd/contrib/llvm-project/llvm/lib/Option/ |
H A D | OptTable.cpp | 165 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/include/llvm/Bitcode/ |
H A D | BitcodeConvenience.h | 175 template <typename FieldTy, typename Next, typename... Rest> 180 emitOps<Next, Rest...>(abbrev); in emitOps()
|
/freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
H A D | ItaniumDemangle.cpp | 248 template<typename T, typename ...Rest> void operator()(T V, Rest ...Vs) { in operator ()()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | JSON.cpp | 698 const UTF8 *Data = reinterpret_cast<const UTF8 *>(S.data()), *Rest = Data; in isUTF8() 699 if (LLVM_LIKELY(isLegalUTF8String(&Rest, Data + S.size()))) in isUTF8() 703 *ErrOffset = Rest - Data; in isUTF8()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86AsmBackend.cpp | 1044 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/crypto/openssl/ |
H A D | README-PROVIDERS.md | 140 /* Rest of application */
|
/freebsd/sys/contrib/device-tree/Bindings/net/wireless/ |
H A D | qcom,ath10k.txt | 11 Rest of the properties are not applicable for PCI based devices.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | STLExtras.h | 2406 auto enumerate(FirstRange &&First, RestRanges &&...Rest) { 2407 if constexpr (sizeof...(Rest) != 0) { 2411 size_t sizes[] = {range_size(First), range_size(Rest)...}; 2418 std::forward<RestRanges>(Rest)...);
|