Home
last modified time | relevance | path

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

/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DXPathParser.java325 private final boolean lookbehind(char c, int n) in lookbehind() method in XPathParser
333 String lookbehind = (String) m_ops.m_tokenQueue.elementAt(lookBehindPos); in lookbehind() local
335 if (lookbehind.length() == 1) in lookbehind()
337 char c0 = (lookbehind == null) ? '|' : lookbehind.charAt(0); in lookbehind()
373 String lookbehind = (String) m_ops.m_tokenQueue.elementAt(m_queueMark - (n - 1)); in lookbehindHasToken() local
374 char c0 = (lookbehind == null) ? '|' : lookbehind.charAt(0); in lookbehindHasToken()
/external/pcre/dist/testdata/
Dtestoutput2454 Max lookbehind = 6
470 Failed: lookbehind assertion is not fixed length at offset 6
473 Failed: lookbehind assertion is not fixed length at offset 14
476 Failed: lookbehind assertion is not fixed length at offset 12
638 Max lookbehind = 1
664 Max lookbehind = 3
673 Max lookbehind = 3
690 Max lookbehind = 4
708 Max lookbehind = 4
739 Failed: lookbehind assertion is not fixed length at offset 11
[all …]
Dtestoutput595 Failed: \C not allowed in lookbehind assertion at offset 6
1847 Max lookbehind = 2
Dtestoutput71239 Failed: \C not allowed in lookbehind assertion at offset 10
Dtestoutput91242 Failed: \C not allowed in lookbehind assertion at offset 10
/external/v8/test/cctest/
Dtest-regexp.cc172 void TestRegExpParser(bool lookbehind) { in TestRegExpParser() argument
173 FLAG_harmony_regexp_lookbehind = lookbehind; in TestRegExpParser()
206 if (lookbehind) { in TestRegExpParser()
296 if (lookbehind) { in TestRegExpParser()
/external/icu/icu4c/source/i18n/
Dregexcst.txt133 '<' n open-paren-lookbehind
147 open-paren-lookbehind:
/external/pcre/dist/
DChangeLog34 6. A lookbehind assertion within a set of mutually recursive subpatterns could
313 (?(?< for the ! or = that would indicate a lookbehind assertion. This bug
321 35. A mutual recursion within a lookbehind assertion such as (?<=((?2))((?1)))
323 lookbehind assertion. This bug was discovered by the LLVM fuzzer.
325 36. The use of \K in a positive lookbehind assertion in a non-anchored pattern
836 17. The \A escape now records a lookbehind value of 1, though its execution
911 37. The value of the max lookbehind was not correctly preserved if a compiled
1607 (?<=(a)+) was not diagnosed as invalid (non-fixed-length lookbehind).
2094 10. \K gave a compile-time error if it appeared in a lookbehind assersion.
2326 starts with a lookbehind assertion or \b or \B (\K is not supported by
[all …]
Dpcre_compile.c8244 int *errorcodeptr, BOOL lookbehind, BOOL reset_bracount, int skipbytes, in compile_regex() argument
8331 if (lookbehind) in compile_regex()
8421 if (lookbehind) in compile_regex()
DHACKING482 each alternative of a lookbehind assertion, allowing them to have different
DNEWS157 . PCRE_INFO_MAXLOOKBEHIND can be used to find the longest lookbehind in a
/external/pcre/dist/doc/
Dpcretest.txt412 matching process if the pattern begins with a lookbehind assertion
795 the actual match start if a lookbehind assertion, \K, \b, or \B was
893 include characters before the actual match start if a lookbehind asser-
Dpcre.txt1767 are lookbehind assertions). However, this algorithm does not return
2441 25 lookbehind assertion is not fixed length
2452 36 \C not allowed in lookbehind assertion
2876 lookbehind assertion in the pattern. This information is useful when
2879 behind. \A also registers a one-character lookbehind, though it does
3476 with any kind of lookbehind. For example, consider the pattern
4674 (a) Although lookbehind assertions in PCRE must match fixed length
4675 strings, each alternative branch of a lookbehind assertion can match a
5546 is similar to a lookbehind assertion (described below). However, in
5548 to be of fixed length, as lookbehind assertions do. The use of \K does
[all …]
Dpcregrep.txt493 lookbehind assertions. This option does not work when input
/external/icu/icu4c/source/test/testdata/
Dre_tests.txt598 (?<=x+)y - c - Variable length lookbehind not implemented
Dregextst.txt588 "(?<=(abc))def" "<1>abc</1><0>def</0>" # lookbehind precedes main match.
/external/v8/src/regexp/
Djsregexp.cc5018 RegExpCompiler* compiler, ZoneList<CharacterRange>* lookbehind, in NegativeLookaroundAgainstReadDirectionAndMatch() argument
5029 zone, lookbehind, !read_backward, lookaround.on_match_success()); in NegativeLookaroundAgainstReadDirectionAndMatch()
/external/v8/
DChangeLog5804 [harmony] unstage regexp lookbehind assertions (issue 4545).
5824 [harmony] stage regexp lookbehind assertions (issue 4545).