/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | yaml2obj.cpp | 28 yaml::YamlObjectFile Doc; in convertYAML() local 29 YIn >> Doc; in convertYAML() 35 if (Doc.Elf) in convertYAML() 36 return yaml2elf(*Doc.Elf, Out, ErrHandler); in convertYAML() 37 if (Doc.Coff) in convertYAML() 38 return yaml2coff(*Doc.Coff, Out, ErrHandler); in convertYAML() 39 if (Doc.MachO || Doc.FatMachO) in convertYAML() 40 return yaml2macho(Doc, Out, ErrHandler); in convertYAML() 41 if (Doc.Minidump) in convertYAML() 42 return yaml2minidump(*Doc.Minidump, Out, ErrHandler); in convertYAML() [all …]
|
D | ELFEmitter.cpp | 129 ELFYAML::Object &Doc; member in __anon904c2d040111::ELFState 219 static bool writeELF(raw_ostream &OS, ELFYAML::Object &Doc, 236 : Doc(D), ErrHandler(EH) { in ELFState() 237 std::vector<ELFYAML::Section *> Sections = Doc.getSections(); in ELFState() 245 Doc.Chunks.insert( in ELFState() 246 Doc.Chunks.begin(), in ELFState() 251 if (Doc.Symbols) in ELFState() 255 if (Doc.DynamicSymbols) in ELFState() 267 Doc.Chunks.push_back(std::move(Sec)); in ELFState() 282 Header.e_ident[EI_DATA] = Doc.Header.Data; in writeELFHeader() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | YAMLParser.h | 160 std::unique_ptr<Document> &Doc; 567 document_iterator() : Doc(nullptr) {} in document_iterator() 568 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {} in document_iterator() 574 return Doc == Other.Doc; 579 assert(Doc && "incrementing iterator past the end."); 580 if (!(*Doc)->skip()) { 581 Doc->reset(nullptr); 583 Stream &S = (*Doc)->stream; 584 Doc->reset(new Document(S)); 589 Document &operator*() { return *Doc->get(); } [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | yaml2obj.h | 49 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 50 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH); 51 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH); 52 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out, 54 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | YAMLParser.h | 175 std::unique_ptr<Document> &Doc; 582 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {} in document_iterator() 588 return Doc == Other.Doc; 595 assert(Doc && "incrementing iterator past the end."); 596 if (!(*Doc)->skip()) { 597 Doc->reset(nullptr); 599 Stream &S = (*Doc)->stream; 600 Doc->reset(new Document(S)); 605 Document &operator*() { return *Doc->get(); } 607 std::unique_ptr<Document> &operator->() { return *Doc; } [all …]
|
/third_party/rust/crates/cxx/syntax/ |
D | doc.rs | 5 pub struct Doc { struct 10 impl Doc { argument 12 Doc { in new() 38 impl ToTokens for Doc { implementation
|
D | mod.rs | 46 pub use self::doc::Doc; 83 pub doc: Doc, 98 pub doc: Doc, 111 pub doc: Doc, 140 pub doc: Doc, 151 pub doc: Doc, 196 pub doc: Doc, 219 pub doc: Doc,
|
D | attrs.rs | 5 use crate::syntax::{cfg, Derive, Doc, ForeignName}; 32 pub doc: Option<&'a mut Doc>, 55 DocAttribute::Doc(lit) => doc.push(lit), in parse() 187 Doc(LitStr), enumerator 200 Ok(DocAttribute::Doc(lit)) in parse_doc_attribute()
|
D | parse.rs | 8 attrs, error, Api, Array, Derive, Doc, Enum, EnumRepr, ExternFn, ExternType, ForeignName, Impl, 60 let mut doc = Doc::new(); in parse_struct() 131 let mut doc = Doc::new(); in parse_struct() 192 let mut doc = Doc::new(); in parse_enum() 289 let mut doc = Doc::new(); in parse_variant() 469 let mut doc = Doc::new(); in parse_extern_type() 531 let mut doc = Doc::new(); in parse_extern_fn() 627 let doc = Doc::new(); in parse_extern_fn() 857 let mut doc = Doc::new(); in parse_type_alias() 949 let mut doc = Doc::new(); in parse_extern_type_bounded() [all …]
|
/third_party/python/ |
D | .gitignore | 53 Doc/build/ 54 Doc/venv/ 55 Doc/.venv/ 56 Doc/env/ 57 Doc/.env/ 155 Doc/data/python*.abi
|
D | netlify.toml | 2 base = "Doc/" 4 publish = "Doc/build/html"
|
D | .gitattributes | 67 Doc/data/stable_abi.dat generated 68 Doc/library/token-list.inc generated
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.3.rst | 17 Fix typos in Windows ``uploadrelease.bat`` script. Fix Windows Doc build 18 issues in ``Doc/make.bat``.
|
/third_party/icu/icu4j/tools/build/ |
D | manifest.stub | 4 Specification-Title: ICU for Java Doc Tools 7 Implementation-Title: ICU for Java Doc Tools
|
/third_party/icu/icu4j/tools/build/src-pre8/com/ibm/icu/dev/tool/docs/ |
D | ICUTagletAdapter.java | 11 import com.sun.javadoc.Doc; 37 public TagletOutput getTagletOutput(Doc holder, TagletWriter writer) in getTagletOutput()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | ICUTagletAdapter.java | 11 import com.sun.javadoc.Doc; 43 public Content getTagletOutput(Doc holder, TagletWriter writer) in getTagletOutput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | YAMLParser.cpp | 1812 : Doc(D), TypeID(Type), Anchor(A), Tag(T) { in Node() 1822 Ret = Doc->getTagMap().find("!")->second; in getVerbatimTag() 1826 Ret = Doc->getTagMap().find("!!")->second; in getVerbatimTag() 1832 Doc->getTagMap().find(TagHandle); in getVerbatimTag() 1833 if (It != Doc->getTagMap().end()) in getVerbatimTag() 1863 return Doc->peekNext(); in peekNext() 1867 return Doc->getNext(); in getNext() 1871 return Doc->parseBlockNode(); in parseBlockNode() 1875 return Doc->NodeAllocator; in getAllocator() 1879 Doc->setError(Msg, Tok); in setError() [all …]
|
/third_party/protobuf/kokoro/linux/ |
D | make_test_output.py | 22 from yattag import Doc 74 doc, tag, text = Doc().tagtext()
|
/third_party/jsframework/test/ut/model/ |
D | index.ts | 31 import Doc from '../../../runtime/vdom/Document'; 50 const doc = new Doc('1', '');
|
/third_party/rust/crates/memchr/bench/data/opensubtitles/ |
D | en-tiny.txt | 2 Doc you're beginning to sound like Sherlock Holmes.
|
/third_party/rust/crates/cxx/gen/src/ |
D | nested.rs | 57 use crate::syntax::{Api, Doc, ExternType, ForeignName, Lang, Lifetimes, Pair}; 134 doc: Doc::new(), in make_api()
|
/third_party/skia/third_party/externals/expat/expat/win32/ |
D | expat.iss | 74 Flags: ignoreversion; Source: doc\*.html; DestDir: "{app}\Doc" 75 Flags: ignoreversion; Source: doc\*.css; DestDir: "{app}\Doc" 76 Flags: ignoreversion; Source: doc\*.png; DestDir: "{app}\Doc"
|
D | MANIFEST.txt | 13 <top>\Doc\ API documentation for developers.
|
/third_party/typescript/tests/baselines/reference/ |
D | quickInfoJsDocTags1.baseline | 66 "text": "Doc",
|
D | quickInfoJsDocTags.baseline | 66 "text": "Doc",
|