Home | History | Annotate | Download | only in util

Lines Matching refs:id

24      * Creates a unique id from the given ABI and name.
34 * @return the abi portion of the test id.
37 public static String parseAbi(String id) {
38 return parseId(id)[0];
42 * Parses a unique id into the ABI and name.
43 * @param id The id to parse.
46 public static String[] parseId(String id) {
47 if (id == null || !id.contains(" ")) {
50 return id.split(" ");
54 * @return the test name portion of the test id.
57 public static String parseTestName(String id) {
58 return parseId(id)[1];