Searched refs:m (Results 1 – 11 of 11) sorted by relevance
68 Matcher m = pid_pattern.matcher(output); in startCollecting() local69 if (m.find()) { in startCollecting()70 mUtilPid = Integer.parseInt(m.group(1)); in startCollecting()121 Matcher m; in processMetricsFromLogFile() local123 m = r.matcher(line); in processMetricsFromLogFile()124 if (m.find()) { in processMetricsFromLogFile()125 Log.i(LOG_TAG, m.group(1) + "=" + m.group(2)); in processMetricsFromLogFile()126 metrics.put(m.group(1), Long.parseLong(m.group(2))); in processMetricsFromLogFile()
65 Matcher m = k.failurePattern.matcher(dropboxSnippet); in findMatchedKnownFailure() local66 if (m.find()) { in findMatchedKnownFailure()
69 Matcher m = k.failurePattern.matcher(dropboxSnippet); in findMatchedKnownFailure() local70 if (m.find()) { in findMatchedKnownFailure()
88 Map<String, Integer> m = new HashMap<>(); in initListener()89 m.put(TEST_METRIC_KEY, testMetricValue); in initListener()90 return m; in initListener()210 Matcher m = p.matcher(lines.get(i)); in testRun() local211 assertTrue(m.matches()); in testRun()212 long timestamp = Long.parseLong(m.group("timestamp")); in testRun()215 Integer value = Integer.valueOf(m.group("value")); in testRun()
177 Matcher m = p.matcher(res); in getCurrentVolumeLevel() local178 if (m.matches()) { in getCurrentVolumeLevel()183 return Integer.parseInt(m.group(4)); in getCurrentVolumeLevel()
195 for (Method m : cls.getMethods()) { in getMethodsWithName()196 if (name.equals(m.getName())) { in getMethodsWithName()197 methodList.add(m); in getMethodsWithName()
73 for (IModuleResult m : mModuleResults.values()) { in countResults()74 total += m.countResults(result); in countResults()
44 "echo \"\033[0;31mFailed to parse profile $$file. See above for errors.\033[0m\" " +
481 Matcher m = p.matcher(meminfo); in parseMeminfoLine() local482 if (m.find()) { in parseMeminfoLine()483 return Integer.parseInt(m.group(1)); in parseMeminfoLine()