/platform_testing/libraries/flicker/utils/src/android/tools/traces/wm/ |
D | WindowContainerImpl.kt | 31 final override val token: String, constant in android.tools.traces.wm.WindowContainerImpl 39 override val id: Int = if (token.isEmpty()) -1 else token.toInt(16) 53 get() = "${this::class.simpleName} $token $title" 91 if (token != other.token) return false in equals() 103 result = 31 * result + token.hashCode() in hashCode() 114 get() = configurationContainer.isEmpty && title.isEmpty() && token.isEmpty()
|
D | DisplayArea.kt | 51 return "${this::class.simpleName} {$token $title} isTaskArea=$isTaskDisplayArea" in <lambda>() 62 if (token != other.token) return false in <lambda>()
|
D | Activity.kt | 59 return "${this::class.simpleName}: {$token $title} state=$state visible=$isVisible" in <lambda>() 72 if (token != other.token) return false in <lambda>()
|
D | RootWindowContainer.kt | 28 return "${this::class.simpleName}: {$token $title}" in <lambda>()
|
D | Task.kt | 53 get() = "${this::class.simpleName} $token $title $taskId" in <lambda>() 122 return "${this::class.simpleName}: {$token $title} id=$taskId bounds=$bounds" in <lambda>() 142 if (token != other.token) return false in <lambda>()
|
D | WindowToken.kt | 30 return "${this::class.simpleName}: {$token $title}" in <lambda>()
|
D | WindowContainer.kt | 26 val token: String constant
|
D | TaskFragment.kt | 62 return "${this::class.simpleName}: {$token $title} bounds=$bounds" in <lambda>()
|
D | WindowState.kt | 72 "{$token $title${getWindowTypeSuffix(windowType)}} " + in <lambda>()
|
D | WindowManagerState.kt | 320 windowStates.firstOrNull { it.token == appToken } in <lambda>()
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/perfetto/ |
D | Args.kt | 129 private fun tryParseKeyAndIndex(token: String): Pair<String, Int>? { in tryParseKeyAndIndex() 130 require(token.length > 0) { "Key token cannot have length 0" } in tryParseKeyAndIndex() 132 if (token[token.length - 1] != ']') { in tryParseKeyAndIndex() 136 val indexOpeningBracket = token.indexOf('[') in tryParseKeyAndIndex() 141 val key = token.substring(0, indexOpeningBracket) in tryParseKeyAndIndex() 142 val index = token.substring(indexOpeningBracket + 1, token.length - 1).toInt() in tryParseKeyAndIndex()
|
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/ |
D | BackupUtils.java | 105 public void restoreAndAssertSuccess(String token, String packageName) throws IOException { in restoreAndAssertSuccess() argument 106 assertRestoreIsSuccessful(restore(token, packageName)); in restoreAndAssertSuccess() 110 public void restoreAndAssertSuccessForUser(String token, String packageName, int userId) in restoreAndAssertSuccessForUser() argument 112 assertRestoreIsSuccessful(restoreForUser(token, packageName, userId)); in restoreAndAssertSuccessForUser() 115 public void restoreSync(String token, String packageName) throws IOException { in restoreSync() argument 116 StreamUtil.drainAndClose(new InputStreamReader(restore(token, packageName))); in restoreSync() 119 public String getRestoreOutput(String token, String packageName) throws IOException { in getRestoreOutput() argument 120 return StreamUtil.readInputStream(restore(token, packageName)); in getRestoreOutput() 233 private InputStream restore(String token, String packageName) throws IOException { in restore() argument 234 return executeShellCommand(String.format("bmgr restore %s %s", token, packageName)); in restore() [all …]
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/component/ |
D | ExactComponentIdMatcher.kt | 37 windows.any { it.token == windowId.toString(16) } in windowMatchesAnyOf() 44 activities.any { it.token == windowId.toString(16) } in activityMatchesAnyOf()
|
D | FullComponentIdMatcher.kt | 39 it.token == windowId.toString(16) -> true in windowMatchesAnyOf() 50 activities.any { it.token == windowId.toString(16) } in activityMatchesAnyOf()
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/src/android/device/collectors/ |
D | UiInteractionFrameInfoListener.java | 96 for (String token : tokens) { 98 result = Double.max(result, Double.parseDouble(token)); 100 result += Double.parseDouble(token);
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/inputmethod/ |
D | InputMethodServiceEntry.kt | 37 val token: String, constant in android.tools.traces.inputmethod.InputMethodServiceEntry 75 result = 31 * result + token.hashCode() in hashCode()
|
/platform_testing/libraries/motion/golden_updater/ |
D | watch_local_tests.py | 164 token = self.headers.get(GOLDEN_ACCESS_TOKEN_HEADER) 165 if not token or token != secret_token: 582 token = token_file.readline() 583 return token 585 token = secrets.token_hex(32) 589 token_file.write(token) 594 token, GOLDEN_ACCESS_TOKEN_LOCATION 597 return token
|
/platform_testing/libraries/automotive-helpers/settings-app-helper/src/android/platform/helpers/ |
D | SettingsAppInfoHelperImpl.java | 522 for (String token : appTally.split(" ")) { in parseAppNumbers() 523 if (intPattern.matcher(token).matches()) { in parseAppNumbers() 525 tallies.add(Integer.parseInt(token)); in parseAppNumbers()
|
/platform_testing/libraries/flicker/utils/test/src/android/tools/utils/ |
D | Utils.kt | 238 token = "",
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/wm/ |
D | WindowManagerStateBuilder.kt | 498 token = proto.identifier?.hashCode?.toString(16) ?: "", in <lambda>()
|