Home
last modified time | relevance | path

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

/external/icu/icu4c/source/i18n/
Duregex.cpp323 uregex_pattern(const URegularExpression *regexp2, in uregex_pattern() argument
326 RegularExpression *regexp = (RegularExpression*)regexp2; in uregex_pattern()
344 uregex_patternUText(const URegularExpression *regexp2, in uregex_patternUText() argument
346 RegularExpression *regexp = (RegularExpression*)regexp2; in uregex_patternUText()
357 uregex_flags(const URegularExpression *regexp2, UErrorCode *status) { in uregex_flags() argument
358 RegularExpression *regexp = (RegularExpression*)regexp2; in uregex_flags()
373 uregex_setText(URegularExpression *regexp2, in uregex_setText() argument
377 RegularExpression *regexp = (RegularExpression*)regexp2; in uregex_setText()
407 uregex_setUText(URegularExpression *regexp2, in uregex_setUText() argument
410 RegularExpression *regexp = (RegularExpression*)regexp2; in uregex_setUText()
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
DResolverTest.java65 Pattern regexp2 = Pattern.compile("x\\d_y\\d"); in testAddImplicitResolver2() local
67 yaml.addImplicitResolver(new Tag(Tag.PREFIX + "Point"), regexp2, null); in testAddImplicitResolver2()