Searched defs:Doc (Results 1 - 10 of 10) sorted by relevance

/external/clang/unittests/Tooling/
H A DReplacementsYamlTest.cpp22 TranslationUnitReplacements Doc; local
24 Doc.MainSourceFile = "/path/to/source.cpp";
25 Doc.Context = "some context";
26 Doc.Replacements
28 Doc.Replacements
35 YAML << Doc; local
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfJavascriptDictionary_autogen.cpp75 SkPdfArray* SkPdfJavascriptDictionary::Doc(SkPdfNativeDoc* doc) { function in class:SkPdfJavascriptDictionary
76 SkPdfNativeObject* ret = get("Doc", "");
84 return get("Doc", "") != NULL;
/external/clang/include/clang/Tooling/
H A DReplacementsYaml.h67 clang::tooling::TranslationUnitReplacements &Doc) {
68 Io.mapRequired("MainSourceFile", Doc.MainSourceFile);
69 Io.mapOptional("Context", Doc.Context, std::string());
70 Io.mapRequired("Replacements", Doc.Replacements);
66 mapping(IO &Io, clang::tooling::TranslationUnitReplacements &Doc) argument
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfJavascriptDictionary_autogen.cpp75 SkPdfArray* SkPdfJavascriptDictionary::Doc(SkPdfNativeDoc* doc) { function in class:SkPdfJavascriptDictionary
76 SkPdfNativeObject* ret = get("Doc", "");
84 return get("Doc", "") != NULL;
/external/llvm/tools/yaml2obj/
H A Dyaml2coff.cpp331 COFFYAML::Object Doc; local
332 YIn >> Doc; local
338 COFFParser CP(Doc);
H A Dyaml2elf.cpp117 const ELFYAML::Object &Doc; member in class:__anon26428::ELFState
143 unsigned getDotSymTabSecNo() const { return Doc.Sections.size() + 1; }
144 unsigned getDotStrTabSecNo() const { return Doc.Sections.size() + 2; }
145 unsigned getDotShStrTabSecNo() const { return Doc.Sections.size() + 3; }
146 unsigned getSectionCount() const { return Doc.Sections.size() + 4; }
148 ELFState(const ELFYAML::Object &D) : Doc(D) {}
151 static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc);
167 Header.e_ident[EI_OSABI] = Doc.Header.OSABI;
169 Header.e_type = Doc.Header.Type;
170 Header.e_machine = Doc
407 writeELF(raw_ostream &OS, const ELFYAML::Object &Doc) argument
463 is64Bit(const ELFYAML::Object &Doc) argument
467 isLittleEndian(const ELFYAML::Object &Doc) argument
472 ELFYAML::Object Doc; local
473 YIn >> Doc; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dexterns.js246 var Doc = function() { } class
247 Doc.prototype = {
258 /** @type {!Doc} */
/external/llvm/include/llvm/Support/
H A DYAMLParser.h158 std::unique_ptr<Document> &Doc; member in class:llvm::yaml::Node
521 document_iterator() : Doc(nullptr) {}
522 document_iterator(std::unique_ptr<Document> &D) : Doc(&D) {}
528 return Doc == Other.Doc;
533 assert(Doc && "incrementing iterator past the end.");
534 if (!(*Doc)->skip()) {
535 Doc->reset(nullptr);
537 Stream &S = (*Doc)->stream;
538 Doc
550 std::unique_ptr<Document> *Doc; member in class:llvm::yaml::document_iterator
[all...]
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp2678 static void WriteDocumentation(const DocumentationData &Doc, argument
2684 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(*Doc.Attribute);
2687 std::string Heading = Doc.Documentation->getValueAsString("Heading");
2709 PrintFatalError(Doc.Attribute->getLoc(),
2753 PrintFatalError(Doc.Attribute->getLoc(),
2775 if (!Doc.Documentation->isValueUnset("Deprecated")) {
2778 const Record &Deprecated = *Doc.Documentation->getValueAsDef("Deprecated");
2786 std::string ContentStr = Doc.Documentation->getValueAsString("Content");
2819 const Record &Doc = *D; local
2820 const Record *Category = Doc
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c549 xmlDocPtr Doc; local
563 Doc = xmlParseDoc((const xmlChar *) Str);
565 if (!Doc) {
572 status = xmlRelaxNGValidateDoc(ValidationCtxt, Doc);
582 xmlFreeDoc(Doc);

Completed in 246 milliseconds