Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/xml/
DDomTest.java1723 Matcher attributeMatcher = Pattern.compile(" a:standard=\"[^\"]+\"").matcher(result); in domToString() local
1724 if (attributeMatcher.find()) { in domToString()
1725 result = result.substring(0, attributeMatcher.start()) in domToString()
1726 + result.substring(attributeMatcher.end()); in domToString()
1729 + attributeMatcher.group() in domToString()