Home
last modified time | relevance | path

Searched refs:Content (Results 1 – 25 of 249) sorted by relevance

12345678910

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndexDiscovery.cpp69 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 DBreakableToken.cpp209 StringRef Content = Token.TokenText.substr(2).ltrim(); in switchesFormatting() local
210 return Content.starts_with("clang-format on") || in switchesFormatting()
211 Content.starts_with("clang-format off"); in switchesFormatting()
410 if (!AlwaysReflow || CommentPragmasRegex.match(Content[LineIndex])) in getSplit()
412 return getCommentSplit(Content[LineIndex].substr(TailOffset), in getSplit()
420 StringRef Text = Content[LineIndex].substr(TailOffset); in compressWhitespace()
437 static bool mayReflowContent(StringRef Content) { in mayReflowContent() argument
438 Content = Content.trim(Blanks); in mayReflowContent()
444 if (Content.starts_with(Prefix)) { in mayReflowContent()
455 hasSpecialMeaningPrefix || kNumberedListRegexp.match(Content); in mayReflowContent()
[all …]
/freebsd/crypto/openssl/test/recipes/90-test_sslapi_data/
H A Dssltraceref-zlib.txt4 Content Type = Handshake (22)
68 Content Type = Handshake (22)
88 Content Type = ChangeCipherSpec (20)
95 Content Type = ApplicationData (23)
97 Inner Content Type = Handshake (22)
104 Content Type = ApplicationData (23)
106 Inner Content Type = Handshake (22)
198 Content Type = ApplicationData (23)
200 Inner Content Type = Handshake (22)
208 Content Type = ApplicationData (23)
[all …]
H A Dssltraceref.txt4 Content Type = Handshake (22)
66 Content Type = Handshake (22)
86 Content Type = ChangeCipherSpec (20)
93 Content Type = ApplicationData (23)
95 Inner Content Type = Handshake (22)
102 Content Type = ApplicationData (23)
104 Inner Content Type = Handshake (22)
196 Content Type = ApplicationData (23)
198 Inner Content Type = Handshake (22)
206 Content Type = ApplicationData (23)
[all …]
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp89 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 DRuntimeDyldChecker.h88 MemoryRegionInfo(ArrayRef<char> Content, JITTargetAddress TargetAddress, in MemoryRegionInfo() argument
90 : ContentPtr(Content.data()), Size(Content.size()), in MemoryRegionInfo()
104 void setContent(ArrayRef<char> Content) { in setContent() argument
106 ContentPtr = Content.data(); in setContent()
107 Size = Content.size(); in setContent()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DArchiveEmitter.cpp22 if (Doc.Content) { in yaml2archive()
23 Doc.Content->writeAsBinary(Out); in yaml2archive()
40 if (C.Content) in yaml2archive()
41 C.Content->writeAsBinary(Out); in yaml2archive()
H A DArchiveYAML.cpp25 IO.mapOptional("Content", A.Content); in mapping()
31 if (A.Members && A.Content) in validate()
41 IO.mapOptional("Content", E.Content); in mapping()
H A DMinidumpEmitter.cpp151 File.allocateBytes(E.Content); in layout()
152 if (E.Entry.DataSize > E.Content.binary_size()) { in layout()
153 size_t Padding = E.Entry.DataSize - E.Content.binary_size(); in layout()
164 Range.Entry.Memory = layout(File, Range.Content); in layout()
226 Raw.Content.writeAsBinary(OS); in layout()
227 assert(Raw.Content.binary_size() <= Raw.Size); in layout()
228 OS << std::string(Raw.Size - Raw.Content.binary_size(), '\0'); in layout()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DTrieRawHashMap.cpp39 auto *Content = reinterpret_cast<const uint8_t *>(this) + ContentOffset; in getValuePointer() local
40 return const_cast<uint8_t *>(Content); in getValuePointer()
71 sink(size_t I, TrieContent &Content, size_t NumSubtrieBits, size_t NewI,
141 size_t I, TrieContent &Content, size_t NumSubtrieBits, size_t NewI, in sink() argument
149 S->get(NewI).store(&Content); in sink()
153 TrieNode *ExistingNode = &Content; in sink()
289 TrieContent *Content = ::new (Memory) in insert() local
291 assert(Hash == Content->getHash() && "Hash not properly initialized"); in insert()
292 return Content; in insert()
376 if (auto *Content = dyn_cast_or_null<TrieContent>(Trie->load(I))) in destroyImpl() local
[all …]
/freebsd/crypto/openssl/test/smime-eml/
H A DSignedInvalidMappingFromanyPolicyTest7.eml5 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/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h100 yaml::BinaryRef Content; member
109 yaml::BinaryRef Content; member
168 yaml::BinaryRef Content; member
171 RawContentStream(minidump::StreamType Type, ArrayRef<uint8_t> Content = {})
172 : Stream(StreamKind::RawContent, Type), Content(Content), in Stream()
173 Size(Content.size()) {} in Stream()
263 BinaryRef &Content);
269 BinaryRef &Content);
/freebsd/crypto/openssl/test/recipes/80-test_cms_data/
H A Dciphertext_from_1_1_1.cms2 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/lldb/source/Utility/
H A DLog.cpp164 llvm::SmallString<64> Content; in VAPrintf() local
165 lldb_private::VASprintf(Content, format, args); in VAPrintf()
166 PutString(Content); in VAPrintf()
179 llvm::SmallString<64> Content; in VAFormatf() local
180 lldb_private::VASprintf(Content, format, args); in VAFormatf()
181 Format(file, function, llvm::formatv("{0}", Content)); in VAFormatf()
193 llvm::SmallString<64> Content; in VAError() local
194 VASprintf(Content, format, args); in VAError()
196 Printf("error: %s", Content.c_str()); in VAError()
212 llvm::SmallString<64> Content; in Warning() local
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Dppc64.h90 ArrayRef<char> Content; member
99 ArrayRef<char> Content = in pickStub() local
102 Content = Content.slice(4); in pickStub()
105 Content, in pickStub()
110 ArrayRef<char> Content = in pickStub() local
114 Content, in pickStub()
119 ArrayRef<char> Content = isLE ? PointerJumpStubNoTOCContent_little in pickStub() local
124 Content, in pickStub()
151 Block &B = G.createContentBlock(StubSection, StubInfo.Content, in createAnonymousPointerJumpStub()
155 return G.addAnonymousSymbol(B, 0, StubInfo.Content.size(), true, false); in createAnonymousPointerJumpStub()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleExecutorMemoryManager.cpp113 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 Dhttp.errors10 204 OK No Content
11 205 OK Reset Content
12 206 OK Partial Content
/freebsd/crypto/openssl/demos/smime/
H A Dsign.txt1 Content-type: text/plain
3 Test OpenSSL Signed Content
/freebsd/crypto/openssl/demos/cms/
H A Dsign.txt1 Content-type: text/plain
3 Test OpenSSL CMS Signed Content
/freebsd/crypto/openssl/test/recipes/75-test_quicapi_data/
H A Dssltraceref-zlib.txt4 Content Type = Handshake (22)
194 Content Type = Handshake (22)
196 Inner Content Type = Handshake (22)
203 Content Type = Handshake (22)
205 Inner Content Type = Handshake (22)
241 Content Type = ApplicationData (23)
243 Inner Content Type = Handshake (22)
350 Content Type = ApplicationData (23)
352 Inner Content Type = Handshake (22)
363 Content Type = ApplicationData (23)
[all …]
H A Dssltraceref.txt4 Content Type = Handshake (22)
192 Content Type = Handshake (22)
194 Inner Content Type = Handshake (22)
201 Content Type = Handshake (22)
203 Inner Content Type = Handshake (22)
239 Content Type = ApplicationData (23)
241 Inner Content Type = Handshake (22)
348 Content Type = ApplicationData (23)
350 Inner Content Type = Handshake (22)
361 Content Type = ApplicationData (23)
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dmime6 0 string/t Content-Type:\040
8 0 string/t Content-Type:
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp400 ELFFile<ELFT>::getCrelHeader(ArrayRef<uint8_t> Content) const { in getCrelHeader()
401 DataExtractor Data(Content, isLE(), sizeof(typename ELFT::Addr)); in getCrelHeader()
412 ELFFile<ELFT>::decodeCrel(ArrayRef<uint8_t> Content) const { in decodeCrel()
418 Content, in decodeCrel()
458 ArrayRef<uint8_t> Content = *ContentsOrErr; in android_relas() local
459 if (Content.size() < 4 || Content[0] != 'A' || Content[1] != 'P' || in android_relas()
460 Content[2] != 'S' || Content[3] != '2') in android_relas()
462 DataExtractor Data(Content, isLE(), ELFT::Is64Bits ? 8 : 4); in android_relas()
784 ArrayRef<uint8_t> Content = *ContentsOrErr; in decodeBBAddrMapImpl() local
803 Content = DecompressedContentRef; in decodeBBAddrMapImpl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp183 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/dialog/samples/copifuncs/
H A Difpatch71 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;

12345678910