Searched refs:str (Results 1 – 8 of 8) sorted by relevance
112 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()
55 str(time.time()))112 type=str,114 local_parser.add_argument('--log_path', type=str, help='Test log file path.')126 type=str,
64 String str = "echo 3 > /proc/sys/vm/drop_caches && echo Success || echo Failure"; in executeDropCachesImpl() local66 writer.write(str); in executeDropCachesImpl()
266 String str; in executeShellCommandAndReturnOutput() local268 while ((str = br.readLine()) != null) { in executeShellCommandAndReturnOutput()269 out.append(str).append("\n"); in executeShellCommandAndReturnOutput()317 String str; in getLineString() local319 str = reader.readLine(); in getLineString()323 return str; in getLineString()
1316 String str = new String(byteArr, strOffset, i - strOffset); in getRoStrings() local1317 mRoStrings.add(str); in getRoStrings()
234 String str = "echo 3 > /proc/sys/vm/drop_caches && echo Success || echo Failure"; in executeDropCachesImpl() local236 writer.write(str); in executeDropCachesImpl()
398 String str = result.split("\\s+")[0]; in getNumberOfSuggestions() local399 return Integer.parseInt(str); in getNumberOfSuggestions()
197 static SpannableStringBuilder BOLD(CharSequence str) { in BOLD() argument198 final SpannableStringBuilder ssb = new SpannableStringBuilder(str); in BOLD()