/freebsd/contrib/llvm-project/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, Offse in handleFieldList() 265 handlePointer(ArrayRef<uint8_t> Content,SmallVectorImpl<TiReference> & Refs) handlePointer() argument 274 discoverTypeIndices(ArrayRef<uint8_t> Content,TypeLeafKind Kind,SmallVectorImpl<TiReference> & Refs) discoverTypeIndices() argument 360 discoverTypeIndices(ArrayRef<uint8_t> Content,SymbolKind Kind,SmallVectorImpl<TiReference> & Refs) discoverTypeIndices() argument [all...] |
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | BreakableToken.cpp | 222 StringRef Content = Token.TokenText.substr(2).ltrim(); in switchesFormatting() local 223 return Content.starts_with("clang-format on") || in switchesFormatting() 224 Content.starts_with("clang-format off"); in switchesFormatting() 423 if (CommentPragmasRegex.match(Content[LineIndex])) in getSplit() 425 return getCommentSplit(Content[LineIndex].substr(TailOffset), in getSplit() 433 StringRef Text = Content[LineIndex].substr(TailOffset); in compressWhitespace() 450 static bool mayReflowContent(StringRef Content) { in mayReflowContent() argument 451 Content = Content.trim(Blanks); in mayReflowContent() 457 if (Content.starts_with(Prefix)) { in mayReflowContent() 468 hasSpecialMeaningPrefix || kNumberedListRegexp.match(Content); in mayReflowContent() [all …]
|
/freebsd/contrib/llvm-project/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 …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | RuntimeDyldChecker.h | 86 MemoryRegionInfo(ArrayRef<char> Content, JITTargetAddress TargetAddress, 88 : ContentPtr(Content.data()), Size(Content.size()), in MemoryRegionInfo() 102 void setContent(ArrayRef<char> Content) { 103 assert(!ContentPtr && !Size && "Content/zero-fill already set"); 104 ContentPtr = Content.data(); in setZeroFill() 105 Size = Content.size(); in setZeroFill() 110 assert(!ContentPtr && !this->Size && "Content/zero-fill already set"); in getContent() 82 MemoryRegionInfo(ArrayRef<char> Content,JITTargetAddress TargetAddress) MemoryRegionInfo() argument 97 setContent(ArrayRef<char> Content) setContent() argument
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | ppc64.h | 89 ArrayRef<char> Content; in pickStub() 98 ArrayRef<char> Content = in pickStub() 101 Content = Content.slice(4); in pickStub() 104 Content, 109 ArrayRef<char> Content = 113 Content, 118 ArrayRef<char> Content = isLE ? PointerJumpStubNoTOCContent_little in createAnonymousPointerJumpStub() 123 Content, in createAnonymousPointerJumpStub() 150 Block &B = G.createContentBlock(StubSection, StubInfo.Content, in visitEdge() 66 ArrayRef<char> Content; global() member 75 ArrayRef<char> Content = pickStub() local 85 ArrayRef<char> Content = pickStub() local 93 ArrayRef<char> Content = isLE ? PointerJumpStubNoTOCContent_little pickStub() local [all...] |
H A D | JITLink.h | 179 Block(Section &Parent, ArrayRef<char> Content, orc::ExecutorAddr Address, in Block() argument 181 : Addressable(Address, true), Parent(&Parent), Data(Content.data()), in Block() 182 Size(Content.size()) { in Block() 198 Block(Section &Parent, MutableArrayRef<char> Content, in Block() argument 200 : Addressable(Address, true), Parent(&Parent), Data(Content.data()), in Block() 201 Size(Content.size()) { in Block() 248 void setContent(ArrayRef<char> Content) { in setContent() argument 249 assert(Content.data() && "Setting null content"); in setContent() 250 Data = Content.data(); in setContent() 251 Size = Content.size(); in setContent() [all …]
|
/freebsd/contrib/llvm-project/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()
|
H A D | ArchiveYAML.cpp | 25 IO.mapOptional("Content", A.Content); in mapping() 31 if (A.Members && A.Content) in validate() 41 IO.mapOptional("Content", E.Content); in mapping()
|
/freebsd/crypto/openssl/test/smime-eml/ |
H A D | SignedInvalidMappingFromanyPolicyTest7.eml | 5 Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg="sha-256"; boundary=… 10 Content-Type: text/plain 15 Content-Type: application/pkcs7-signature; name="smime.p7s" 16 Content-Transfer-Encoding: base64 17 Content-Disposition: attachment; filename="smime.p7s"
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Log.cpp | 154 llvm::SmallString<64> Content; in VAPrintf() local 155 lldb_private::VASprintf(Content, format, args); in VAPrintf() 156 PutString(Content); in VAPrintf() 169 llvm::SmallString<64> Content; in VAFormatf() local 170 lldb_private::VASprintf(Content, format, args); in VAFormatf() 171 Format(file, function, llvm::formatv("{0}", Content)); in VAFormatf() 183 llvm::SmallString<64> Content; in VAError() local 184 VASprintf(Content, format, args); in VAError() 186 Printf("error: %s", Content.c_str()); in VAError() 202 llvm::SmallString<64> Content; in Warning() local [all …]
|
/freebsd/crypto/openssl/test/recipes/80-test_cms_data/ |
H A D | ciphertext_from_1_1_1.cms | 2 Content-Disposition: attachment; filename="smime.p7m" 3 Content-Type: application/pkcs7-mime; smime-type=enveloped-data; name="smime.p7m" 4 Content-Transfer-Encoding: base64
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | MinidumpYAML.h | 99 yaml::BinaryRef Content; member 149 yaml::BinaryRef Content; member 152 RawContentStream(minidump::StreamType Type, ArrayRef<uint8_t> Content = {}) 153 : Stream(StreamKind::RawContent, Type), Content(Content), in Stream() 154 Size(Content.size()) {} in Stream() 244 BinaryRef &Content);
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/ |
H A D | SimpleExecutorMemoryManager.cpp | 113 if (LLVM_UNLIKELY(Seg.Size < Seg.Content.size())) in finalize() 117 Seg.Addr.getValue(), Seg.Content.size(), Seg.Size), in finalize() 129 if (!Seg.Content.empty()) in finalize() 130 memcpy(Mem, Seg.Content.data(), Seg.Content.size()); in finalize() 131 memset(Mem + Seg.Content.size(), 0, Seg.Size - Seg.Content.size()); in finalize()
|
/freebsd/lib/libfetch/ |
H A D | http.errors | 10 204 OK No Content 11 205 OK Reset Content 12 206 OK Partial Content
|
/freebsd/crypto/openssl/demos/smime/ |
H A D | sign.txt | 1 Content-type: text/plain 3 Test OpenSSL Signed Content
|
/freebsd/crypto/openssl/demos/cms/ |
H A D | sign.txt | 1 Content-type: text/plain 3 Test OpenSSL CMS Signed Content
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | ELF.cpp | 398 ELFFile<ELFT>::getCrelHeader(ArrayRef<uint8_t> Content) const { in getCrelHeader() 399 DataExtractor Data(Content, isLE(), sizeof(typename ELFT::Addr)); in getCrelHeader() 410 ELFFile<ELFT>::decodeCrel(ArrayRef<uint8_t> Content) const { in decodeCrel() 416 Content, in decodeCrel() 456 ArrayRef<uint8_t> Content = *ContentsOrErr; in android_relas() local 457 if (Content.size() < 4 || Content[0] != 'A' || Content[1] != 'P' || in android_relas() 458 Content[2] != 'S' || Content[3] != '2') in android_relas() 460 DataExtractor Data(Content, isLE(), ELFT::Is64Bits ? 8 : 4); in android_relas() 770 ArrayRef<uint8_t> Content = *ContentsOrErr; in decodeBBAddrMapImpl() local 771 DataExtractor Data(Content, EF.isLE(), ELFT::Is64Bits ? 8 : 4); in decodeBBAddrMapImpl() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
H A D | Diagnostics.cpp | 183 static void printErrorContentToStream(const Diagnostics::ErrorContent &Content, in printErrorContentToStream() argument 185 if (Content.Messages.size() == 1) { in printErrorContentToStream() 186 printMessageToStream(Content.Messages[0], "", OS); in printErrorContentToStream() 188 for (size_t i = 0, e = Content.Messages.size(); i != e; ++i) { in printErrorContentToStream() 190 printMessageToStream(Content.Messages[i], in printErrorContentToStream()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | AttrDocs.td | 53 let Content = [{ 62 let Content = [{ 71 let Content = [{ 96 let Content = [{ 120 let Content = [{ 150 let Content = [{ 166 let Content = [{ 181 let Content = [{ 195 let Content = [{ 213 let Content = [{ [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | PDBFileBuilder.cpp | 122 Desc.Content = std::move(Buffer); in addInjectedSource() 186 CRC.update(arrayRefFromStringRef(IS.Content->getBuffer())); in finalizeMsfLayout() 191 Entry.FileSize = IS.Content->getBufferSize(); in finalizeMsfLayout() 211 SN = allocateNamedStream(IS.StreamName, IS.Content->getBufferSize()); in finalizeMsfLayout() 268 assert(SourceWriter.bytesRemaining() == IS.Content->getBufferSize()); in commitInjectedSources() 270 arrayRefFromStringRef(IS.Content->getBuffer())));
|
/freebsd/contrib/dialog/samples/copifuncs/ |
H A D | ifpatch | 71 if (!strcasecmp(msg->key,"Content-Type")) return removemime?0:1; 72 if (!strcasecmp(msg->key,"Content-Length")) return removemime?0:1; 74 if (!strcasecmp(msg->key,"Content-Name")) return 2; 75 if (!strcasecmp(msg->key,"Content-Description")) return 2;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DXContainerGlobals.cpp | 35 GlobalVariable *buildContainerGlobal(Module &M, Constant *Content, 110 Module &M, Constant *Content, StringRef Name, StringRef SectionName) { in buildContainerGlobal() argument 112 M, Content->getType(), true, GlobalValue::PrivateLinkage, Content, Name); in buildContainerGlobal()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | mime | 6 0 string/t Content-Type:\040 8 0 string/t Content-Type:
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/ |
H A D | WasmObject.cpp | 22 Section NewSection, std::unique_ptr<MemoryBuffer> &&Content) { in addSectionWithOwnedContents() argument 24 OwnedContents.emplace_back(std::move(Content)); in addSectionWithOwnedContents()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | CommentParser.cpp | 715 SmallVector<InlineContentComment *, 8> Content; in parseParagraphOrBlockCommand() local 725 Content.push_back(S.actOnUnknownCommand(Tok.getLocation(), in parseParagraphOrBlockCommand() 735 if (Content.size() == 0) in parseParagraphOrBlockCommand() 749 Content.push_back(S.actOnUnknownCommand(Tok.getLocation(), in parseParagraphOrBlockCommand() 756 Content.push_back(parseInlineCommand()); in parseParagraphOrBlockCommand() 778 if (Content.size() > 0) in parseParagraphOrBlockCommand() 779 Content.back()->addTrailingNewline(); in parseParagraphOrBlockCommand() 785 Content.push_back(parseHTMLStartTag()); in parseParagraphOrBlockCommand() 789 Content.push_back(parseHTMLEndTag()); in parseParagraphOrBlockCommand() 793 Content.push_back(S.actOnText(Tok.getLocation(), in parseParagraphOrBlockCommand() [all …]
|