Searched refs:TaggedPathDict (Results 1 – 2 of 2) sorted by relevance
/development/vndk/tools/definition-tool/tests/ |
D | test_tagged_dict.py | 8 from vndk_definition_tool import TaggedDict, TaggedPathDict, TaggedLibDict, \ 100 tagged_paths = TaggedPathDict() 116 tagged_paths = TaggedPathDict(['current', '27', '28']) 138 TaggedPathDict().load_from_csv(StringIO('')) 145 d = TaggedPathDict() 150 d = TaggedPathDict() 157 d = TaggedPathDict() 187 d = TaggedPathDict() 193 d = TaggedPathDict.create_from_csv(StringIO(_TEST_DATA)) 202 d = TaggedPathDict.create_from_csv_path(f.name) [all …]
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 1350 class TaggedPathDict(TaggedDict): class 1375 d = TaggedPathDict(vndk_lib_dirs) 1383 return TaggedPathDict.create_from_csv(fp, vndk_lib_dirs) 1407 super(TaggedPathDict, self).add_regex(tag, path[7:]) 1410 super(TaggedPathDict, self).add(tag, path) 2182 self.tagged_paths = TaggedPathDict.create_from_csv_path( 3325 tagged_paths = TaggedPathDict.create_from_csv_path( 4088 tagged_paths = TaggedPathDict.create_from_csv_path( 4151 for tag in TaggedPathDict.TAGS: 4155 vendor_visible = TaggedPathDict.is_tag_visible('vnd_only', tag)
|