Home
last modified time | relevance | path

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

/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/perfetto/
DArgs.kt59 val keyTokens = key.split(".") in add() constant
61 add(keyTokens, 0, parsedValue) in add()
64 private fun add(keyTokens: List<String>, currentToken: Int, value: Any) { in add()
65 if (currentToken == keyTokens.size) { in add()
75 val keyAndIndex = tryParseKeyAndIndex(keyTokens[currentToken]) in add()
77 addToChildrenMap(keyAndIndex, keyTokens, currentToken, value) in add()
81 addToChildMap(keyTokens, currentToken, value) in add()
86 keyTokens: List<String>, in addToChildrenMap()
100 children!![key]!![index].add(keyTokens, currentToken + 1, value) in addToChildrenMap()
103 private fun addToChildMap(keyTokens: List<String>, currentToken: Int, value: Any) { in addToChildMap()
[all …]