/external/v8/test/mjsunit/regress/ |
regress-crbug-570241.js | 5 // Flags: --harmony-regexp-lookbehind
|
/external/v8/test/mjsunit/harmony/ |
regexp-lookbehind.js | 5 // Flags: --harmony-regexp-lookbehind 53 // Negative lookbehind. 79 // Captures inside negative lookbehind. (They never capture.) 110 // Back references to captures inside the lookbehind. 119 // and we do not backtrack into a lookbehind. 125 // We do not backtrack into a lookbehind. 126 // The lookbehind captures "abc" so that \1 does not match. We do not backtrack 127 // to capture only "bc" in the lookbehind.
|
/external/pcre/dist/doc/ |
pcrepartial.3 | 62 character need not form part of the final matched string; lookbehind assertions 77 the same. However, for patterns that contain lookbehind assertions, or begin 321 \fBNote:\fP If the pattern contains lookbehind assertions, or \eK, or starts 340 2. Lookbehind assertions that have already been obeyed are catered for in the 341 offsets that are returned for a partial match. However a lookbehind assertion 345 length of the longest lookbehind in the pattern. This length is given in 352 retain. Instead of subtracting the length of the longest lookbehind from the 362 lookbehind for that pattern is 3, so taking that away from 5 shows that we need
|
pcre_fullinfo.3 | 49 PCRE_INFO_MAXLOOKBEHIND Length (in characters) of the longest lookbehind assertion
|
pcrecompat.3 | 144 (a) Although lookbehind assertions in PCRE must match fixed length strings, 145 each alternative branch of a lookbehind assertion can match a different length
|
pcrepattern.3 | [all...] |
/external/icu/icu4c/source/i18n/ |
regeximp.h | 140 URX_LB_START = 44, // LookBehind Start. 142 URX_LB_CONT = 45, // LookBehind Continue. 146 URX_LB_END = 46, // LookBehind End. 150 URX_LBN_CONT = 47, // Negative LookBehind Continue 155 URX_LBN_END = 48, // Negative LookBehind end
|
regexcst.h | 194 , {doOpenLookBehind, 61 /* = */, 2, 20, TRUE} // 46 open-paren-lookbehind 402 "open-paren-lookbehind",
|
regexcst.txt | 133 '<' n open-paren-lookbehind 147 open-paren-lookbehind:
|
collationiterator.cpp | 452 int32_t lookBehind = 0; 457 ++lookBehind; 464 forwardNumCodePoints(lookBehind, errorCode); [all...] |
regexcmp.h | 79 lookBehind = -7,
|
/external/pcre/dist/doc/html/ |
pcrepartial.html | 87 character need not form part of the final matched string; lookbehind assertions 104 the same. However, for patterns that contain lookbehind assertions, or begin 348 <b>Note:</b> If the pattern contains lookbehind assertions, or \K, or starts 367 2. Lookbehind assertions that have already been obeyed are catered for in the 368 offsets that are returned for a partial match. However a lookbehind assertion 372 length of the longest lookbehind in the pattern. This length is given in 380 retain. Instead of subtracting the length of the longest lookbehind from the 391 lookbehind for that pattern is 3, so taking that away from 5 shows that we need
|
pcre_fullinfo.html | 63 PCRE_INFO_MAXLOOKBEHIND Length (in characters) of the longest lookbehind assertion
|
pcrecompat.html | 164 (a) Although lookbehind assertions in PCRE must match fixed length strings, 165 each alternative branch of a lookbehind assertion can match a different length
|
pcrepattern.html | [all...] |
pcresyntax.html | 34 <li><a name="TOC19" href="#SEC19">LOOKAHEAD AND LOOKBEHIND ASSERTIONS</a> 447 <br><a name="SEC19" href="#TOC1">LOOKAHEAD AND LOOKBEHIND ASSERTIONS</a><br>
|
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/ |
Pattern2Test.java | 292 // Test positive lookbehind using (?<=...) 295 // Test negative lookbehind using (?<!...)
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
XPathParser.java | 325 private final boolean lookbehind(char c, int n) method in class:XPathParser 333 String lookbehind = (String) m_ops.m_tokenQueue.elementAt(lookBehindPos); local 335 if (lookbehind.length() == 1) 337 char c0 = (lookbehind == null) ? '|' : lookbehind.charAt(0); 373 String lookbehind = (String) m_ops.m_tokenQueue.elementAt(m_queueMark - (n - 1)); local 374 char c0 = (lookbehind == null) ? '|' : lookbehind.charAt(0); [all...] |
/external/pcre/dist/ |
pcreposix.c | 103 REG_BADPAT, /* lookbehind assertion is not fixed length */ 116 REG_BADPAT, /* \C not allowed in lookbehind assertion */
|
/external/v8/src/regexp/ |
regexp-parser.h | 219 // Lookahead or Lookbehind.
|
/external/v8/test/cctest/ |
test-regexp.cc | 165 void TestRegExpParser(bool lookbehind) { 166 FLAG_harmony_regexp_lookbehind = lookbehind; 200 if (lookbehind) { 290 if (lookbehind) { 434 TestRegExpParser(true); // Lookbehind enabled. 439 TestRegExpParser(true); // Lookbehind enabled. [all...] |
/external/icu/icu4c/source/tools/ |
icu-svnprops-check.py | 117 # split on ';' into a list of properties. The negative lookahead and lookbehind
|
/external/pcre/dist/testdata/ |
testoutput2 | 454 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 1 [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
CollationIterator.java | 667 int lookBehind = 0; 672 ++lookBehind; 679 forwardNumCodePoints(lookBehind); [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationIterator.java | 665 int lookBehind = 0; 670 ++lookBehind; 677 forwardNumCodePoints(lookBehind); [all...] |