Home
last modified time | relevance | path

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

/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/
DFlickerComponentName.kt112 fun unflattenFromString(str: String): FlickerComponentName { in unflattenFromString()
113 val sep = str.indexOf('/') in unflattenFromString()
114 if (sep < 0 || sep + 1 >= str.length) { in unflattenFromString()
117 val pkg = str.substring(0, sep) in unflattenFromString()
118 var cls = str.substring(sep + 1) in unflattenFromString()
/platform_testing/tests/example/mobly/
Dhello_world_test.py55 str(time.time()))
112 type=str,
114 local_parser.add_argument('--log_path', type=str, help='Test log file path.')
126 type=str,
/platform_testing/libraries/health/rules/src/android/platform/test/rule/
DDropCachesRule.java64 String str = "echo 3 > /proc/sys/vm/drop_caches && echo Success || echo Failure"; in executeDropCachesImpl() local
66 writer.write(str); in executeDropCachesImpl()
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DBackupUtils.java266 String str; in executeShellCommandAndReturnOutput() local
268 while ((str = br.readLine()) != null) { in executeShellCommandAndReturnOutput()
269 out.append(str).append("\n"); in executeShellCommandAndReturnOutput()
317 String str; in getLineString() local
319 str = reader.readLine(); in getLineString()
323 return str; in getLineString()
DReadElf.java1316 String str = new String(byteArr, strOffset, i - strOffset); in getRoStrings() local
1317 mRoStrings.add(str); in getRoStrings()
/platform_testing/libraries/collectors-helper/memory/src/com/android/helpers/
DFreeMemHelper.java234 String str = "echo 3 > /proc/sys/vm/drop_caches && echo Success || echo Failure"; in executeDropCachesImpl() local
236 writer.write(str); in executeDropCachesImpl()
/platform_testing/libraries/system-helpers/accessibility-helper/src/android/system/helpers/
DAccessibilityScannerHelper.java398 String str = result.split("\\s+")[0]; in getNumberOfSuggestions() local
399 return Integer.parseInt(str); in getNumberOfSuggestions()
/platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
DNotificationHelper.java197 static SpannableStringBuilder BOLD(CharSequence str) { in BOLD() argument
198 final SpannableStringBuilder ssb = new SpannableStringBuilder(str); in BOLD()