| /third_party/rust/crates/serde/serde/src/private/ |
| H A D | de.rs | 14 Content, ContentDeserializer, ContentRefDeserializer, EnumDeserializer, 223 pub enum Content<'de> { enum 246 Some(Box<Content<'de>>), 249 Newtype(Box<Content<'de>>), 250 Seq(Vec<Content<'de>>), 251 Map(Vec<(Content<'de>, Content<'de>)>), 254 impl<'de> Content<'de> { impls 257 Content::Str(x) => Some(x), in as_str() 258 Content in as_str() [all...] |
| H A D | ser.rs | 7 Content, ContentSerializer, SerializeStructVariantAsMapValue, SerializeTupleVariantAsMapValue, 347 fields: Vec<Content>, 379 .serialize_value(&Content::TupleStruct(self.name, self.fields))); in end() 387 fields: Vec<(&'static str, Content)>, 423 .serialize_value(&Content::Struct(self.name, self.fields))); in end() 428 pub enum Content { enum 449 Some(Box<Content>), 454 NewtypeStruct(&'static str, Box<Content>), 455 NewtypeVariant(&'static str, u32, &'static str, Box<Content>), 457 Seq(Vec<Content>), [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndexDiscovery.cpp | 68 static void handleMethodOverloadList(ArrayRef<uint8_t> Content, in handleMethodOverloadList() argument 72 while (!Content.empty()) { in handleMethodOverloadList() 84 uint16_t Attrs = support::endian::read16le(Content.data()); in handleMethodOverloadList() 90 Content = Content.drop_front(Len); in handleMethodOverloadList() 208 static void handleFieldList(ArrayRef<uint8_t> Content, in handleFieldList() argument 212 while (!Content.empty()) { in handleFieldList() 214 static_cast<TypeLeafKind>(support::endian::read16le(Content.data())); in handleFieldList() 217 ThisLen = handleBaseClass(Content, Offset, Refs); in handleFieldList() 220 ThisLen = handleEnumerator(Content, Offse in handleFieldList() 264 handlePointer(ArrayRef<uint8_t> Content, SmallVectorImpl<TiReference> &Refs) handlePointer() argument 273 discoverTypeIndices(ArrayRef<uint8_t> Content, TypeLeafKind Kind, SmallVectorImpl<TiReference> &Refs) discoverTypeIndices() argument 359 discoverTypeIndices(ArrayRef<uint8_t> Content, SymbolKind Kind, SmallVectorImpl<TiReference> &Refs) discoverTypeIndices() argument [all...] |
| /third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
| H A D | ICUTagletAdapter.java | 14 import com.sun.tools.doclets.internal.toolkit.Content; 30 public Content getTagletOutput(Tag tag, TagletWriter writer) in getTagletOutput() 37 Content out = writer.getOutputInstance(); in getTagletOutput() 43 public Content getTagletOutput(Doc holder, TagletWriter writer) in getTagletOutput() 46 Content out = writer.getOutputInstance(); in getTagletOutput()
|
| /third_party/libexif/contrib/c++/ |
| H A D | exif.hxx | 360 struct Content struct 364 Content() in Content() function 368 Content(Content const &other) in Content() function 375 Content(ExifContent *content) in Content() function 381 ~Content() in ~Content() 386 Content &operator=(Content const &other) in operator =() 401 "Exif::Content: IFD does not contain given tag"); in operator []() 412 "Exif::Content in operator []() [all...] |
| H A D | exif_module.cxx | 189 struct PythonContent : public Exif::Content 194 PythonContent(Exif::Content const &other) : Exif::Content(other) {} in PythonContent() 198 // TODO: use Exif::Content::entry() functions in entry() 267 return Exif::Content(data_->ifd[index]); in ifdContent() 277 return Exif::Content(data_->ifd[index]); in ifdContent() 279 return Exif::Content(data_->ifd[size()+index]); in ifdContent() 287 return Exif::Content(); // never reached in ifdContent() 347 BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(contentdumps, Exif::Content::dump, 0, 1) 508 class_<PythonContent>("Content") in BOOST_PYTHON_MODULE() [all...] |
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
| H A D | RuntimeDyldChecker.h | 81 MemoryRegionInfo(StringRef Content, JITTargetAddress TargetAddress) in MemoryRegionInfo() argument 82 : ContentPtr(Content.data()), Size(Content.size()), in MemoryRegionInfo() 96 void setContent(StringRef Content) { in setContent() argument 97 assert(!ContentPtr && !Size && "Content/zero-fill already set"); in setContent() 98 ContentPtr = Content.data(); in setContent() 99 Size = Content.size(); in setContent() 104 assert(!ContentPtr && !this->Size && "Content/zero-fill already set"); in setZeroFill()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
| H A D | ELFYAML.cpp | 1033 IO.mapOptional("Content", Section.Content); in sectionMapping() 1038 IO.mapOptional("Content", Section.Content); in sectionMapping() 1045 IO.mapOptional("Content", Section.Content); in sectionMapping() 1052 IO.mapOptional("Content", Section.Content); in sectionMapping() 1060 IO.mapOptional("Content", Section.Content); in sectionMapping() [all...] |
| H A D | ELFEmitter.cpp | 512 const Optional<yaml::BinaryRef> &Content, in writeContent() 515 if (Content) { in writeContent() 516 Content->writeAsBinary(OS); in writeContent() 517 ContentSize = Content->binary_size(); in writeContent() 575 if (RawSec && (RawSec->Content || RawSec->Size)) { in initSymtabSectionHeader() 580 if (RawSec->Content) in initSymtabSectionHeader() 581 reportError("cannot specify both `Content` and " + Property + in initSymtabSectionHeader() 631 if (RawSec && (RawSec->Content || RawSec->Size)) { in initSymtabSectionHeader() 633 SHeader.sh_size = writeContent(OS, RawSec->Content, RawSec->Size); in initSymtabSectionHeader() 657 if (RawSec && (RawSec->Content || RawSe in initStrtabSectionHeader() 511 writeContent(raw_ostream &OS, const Optional<yaml::BinaryRef> &Content, const Optional<llvm::yaml::Hex64> &Size) writeContent() argument [all...] |
| H A D | MinidumpEmitter.cpp | 139 Range.Entry.Memory = layout(File, Range.Content); 198 Raw.Content.writeAsBinary(OS); 199 assert(Raw.Content.binary_size() <= Raw.Size); 200 OS << std::string(Raw.Size - Raw.Content.binary_size(), '\0');
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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 = {}) in RawContentStream() 153 : Stream(StreamKind::RawContent, Type), Content(Content), 154 Size(Content.size()) {} 244 BinaryRef &Content);
|
| H A D | ELFYAML.h | 219 Optional<yaml::BinaryRef> Content; member 236 Optional<yaml::BinaryRef> Content; member 244 Optional<yaml::BinaryRef> Content; member 264 Optional<yaml::BinaryRef> Content; member 274 Optional<yaml::BinaryRef> Content; member 305 Optional<yaml::BinaryRef> Content; member 331 Optional<yaml::BinaryRef> Content; member 352 Optional<yaml::BinaryRef> Content; member 368 Optional<yaml::BinaryRef> Content; member 379 Optional<yaml::BinaryRef> Content; member 406 Optional<yaml::BinaryRef> Content; global() member 446 Optional<yaml::BinaryRef> Content; global() member [all...] |
| /third_party/node/test/fixtures/wpt/FileAPI/support/ |
| H A D | send-file-form-helper.js | 254 'Content-Disposition: form-data; name="_charset_"', 258 'Content-Disposition: form-data; name="filename"', 264 `Content-Disposition: form-data; name="${escapeString(asName)}"`, 268 `Content-Disposition: form-data; name="file"; ` + 270 'Content-Type: text/plain',
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | PDBFileBuilder.cpp | 114 Desc.Content = std::move(Buffer); in addInjectedSource() 177 CRC.update(arrayRefFromStringRef(IS.Content->getBuffer())); in finalizeMsfLayout() 182 Entry.FileSize = IS.Content->getBufferSize(); in finalizeMsfLayout() 202 SN = allocateNamedStream(IS.StreamName, IS.Content->getBufferSize()); in finalizeMsfLayout() 258 assert(SourceWriter.bytesRemaining() == IS.Content->getBufferSize()); in commitInjectedSources() 260 arrayRefFromStringRef(IS.Content->getBuffer()))); in commitInjectedSources()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/ |
| H A D | JITLink.h | 155 Block(Section &Parent, StringRef Content, JITTargetAddress Address, 157 : Addressable(Address, true), Parent(Parent), Data(Content.data()), 158 Size(Content.size()) { 199 void setContent(StringRef Content) { 200 Data = Content.data(); 201 Size = Content.size(); 803 Block &createContentBlock(Section &Parent, StringRef Content, in createContentBlock() argument 806 return createBlock(Parent, Content, Address, Alignment, AlignmentOffset); in createContentBlock() 883 Symbol &addAnonymousSymbol(Block &Content, JITTargetAddress Offset, in addAnonymousSymbol() argument 886 auto &Sym = Symbol::constructAnonDef(Allocator.Allocate<Symbol>(), Content, in addAnonymousSymbol() 893 addDefinedSymbol(Block &Content, JITTargetAddress Offset, StringRef Name, JITTargetAddress Size, Linkage L, Scope S, bool IsCallable, bool IsLive) addDefinedSymbol() argument [all...] |
| /third_party/rust/crates/cxx/gen/src/ |
| H A D | ifndef.rs | 2 use crate::gen::out::Content; 4 pub(super) fn write(out: &mut Content, needed: bool, guard: &str) {
|
| H A D | out.rs | 16 content: RefCell<Content<'a>>, 20 pub struct Content<'a> { structure names 42 content: RefCell::new(Content::new()), in new() 97 impl<'a> Write for Content<'a> { 104 impl<'a> PartialEq for Content<'a> { 110 impl<'a> Content<'a> { impls 112 Content::default() in new()
|
| /third_party/rust/crates/cxx/gen/cmd/src/gen/ |
| H A D | ifndef.rs | 2 use crate::gen::out::Content; 4 pub(super) fn write(out: &mut Content, needed: bool, guard: &str) {
|
| H A D | out.rs | 16 content: RefCell<Content<'a>>, 20 pub struct Content<'a> { structure names 42 content: RefCell::new(Content::new()), in new() 97 impl<'a> Write for Content<'a> { 104 impl<'a> PartialEq for Content<'a> { 110 impl<'a> Content<'a> { impls 112 Content::default() in new()
|
| /third_party/rust/crates/cxx/gen/build/src/gen/ |
| H A D | ifndef.rs | 2 use crate::gen::out::Content; 4 pub(super) fn write(out: &mut Content, needed: bool, guard: &str) {
|
| /third_party/rust/crates/cxx/gen/lib/src/gen/ |
| H A D | ifndef.rs | 2 use crate::gen::out::Content; 4 pub(super) fn write(out: &mut Content, needed: bool, guard: &str) {
|
| H A D | out.rs | 16 content: RefCell<Content<'a>>, 20 pub struct Content<'a> { structure names 42 content: RefCell::new(Content::new()), in new() 97 impl<'a> Write for Content<'a> { 104 impl<'a> PartialEq for Content<'a> { 110 impl<'a> Content<'a> { impls 112 Content::default() in new()
|
| /third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/ |
| H A D | span.go | 30 Content []byte 65 chr, err := span.ToUTF16Column(p, m.Content) 106 return span.FromUTF16Column(lineStart, int(p.Character)+1, m.Content)
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
| H A D | span.go | 30 Content []byte 65 chr, err := span.ToUTF16Column(p, m.Content) 106 return span.FromUTF16Column(lineStart, int(p.Character)+1, m.Content)
|
| /third_party/spirv-tools/utils/vscode/src/lsp/protocol/ |
| H A D | span.go | 30 Content []byte 65 chr, err := span.ToUTF16Column(p, m.Content) 106 return span.FromUTF16Column(lineStart, int(p.Character)+1, m.Content)
|