| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | DeclContextInternals.h | 59 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() 184 Node->Rest = DeclsAsList; in replaceExternalDecls() 199 Tail = &Node->Rest; in replaceExternalDecls() 203 Node->Rest = DeclsAsList; in replaceExternalDecls() 233 Node->Rest = D; in addOrReplaceDecl() 243 N = N->Rest.dyn_cast<DeclListNode *>()) { in addOrReplaceDecl() 248 if (auto *ND = N->Rest.dyn_cast<NamedDecl *>()) { in addOrReplaceDecl() [all …]
|
| H A D | DeclBase.h | 1314 Ptr = CurNode->Rest; 1329 Decls Rest = nullptr;
|
| H A D | ASTContext.h | 716 ListNodeFreeList = Alloc->Rest.dyn_cast<DeclListNode*>(); in AllocateDeclListNode() 718 Alloc->Rest = nullptr; in AllocateDeclListNode() 726 N->Rest = ListNodeFreeList; in DeallocateDeclListNode()
|
| /openbsd-src/gnu/llvm/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 …]
|
| /openbsd-src/gnu/llvm/lldb/source/Host/linux/ |
| H A D | Host.cpp | 67 llvm::StringRef Rest = BufferOrError.get()->getBuffer(); in GetStatusInfo() local 68 while (!Rest.empty()) { in GetStatusInfo() 70 std::tie(Line, Rest) = Rest.split('\n'); in GetStatusInfo() 160 llvm::StringRef Arg0, Rest; in GetProcessArgs() local 161 std::tie(Arg0, Rest) = Cmdline->getBuffer().split('\0'); in GetProcessArgs() 163 while (!Rest.empty()) { in GetProcessArgs() 165 std::tie(Arg, Rest) = Rest.split('\0'); in GetProcessArgs() 204 llvm::StringRef Rest = Environ->getBuffer(); in GetProcessEnviron() local 205 while (!Rest.empty()) { in GetProcessEnviron() 207 std::tie(Var, Rest) = Rest.split('\0'); in GetProcessEnviron()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | DataLayout.cpp | 273 StringRef &Rest = Split.second; // The rest of the string. in parseSpecifier() local 277 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() 279 Rest = Split.second; in parseSpecifier() 286 } while (!Rest.empty()); in parseSpecifier() 315 if (Rest.empty()) in parseSpecifier() 318 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() 327 if (Rest.empty()) in parseSpecifier() 330 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() 344 if (!Rest.empty()) { in parseSpecifier() 345 if (Error Err = ::split(Rest, ':', Split)) in parseSpecifier() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Unicode-Collate/ |
| H A D | mkheader | 31 our @Rest; 45 push @Rest, $line; 63 push @Rest, $line; 104 for my $line (@Rest) {
|
| /openbsd-src/gnu/llvm/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 1692 StringRef Rest = Buffer.drop_front(Prefix.size()); in FindCheckType() local 1695 if (Rest.consume_front(":")) in FindCheckType() 1696 return {Check::CheckComment, Rest}; in FindCheckType() 1703 if (Rest.consume_front(":")) in FindCheckType() 1704 return {Ret, Rest}; in FindCheckType() 1705 if (!Rest.consume_front("{")) in FindCheckType() 1711 Rest = Rest.ltrim(); in FindCheckType() 1712 if (Rest.consume_front("LITERAL")) in FindCheckType() 1715 return {Check::CheckNone, Rest}; in FindCheckType() 1717 Rest = Rest.ltrim(); in FindCheckType() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderAnalysis.cpp | 111 StringRef Rest(Text, End - Text); in parseIWYUPragma() local 115 Rest.consume_back("*/"); in parseIWYUPragma() 116 return Rest.trim(); in parseIWYUPragma()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-lto2/ |
| H A D | llvm-lto2.cpp | 232 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()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-ar/ |
| H A D | llvm-ar.cpp | 1192 StringRef CommandStr, Rest; in runMRIScript() local 1193 std::tie(CommandStr, Rest) = Line.split(' '); in runMRIScript() 1194 Rest = Rest.trim(); in runMRIScript() 1195 if (!Rest.empty() && Rest.front() == '"' && Rest.back() == '"') in runMRIScript() 1196 Rest = Rest.drop_front().drop_back(); in runMRIScript() 1211 object::Archive &Lib = readLibrary(Rest); in runMRIScript() 1225 addMember(NewMembers, Rest); in runMRIScript() 1236 ArchiveName = std::string(Rest); in runMRIScript() 1242 return comparePaths(M.MemberName, Rest); in runMRIScript()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/ |
| H A D | InclusionRewriter.cpp | 291 StringRef Rest = TextToWrite; in OutputContentUpTo() local 292 while (!Rest.empty()) { in OutputContentUpTo() 294 size_t Idx = Rest.find(LocalEOL); in OutputContentUpTo() 295 StringRef LineText = Rest.substr(0, Idx); in OutputContentUpTo() 305 Rest = Rest.substr(Idx); in OutputContentUpTo()
|
| /openbsd-src/gnu/llvm/llvm/lib/ProfileData/ |
| H A D | SampleProfReader.cpp | 242 StringRef Rest = Input.substr(n1 + 2); in ParseLine() local 243 if (isDigit(Rest[0])) { in ParseLine() 245 size_t n3 = Rest.find(' '); in ParseLine() 247 if (Rest.getAsInteger(10, NumSamples)) in ParseLine() 250 if (Rest.substr(0, n3).getAsInteger(10, NumSamples)) in ParseLine() 266 n3 += Rest.substr(n3).find_first_not_of(' '); in ParseLine() 267 Rest = Rest.substr(n3); in ParseLine() 268 n3 = Rest.find_first_of(':'); in ParseLine() 276 StringRef AfterColon = Rest.substr(n3 + 1); in ParseLine() 278 Target = Rest.substr(0, n3); in ParseLine() [all …]
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-test/ |
| H A D | lldb-test.cpp | 421 StringRef Rest = MB->getBuffer(); in evaluateBreakpoints() local 423 while (!Rest.empty()) { in evaluateBreakpoints() 425 std::tie(Line, Rest) = Rest.split('\n'); in evaluateBreakpoints() 1162 StringRef Rest = MB->getBuffer(); in evaluateMemoryMapCommands() local 1163 while (!Rest.empty()) { in evaluateMemoryMapCommands() 1165 std::tie(Line, Rest) = Rest.split('\n'); in evaluateMemoryMapCommands()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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 | 553 template <typename First, typename Second, typename... Rest, typename From> 555 return isa<First>(Val) || isa<Second, Rest...>(Val);
|
| /openbsd-src/gnu/llvm/libcxxabi/src/ |
| H A D | cxa_demangle.cpp | 248 template<typename T, typename ...Rest> void operator()(T V, Rest ...Vs) { in operator ()()
|
| /openbsd-src/gnu/llvm/llvm/lib/Option/ |
| H A D | OptTable.cpp | 165 StringRef Rest = Str.substr(Prefix.size()); in matchOption() local 166 bool Matched = IgnoreCase ? Rest.startswith_insensitive(I->Name) in matchOption() 167 : Rest.startswith(I->Name); in matchOption()
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | ELFObjectWriter.cpp | 1250 StringRef Rest = AliasName.substr(Pos); in executePostLayoutBinding() local 1251 StringRef Tail = Rest; in executePostLayoutBinding() 1252 if (Rest.startswith("@@@")) in executePostLayoutBinding() 1253 Tail = Rest.substr(Symbol.isUndefined() ? 2 : 1); in executePostLayoutBinding() 1270 if (Symbol.isUndefined() && Rest.startswith("@@") && in executePostLayoutBinding() 1271 !Rest.startswith("@@@")) { in executePostLayoutBinding()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Bitcode/ |
| H A D | BitcodeConvenience.h | 175 template <typename FieldTy, typename Next, typename... Rest> 180 emitOps<Next, Rest...>(abbrev); in emitOps()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | JSON.cpp | 700 const UTF8 *Data = reinterpret_cast<const UTF8 *>(S.data()), *Rest = Data; in isUTF8() 701 if (LLVM_LIKELY(isLegalUTF8String(&Rest, Data + S.size()))) in isUTF8() 705 *ErrOffset = Rest - Data; in isUTF8()
|
| /openbsd-src/gnu/llvm/llvm/lib/Demangle/ |
| H A D | ItaniumDemangle.cpp | 247 template<typename T, typename ...Rest> void operator()(T V, Rest ...Vs) { in operator ()()
|
| /openbsd-src/distrib/notes/hppa/ |
| H A D | prep | 33 dnl I hope I'll never write ``been there, done that'' here. Rest
|
| /openbsd-src/sys/dev/usb/ |
| H A D | if_atureg.h | 385 u_int8_t Rest[11]; member
|