Home
last modified time | relevance | path

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

/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/
DBusinessLogic.java108 } catch (RuntimeException re) { in applyLogicsFor()
109 if (AssumptionViolatedException.class.isInstance(re)) { in applyLogicsFor()
110 skippedMap.put(description, re); in applyLogicsFor()
112 re.getMessage()); in applyLogicsFor()
114 failedMap.put(description, re); in applyLogicsFor()
142 RuntimeException re = exceptions.get(description); in throwAggregatedException() local
143 msg.append(String.format("\nMessage [%s]: %s", description, re.getMessage())); in throwAggregatedException()
146 re.printStackTrace(new PrintWriter(sw)); in throwAggregatedException()
DBusinessLogicExecutor.java91 RuntimeException re = new RuntimeException(t.getMessage(), t.getCause()); in executeAction()
92 re.setStackTrace(t.getStackTrace()); in executeAction()
93 throw re; in executeAction()
/platform_testing/tests/automotive/mobly_tests/media/
Dmedia_test_prev_and_next_song_metadata_validation.py16 import re
79 re.match(TIMESTAMP_MATCHER, actual_current_song_playing_time),
84 re.match(TIMESTAMP_MATCHER, actual_current_song_max_playing_time),
120 re.match(TIMESTAMP_MATCHER, actual_previous_current_song_playing_time),
125 re.match(TIMESTAMP_MATCHER, actual_previous_current_song_max_playing_time),
Dmedia_test_song_metadata_validation.py16 import re
81 re.match(TIMESTAMP_MATCHER, actual_current_song_playing_time),
86 re.match(TIMESTAMP_MATCHER, actual_current_song_max_playing_time),
/platform_testing/libraries/screenshot/
Dupdate_goldens.py23 import re
77 match_actual = re.search(ACTUAL_SCREENSHOT_FILE_LINE_PATTERN, lines)
81 match_golden = re.search(GOLDEN_PATH_LINE_PATTERN, lines)
/platform_testing/libraries/junit-rules/src/
DConditionalIgnoreRule.java54 } catch (RuntimeException re) { in apply()
55 throw re; in apply()
/platform_testing/tests/automotive/mobly_tests/utilities/
Dphone_device_utils.py16 import re
Dvideo_utils_service.py2 import re
Dmedia_utils.py16 import re
105 regex_pattern = re.compile(constants.SONG_METADATA_PATTERN)
293 if re.match(constants.FM_FREQUENCY_PATTERN, fm_frequency):
Dspectatio_utils.py16 import re
418 actual_dialing_number = re.sub(r'\D', '', str(self.get_dialing_number()))
432 actual_dialing_number = re.sub(r'\D', '', str(self.get_user_phone_number()))
/platform_testing/tests/bettertogether/betocq/
Dandroid_wifi_utils.py20 import re
29 _SAVED_WIFI_LIST_PATTERN = re.compile(
32 _SSID_PATTERN = re.compile(rb'Wifi is connected to "(?P<ssid>.*?)"')
/platform_testing/libraries/screenshot/scripts/
Ddeviceless_converter.py7 import argparse, itertools, os, re, subprocess
27 version = re.search(' version \"(\d+\.\d+).*\"', out).groups()[0]
/platform_testing/libraries/app-helpers/core/src/android/platform/helpers/
DHelperManager.java292 TestHelperException re = in wrapThrowable() local
296 return re; in wrapThrowable()
/platform_testing/libraries/rdroidtest/
DREADME.md32 (If you're testing a library or anything else which doesn't have a `main` function, you don't need
/platform_testing/libraries/motion/golden_updater/
Dwatch_local_tests.py22 import re
500 match = re.search(r"_actual_(.*?)\.png$", self.actual_image)
/platform_testing/host_runners/boot/src/com/android/boot/
DBootTimeTest.java442 } catch (RuntimeException re) { in run()
443 CLog.e(re); in run()
448 String.format("RuntimeException during successive reboots: %s", re)); in run()