Home
last modified time | relevance | path

Searched refs:doc (Results 1 – 25 of 72) 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/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/tools/aidl/
Ddiagnostics.cpp105 void Check(const AidlDocument& doc) { in Check() argument
127 top_down(doc); in Check()
292 void Visit(const AidlDocument& doc) override { in Visit()
294 for (const auto& type : doc.DefinedTypes()) { in Visit()
303 for (const auto& import : doc.Imports()) { in Visit()
305 diag.Report(doc.GetLocation(), DiagnosticID::unique_import) in Visit()
310 diag.Report(doc.GetLocation(), DiagnosticID::unique_import) in Visit()
448 bool Diagnose(const AidlDocument& doc, const DiagnosticMapping& mapping) { in Diagnose() argument
451 DiagnoseInterfaceName{diag}.Check(doc); in Diagnose()
452 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.cpp144 const auto& doc = typenames.MainDocument(); in Preprocess() local
145 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()
Daidl.cpp337 bool ValidateAnnotationContext(const AidlDocument& doc) { in ValidateAnnotationContext() argument
384 VisitTopDown(validator, doc); in ValidateAnnotationContext()
388 bool ValidateHeaders(Options::Language language, const AidlDocument& doc) { in ValidateHeaders() argument
418 VisitTopDown(validator, doc); in ValidateHeaders()
424 VisitTopDown(validator, doc); in ValidateHeaders()
430 VisitTopDown(validator, doc); in ValidateHeaders()
660 for (const auto& doc : typenames->AllDocuments()) { in load_and_validate_aidl() local
661 VisitTopDown([](const AidlNode& n) { n.MarkVisited(); }, *doc); in load_and_validate_aidl()
Ddiagnostics.h65 bool Diagnose(const AidlDocument& doc, const DiagnosticMapping& mapping);
/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/keymint/wire/fuzz/
DCargo.toml25 doc = false qkey
31 doc = false qkey
/system/apex/tools/
Dapexd_host.py157 doc = impl.createDocument(None, 'apex-info-list', None)
158 apex_info_list = doc.documentElement
181 apex_info = doc.createElement('apex-info')
188 doc.writexml(f, encoding='utf-8', addindent=' ', newl='\n')
/system/extras/simpleperf/scripts/
DCONTRIBUTING.md11 New scripts should have documentation in `../doc/scripts_reference.md`.
/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/
DAndroid.mk25 doc \
/system/keymint/common/fuzz/
DCargo.toml26 doc = false qkey
/system/keymint/ta/fuzz/
DCargo.toml26 doc = false qkey
/system/apex/apexer/
Dapexer.py433 doc = minidom.parse(android_manifest)
434 manifest = parse_manifest(doc)
441 application = doc.createElement('application')
444 manifest.insertBefore(doc.createTextNode(indent), first)
454 ul = doc.createElement('meta-data')
457 application.insertBefore(doc.createTextNode(indent), last)
463 application.appendChild(doc.createTextNode(indent))
466 write_xml(temp, doc)
/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/
DIWrongReturn.hal21 * This doc comment will have the wrong @return value
DINoReturn.hal21 * This doc comment will not have anything follow the @return

123