Searched refs:regExp (Results 1 – 2 of 2) sorted by relevance
129 private static Method findMethodByName(ITestNGMethod testngMethod, String regExp) { in findMethodByName() argument130 if (regExp == null) { in findMethodByName()133 int lastDot = regExp.lastIndexOf('.'); in findMethodByName()137 methodName = regExp; in findMethodByName()139 methodName = regExp.substring(lastDot + 1); in findMethodByName()140 className = regExp.substring(0, lastDot); in findMethodByName()
4626 convertColonRule: function(cssText, regExp, partReplacer) { argument4627 return cssText.replace(regExp, function(m, p1, p2, p3) {