Searched defs:doc (Results 1 - 4 of 4) sorted by relevance

/system/tools/aidl/
H A Dgenerate_cpp_unittest.cpp748 void Compare(Document* doc, const char* expected) { argument
752 doc->Write(cw.get());
781 unique_ptr<Document> doc = internals::BuildClientHeader(types_, *interface); local
782 Compare(doc.get(), kExpectedComplexTypeClientHeaderOutput);
788 unique_ptr<Document> doc = internals::BuildClientSource(types_, *interface); local
789 Compare(doc.get(), kExpectedComplexTypeClientSourceOutput);
795 unique_ptr<Document> doc = internals::BuildServerHeader(types_, *interface); local
796 Compare(doc.get(), kExpectedComplexTypeServerHeaderOutput);
802 unique_ptr<Document> doc = internals::BuildServerSource(types_, *interface); local
803 Compare(doc
809 unique_ptr<Document> doc = internals::BuildInterfaceHeader(types_, *interface); local
816 unique_ptr<Document> doc = internals::BuildInterfaceSource(types_, *interface); local
[all...]
H A Daidl.cpp136 bool check_filenames(const std::string& filename, const AidlDocument* doc) { argument
137 if (!doc)
140 const AidlInterface* interface = doc->GetInterface();
149 for (const auto& item : doc->GetParcelables()) {
158 const AidlDocument* doc,
162 const AidlInterface* interface = doc->GetInterface();
167 for (const auto& item : doc->GetParcelables()) {
527 AidlParcelable doc(new AidlQualifiedName(class_name, ""),
529 types->AddParcelableType(doc, filename);
532 AidlInterface doc(class_nam
157 gather_types(const std::string& filename, const AidlDocument* doc, TypeNamespace* types) argument
[all...]
H A Daidl_language.h399 void SetDocument(AidlDocument* doc) { document_.reset(doc); }; argument
/system/libvintf/
H A Dparse_xml.cpp45 DocType *doc = new tinyxml2::XMLDocument(); local
46 if (doc->Parse(xml.c_str()) == tinyxml2::XML_NO_ERROR) {
47 return doc;
49 delete doc;
153 DocType *doc = createDocument(); local
154 appendChild(doc, serialize(o, doc));
155 std::string s = printDocument(doc);
156 deleteDocument(doc);
166 DocType *doc local
[all...]

Completed in 146 milliseconds