Home
last modified time | relevance | path

Searched refs:manifest_content (Results 1 – 1 of 1) sorted by relevance

/cts/common/device-side/bedstead/testapp/tools/index/
Dindex_testapps.py65 def parse_lines(manifest_content): argument
66 return parse_line(manifest_content, 0)[1]
68 def parse_line(manifest_content, ptr, incoming_indentation = -1): argument
69 line = manifest_content[ptr]
79 while (ptr < len(manifest_content)):
80 ptr, next_child = parse_line(manifest_content, ptr, indentation_size)
124 def parse(manifest_content, file_name): argument
125 manifest_content = manifest_content.split("\\n")
128 manifest_content = [m for m in manifest_content if not "N: " in m][:-1]
130 simple_root = parse_lines(manifest_content)