Home
last modified time | relevance | path

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

123

/system/extras/perf2cfg/
Dpylintrc14 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/
Ddiagnostics.cpp99 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 …]
Dparser.cpp59 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()
Daidl_typenames.cpp124 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()
Dcheck_valid.h25 bool CheckValid(const AidlDocument& doc, const Options& options);
Dcheck_valid.cpp72 bool CheckValid(const AidlDocument& doc, const Options& options) { in CheckValid() argument
168 VisitTopDown(v, doc); in CheckValid()
Dpreprocess.cpp141 const auto& doc = typenames.MainDocument(); in Preprocess() local
142 for (const auto& t : doc.DefinedTypes()) { in Preprocess()
Daidl_dumpapi.cpp275 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()
Ddiagnostics.h65 bool Diagnose(const AidlDocument& doc, const DiagnosticMapping& mapping);
Daidl.cpp308 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/
Dmetadata-validate29 doc=$1
31 xmllint --noout --schema $schema $doc || exit 1
32 python3 $thisdir/metadata_validate.py $doc || exit 1
/system/chre/
DREADME.md22 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 …]
Dnavbar.md2 * [Framework Docs](/doc/framework_overview.md)
3 * [Nanoapp Docs](/doc/nanoapp_overview.md)
/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/extras/simpleperf/scripts/
DCONTRIBUTING.md11 New scripts should have documentation in `../doc/scripts_reference.md`.
/system/keymint/wire/fuzz/
DCargo.toml25 doc = false
/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/keymint/common/fuzz/
DCargo.toml26 doc = false
/system/extras/simpleperf/
DAndroid.mk25 doc \
/system/extras/simpleperf/demo/JavaApi/app/
Dbuild.gradle8 …// https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#prepa…
/system/apex/apexer/
Dapexer.py443 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/
DIWrongParam.hal21 * This doc comment will have the wrong @param value
DINoReturn.hal21 * This doc comment will not have anything follow the @return
DIWrongReturn.hal21 * This doc comment will have the wrong @return value
/system/extras/simpleperf/demo/CppApi/app/
Dbuild.gradle8 …// (https://android.googlesource.com/platform/system/extras/+/master/simpleperf/doc/README.md#why-…

123