/system/extras/perf2cfg/ |
D | pylintrc | 14 accept-no-param-doc=no 15 accept-no-raise-doc=no 16 accept-no-return-doc=no 17 accept-no-yields-doc=no
|
/system/tools/aidl/ |
D | diagnostics.cpp | 99 void Check(const AidlDocument& doc) { in Check() argument 121 top_down(doc); in Check() 265 void Visit(const AidlDocument& doc) override { in Visit() 267 for (const auto& type : doc.DefinedTypes()) { in Visit() 276 for (const auto& import : doc.Imports()) { in Visit() 278 diag.Report(doc.GetLocation(), DiagnosticID::unique_import) in Visit() 283 diag.Report(doc.GetLocation(), DiagnosticID::unique_import) in Visit() 339 bool Diagnose(const AidlDocument& doc, const DiagnosticMapping& mapping) { in Diagnose() argument 342 DiagnoseInterfaceName{diag}.Check(doc); in Diagnose() 343 DiagnoseInoutParameter{diag}.Check(doc); in Diagnose() [all …]
|
D | parser.cpp | 59 for (auto& doc : typenames.AllDocuments()) { in Parse() local 60 if (doc->GetLocation().GetFile() == clean_path) { in Parse() 61 return doc.get(); in Parse() 227 auto doc = queue_.front(); in Resolve() local 230 if (!visited_.insert(doc).second) { in Resolve() 233 VisitScopedTopDown(*doc); in Resolve()
|
D | aidl_typenames.cpp | 124 bool AidlTypenames::AddDocument(std::unique_ptr<AidlDocument> doc) { in AddDocument() argument 125 bool is_preprocessed = doc->IsPreprocessed(); in AddDocument() 172 if (!collect_types_to_add(doc->DefinedTypes())) { in AddDocument() 186 documents_.push_back(std::move(doc)); in AddDocument() 224 for (const auto& doc : AllDocuments()) { in AllDefinedTypes() local 231 *doc); in AllDefinedTypes()
|
D | check_valid.h | 25 bool CheckValid(const AidlDocument& doc, const Options& options);
|
D | check_valid.cpp | 72 bool CheckValid(const AidlDocument& doc, const Options& options) { in CheckValid() argument 168 VisitTopDown(v, doc); in CheckValid()
|
D | preprocess.cpp | 141 const auto& doc = typenames.MainDocument(); in Preprocess() local 142 for (const auto& t : doc.DefinedTypes()) { in Preprocess()
|
D | aidl_dumpapi.cpp | 275 const auto& doc = typenames.MainDocument(); in dump_api() local 277 for (const auto& type : doc.DefinedTypes()) { in dump_api() 282 DumpComments(*writer, doc.GetComments()); in dump_api()
|
D | diagnostics.h | 65 bool Diagnose(const AidlDocument& doc, const DiagnosticMapping& mapping);
|
D | aidl.cpp | 308 bool ValidateAnnotationContext(const AidlDocument& doc) { in ValidateAnnotationContext() argument 355 VisitTopDown(validator, doc); in ValidateAnnotationContext() 359 bool ValidateHeaders(Options::Language language, const AidlDocument& doc) { in ValidateHeaders() argument 389 VisitTopDown(validator, doc); in ValidateHeaders() 395 VisitTopDown(validator, doc); in ValidateHeaders() 607 for (const auto& doc : typenames->AllDocuments()) { in load_and_validate_aidl() local 608 VisitTopDown([](const AidlNode& n) { n.MarkVisited(); }, *doc); in load_and_validate_aidl()
|
/system/media/camera/docs/ |
D | metadata-validate | 29 doc=$1 31 xmllint --noout --schema $schema $doc || exit 1 32 python3 $thisdir/metadata_validate.py $doc || exit 1
|
/system/chre/ |
D | README.md | 22 documentation. Raw files can also be found in the `/doc` folder. 25 * [Framework Overview](/doc/framework_overview.md) 26 * [Porting Guide](/doc/porting_guide.md) 27 * [Build System](/doc/framework_build.md) 28 * [Debugging](/doc/framework_debugging.md) 29 * [Testing](/doc/framework_testing.md) 30 * [Vendor Extensions](/doc/vendor_extensions.md) 32 * [Nanoapp Overview](/doc/nanoapp_overview.md) 33 * [Developer Guide](/doc/nanoapp_developer_guide.md) 34 * [Interacting with Nanoapps](/doc/nanoapp_clients.md) [all …]
|
D | navbar.md | 2 * [Framework Docs](/doc/framework_overview.md) 3 * [Nanoapp Docs](/doc/nanoapp_overview.md)
|
/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/extras/simpleperf/scripts/ |
D | CONTRIBUTING.md | 11 New scripts should have documentation in `../doc/scripts_reference.md`.
|
/system/keymint/wire/fuzz/ |
D | Cargo.toml | 25 doc = false
|
/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/keymint/common/fuzz/ |
D | Cargo.toml | 26 doc = false
|
/system/extras/simpleperf/ |
D | Android.mk | 25 doc \
|
/system/extras/simpleperf/demo/JavaApi/app/ |
D | build.gradle | 8 …// https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#prepa…
|
/system/apex/apexer/ |
D | apexer.py | 443 doc = minidom.parse(android_manifest) 444 manifest = parse_manifest(doc) 451 application = doc.createElement('application') 454 manifest.insertBefore(doc.createTextNode(indent), first) 464 ul = doc.createElement('meta-data') 467 application.insertBefore(doc.createTextNode(indent), last) 473 application.appendChild(doc.createTextNode(indent)) 476 write_xml(temp, doc)
|
/system/tools/hidl/lint/test/interfaces/doc_comments/1.0/ |
D | IWrongParam.hal | 21 * This doc comment will have the wrong @param value
|
D | INoReturn.hal | 21 * This doc comment will not have anything follow the @return
|
D | IWrongReturn.hal | 21 * This doc comment will have the wrong @return value
|
/system/extras/simpleperf/demo/CppApi/app/ |
D | build.gradle | 8 …// (https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#why-…
|