Home
last modified time | relevance | path

Searched refs:doc (Results 1 – 25 of 46) sorted by relevance

12

/system/tools/aidl/
Dgenerate_cpp_unittest.cpp1558 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 …]
Daidl_typenames.cpp118 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()
Daidl_typenames.h56 bool AddDocument(std::unique_ptr<AidlDocument> doc);
/system/media/camera/docs/
Dmetadata-validate29 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/
DIFoo.hal20 * 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/
Dapexer.py395 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/
Dextensions.cpp277 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/
Dbuild.gradle8 …// https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#prepa…
/system/tools/hidl/lint/test/interfaces/doc_comments/1.0/
DIReturnSpace.hal21 * This doc comment will have a space follow the @return
DINoParam.hal21 * This doc comment will not have anything follow the @param
DIWrongReturn.hal21 * This doc comment will have the wrong @return value
DINoReturn.hal21 * This doc comment will not have anything follow the @return
DIWrongParam.hal21 * This doc comment will have the wrong @param value
DIRevParam.hal21 * This doc comment will be correct
DIDoubleReturn.hal21 * This doc comment will be correct
DISwitched.hal21 * This doc comment will be correct
DICorrect.hal21 * This doc comment will be correct
DIParamAfterReturn.hal21 * This doc comment will be correct
DIRevReturn.hal21 * This doc comment will be correct
DIDoubleParam.hal21 * This doc comment will be correct
/system/extras/simpleperf/demo/CppApi/app/
Dbuild.gradle8 …// (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/
DIFoo.hal19 * This is a doc comment
/system/extras/simpleperf/
DAndroid.mk28 $(call all-named-files-under,*,doc) \
DREADME.md4 There is also [user documentation](doc/README.md).
/system/libvintf/
Dparse_xml.cpp48 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 …]

12