| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndexDiscovery.cpp | 69 static void handleMethodOverloadList(ArrayRef<uint8_t> Content, in handleMethodOverloadList() argument 73 while (!Content.empty()) { in handleMethodOverloadList() 85 uint16_t Attrs = support::endian::read16le(Content.data()); in handleMethodOverloadList() 91 Content = Content.drop_front(Len); in handleMethodOverloadList() 209 static void handleFieldList(ArrayRef<uint8_t> Content, in handleFieldList() argument 213 while (!Content.empty()) { in handleFieldList() 215 static_cast<TypeLeafKind>(support::endian::read16le(Content.data())); in handleFieldList() 218 ThisLen = handleBaseClass(Content, Offset, Refs); in handleFieldList() 221 ThisLen = handleEnumerator(Content, Offset, Refs); in handleFieldList() 224 ThisLen = handleDataMember(Content, Offset, Refs); in handleFieldList() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Format/ |
| H A D | BreakableToken.cpp | 222 StringRef Content = Token.TokenText.substr(2).ltrim(); in switchesFormatting() local 223 return Content.startswith("clang-format on") || in switchesFormatting() 224 Content.startswith("clang-format off"); in switchesFormatting() 309 if (CommentPragmasRegex.match(Content[LineIndex])) in getSplit() 311 return getCommentSplit(Content[LineIndex].substr(TailOffset), in getSplit() 319 StringRef Text = Content[LineIndex].substr(TailOffset); in compressWhitespace() 336 static bool mayReflowContent(StringRef Content) { in mayReflowContent() argument 337 Content = Content.trim(Blanks); in mayReflowContent() 343 if (Content.startswith(Prefix)) { in mayReflowContent() 354 hasSpecialMeaningPrefix || kNumberedListRegexp.match(Content); in mayReflowContent() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/HTTP-Tiny/corpus/ |
| H A D | cookies-03.txt | 13 Content-Type: text/plain 14 Content-Length: 44 31 Content-Type: text/plain 32 Content-Length: 44 48 Content-Type: text/plain 49 Content-Length: 44 66 Content-Type: text/plain 67 Content-Length: 44 84 Content-Type: text/plain 85 Content-Length: 44
|
| H A D | post-01.txt | 4 Content-Type: text/plain 5 Content-Length: 42 13 Content-Type: text/plain 14 Content-Length: 42 21 Content-Type: text/plain 22 Content-Length: 42
|
| H A D | post-02.txt | 4 Content-Type: text/plain 12 Content-Type: text/plain 13 Content-Length: 0 18 Content-Type: text/plain 19 Content-Length: 0
|
| H A D | put-07.txt | 4 Content-Type: text/plain 5 Content-Length: 0 14 Content-Type: text/plain 15 Content-Length: 0 21 Content-Length: 0
|
| H A D | put-02.txt | 4 Content-Type: text/plain 5 Content-Length: 42 14 Content-Type: text/plain 15 Content-Length: 42 23 Content-Length: 0
|
| H A D | redirect-04.txt | 18 Content-Type: text/html 19 Content-Length: 53 33 Content-Type: text/html 34 Content-Length: 53 48 Content-Type: text/plain 49 Content-Length: 42
|
| H A D | redirect-05.txt | 16 Content-Type: text/html 17 Content-Length: 53 31 Content-Type: text/html 32 Content-Length: 53 46 Content-Type: text/plain 47 Content-Length: 42
|
| H A D | cookies-06.txt | 13 Content-Type: text/plain 14 Content-Length: 44 31 Content-Type: text/plain 32 Content-Length: 44 48 Content-Type: text/plain 49 Content-Length: 44
|
| H A D | redirect-03.txt | 18 Content-Type: text/html 19 Content-Length: 53 33 Content-Type: text/html 34 Content-Length: 53 48 Content-Type: text/plain 49 Content-Length: 42
|
| H A D | cookies-02.txt | 13 Content-Type: text/plain 14 Content-Length: 44 31 Content-Type: text/plain 32 Content-Length: 44 49 Content-Type: text/plain 50 Content-Length: 44
|
| H A D | redirect-02.txt | 18 Content-Type: text/html 19 Content-Length: 53 33 Content-Type: text/html 34 Content-Length: 53 48 Content-Type: text/plain 49 Content-Length: 42
|
| H A D | redirect-09.txt | 13 Content-Length: 0 19 Content-Type: text/html 20 Content-Length: 53 34 Content-Type: text/plain 35 Content-Length: 42
|
| H A D | put-06.txt | 4 Content-Type: text/plain 12 Content-Type: text/plain 13 Content-Length: 0 19 Content-Length: 0
|
| H A D | put-01.txt | 4 Content-Type: text/plain 12 Content-Type: text/plain 13 Content-Length: 42 21 Content-Length: 0
|
| H A D | form-01.txt | 4 Content-Type: text/plain 14 Content-Type: application/x-www-form-urlencoded 15 Content-Length: 67 22 Content-Length: 0
|
| H A D | redirect-06.txt | 16 Content-Type: text/html 17 Content-Length: 53 31 Content-Type: text/plain 32 Content-Length: 42
|
| H A D | redirect-07.txt | 16 Content-Type: text/html 17 Content-Length: 53 31 Content-Type: text/plain 32 Content-Length: 42
|
| /openbsd-src/gnu/llvm/llvm/tools/obj2yaml/ |
| H A D | elf2yaml.cpp | 547 RawSec->Content.reset(); in dumpDWARFSections() 853 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpStackSizesSection() local 854 DataExtractor Data(Content, Obj.isLE(), ELFT::Is64Bits ? 8 : 4); in dumpStackSizesSection() 858 while (Cur && Cur.tell() < Content.size()) { in dumpStackSizesSection() 864 if (Content.empty() || !Cur) { in dumpStackSizesSection() 867 S->Content = yaml::BinaryRef(Content); in dumpStackSizesSection() 886 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpBBAddrMapSection() local 887 if (Content.empty()) in dumpBBAddrMapSection() 890 DataExtractor Data(Content, Obj.isLE(), ELFT::Is64Bits ? 8 : 4); in dumpBBAddrMapSection() 896 while (Cur && Cur.tell() < Content.size()) { in dumpBBAddrMapSection() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderAnalysis.cpp | 40 bool isDontIncludeMeHeader(StringRef Content) { in isDontIncludeMeHeader() argument 43 Content = Content.take_front(100 * 100); in isDontIncludeMeHeader() 44 for (unsigned I = 0; I < 100 && !Content.empty(); ++I) { in isDontIncludeMeHeader() 45 std::tie(Line, Content) = Content.split('\n'); in isDontIncludeMeHeader() 46 if (isIf(Line) && isErrorAboutInclude(Content.split('\n').first)) in isDontIncludeMeHeader()
|
| /openbsd-src/gnu/llvm/llvm/lib/InterfaceStub/ |
| H A D | ELFObjHandler.cpp | 89 T Content; member 194 DynStr.Content.add(Sym.Name); in ELFStubBuilder() 196 DynStr.Content.add(Lib); in ELFStubBuilder() 198 DynStr.Content.add(*Stub.SoName); in ELFStubBuilder() 207 ShStrTab.Content.add(Sec->Name); in ELFStubBuilder() 209 ShStrTab.Content.finalize(); in ELFStubBuilder() 210 ShStrTab.Size = ShStrTab.Content.getSize(); in ELFStubBuilder() 211 DynStr.Content.finalize(); in ELFStubBuilder() 212 DynStr.Size = DynStr.Content.getSize(); in ELFStubBuilder() 222 DynSym.Content.add(DynStr.Content.getOffset(Sym.Name), Size, Bind, in ELFStubBuilder() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/tml-world/ |
| H A D | ITS-SIN-FIDS-Content-XML.tml | 1 === ITS-SIN-FIDS-Content-XML 6 name: ITS-SIN-FIDS-Content-XML 8 version_from: lib/ITS/SIN/FIDS/Content/XML.pm 19 name => 'ITS-SIN-FIDS-Content-XML', 21 version_from => 'lib/ITS/SIN/FIDS/Content/XML.pm',
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/ |
| H A D | RuntimeDyldChecker.h | 81 MemoryRegionInfo(ArrayRef<char> Content, JITTargetAddress TargetAddress) in MemoryRegionInfo() argument 82 : ContentPtr(Content.data()), Size(Content.size()), in MemoryRegionInfo() 96 void setContent(ArrayRef<char> Content) { in setContent() argument 98 ContentPtr = Content.data(); in setContent() 99 Size = Content.size(); in setContent()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
| H A D | ArchiveEmitter.cpp | 23 if (Doc.Content) { in yaml2archive() 24 Doc.Content->writeAsBinary(Out); in yaml2archive() 41 if (C.Content) in yaml2archive() 42 C.Content->writeAsBinary(Out); in yaml2archive()
|