/system/tools/aidl/ |
D | generate_cpp_unittest.cpp | 1558 void Compare(Document* doc, const char* expected) { in Compare() argument 1560 doc->Write(CodeWriter::ForString(&output).get()); in Compare() 1589 unique_ptr<Document> doc = internals::BuildClientHeader(typenames_, *interface, options_); in TEST_F() local 1590 Compare(doc.get(), kExpectedComplexTypeClientHeaderOutput); in TEST_F() 1596 unique_ptr<Document> doc = internals::BuildClientSource(typenames_, *interface, options_); in TEST_F() local 1597 Compare(doc.get(), kExpectedComplexTypeClientSourceOutput); in TEST_F() 1603 unique_ptr<Document> doc = internals::BuildServerHeader(typenames_, *interface, options_); in TEST_F() local 1604 Compare(doc.get(), kExpectedComplexTypeServerHeaderOutput); in TEST_F() 1610 unique_ptr<Document> doc = internals::BuildServerSource(typenames_, *interface, options_); in TEST_F() local 1611 Compare(doc.get(), kExpectedComplexTypeServerSourceOutput); in TEST_F() [all …]
|
D | aidl_typenames.cpp | 118 bool AidlTypenames::AddDocument(std::unique_ptr<AidlDocument> doc) { in AddDocument() argument 119 for (const auto& type : doc->DefinedTypes()) { in AddDocument() 127 documents_.push_back(std::move(doc)); in AddDocument()
|
D | aidl_typenames.h | 56 bool AddDocument(std::unique_ptr<AidlDocument> doc);
|
/system/media/camera/docs/ |
D | metadata-validate | 29 doc=$1 31 xmllint --noout --schema $schema $doc || exit 1 32 python $thisdir/metadata_validate.py $doc || exit 1
|
/system/tools/hidl/test/format_test/1.0/ |
D | IFoo.hal | 20 * This is a doc comment. 34 * This doc comment should show up 51 * Some doc comment which will be emitted 75 * This is a doc comment.
|
/system/apex/apexer/ |
D | apexer.py | 395 doc = minidom.parse(android_manifest) 396 manifest = parse_manifest(doc) 403 application = doc.createElement('application') 406 manifest.insertBefore(doc.createTextNode(indent), first) 416 ul = doc.createElement('meta-data') 419 application.insertBefore(doc.createTextNode(indent), last) 425 application.appendChild(doc.createTextNode(indent)) 428 write_xml(temp, doc)
|
/system/core/fastboot/fuzzy_fastboot/ |
D | extensions.cpp | 277 tinyxml2::XMLDocument doc; in ParseXml() local 278 if (doc.LoadFile(file.c_str())) { in ParseXml() 279 printf("Failed to open/parse XML file '%s'\nXMLError: %s\n", file.c_str(), doc.ErrorStr()); in ParseXml() 283 tinyxml2::XMLConstHandle handle(&doc); in ParseXml()
|
/system/extras/simpleperf/demo/JavaApi/app/ |
D | build.gradle | 8 …// https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#prepa…
|
/system/tools/hidl/lint/test/interfaces/doc_comments/1.0/ |
D | IReturnSpace.hal | 21 * This doc comment will have a space follow the @return
|
D | INoParam.hal | 21 * This doc comment will not have anything follow the @param
|
D | IWrongReturn.hal | 21 * This doc comment will have the wrong @return value
|
D | INoReturn.hal | 21 * This doc comment will not have anything follow the @return
|
D | IWrongParam.hal | 21 * This doc comment will have the wrong @param value
|
D | IRevParam.hal | 21 * This doc comment will be correct
|
D | IDoubleReturn.hal | 21 * This doc comment will be correct
|
D | ISwitched.hal | 21 * This doc comment will be correct
|
D | ICorrect.hal | 21 * This doc comment will be correct
|
D | IParamAfterReturn.hal | 21 * This doc comment will be correct
|
D | IRevReturn.hal | 21 * This doc comment will be correct
|
D | IDoubleParam.hal | 21 * This doc comment will be correct
|
/system/extras/simpleperf/demo/CppApi/app/ |
D | build.gradle | 8 …// (https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#why-…
|
/system/tools/hidl/test/error_test/line_number_doc_comments/1.0/ |
D | IFoo.hal | 19 * This is a doc comment
|
/system/extras/simpleperf/ |
D | Android.mk | 28 $(call all-named-files-under,*,doc) \
|
D | README.md | 4 There is also [user documentation](doc/README.md).
|
/system/libvintf/ |
D | parse_xml.cpp | 48 DocType *doc = new tinyxml2::XMLDocument(); in createDocument() local 49 if (doc->Parse(xml.c_str()) == tinyxml2::XML_SUCCESS) { in createDocument() 50 return doc; in createDocument() 52 delete doc; in createDocument() 160 DocType *doc = createDocument(); in serialize() local 161 appendChild(doc, serialize(o, doc, flags)); in serialize() 162 std::string s = printDocument(doc); in serialize() 163 deleteDocument(doc); in serialize() 184 auto doc = createDocument(xml); in operator ()() local 185 if (doc == nullptr) { in operator ()() [all …]
|