HomeSort by relevance Sort by last modified time
    Searched full:backreference (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContentProviderOperationBuilderTest.java 61 int backReference = shadowBuilder.getWithValueBackReference("foo");
62 assertThat(backReference, is(5));
  /external/chromium_org/third_party/re2/doc/
syntax.txt 112 \1 backreference NOT SUPPORTED
116 \g1 backreference NOT SUPPORTED
117 \g{1} backreference NOT SUPPORTED
118 \g{+1} backreference NOT SUPPORTED
119 \g{-1} backreference NOT SUPPORTED
120 \g{name} named backreference NOT SUPPORTED
123 \k<name> named backreference NOT SUPPORTED
124 \k'name' named backreference NOT SUPPORTED
354 (?P=name) named backreference NOT SUPPORTED
syntax.html 124 <tr><td><code><font color=#808080>\1</font></code></td><td>backreference </td></tr>
128 <tr><td><code><font color=#808080>\g1</font></code></td><td>backreference </td></tr>
129 <tr><td><code><font color=#808080>\g{1}</font></code></td><td>backreference </td></tr>
130 <tr><td><code><font color=#808080>\g{+1}</font></code></td><td>backreference </td></tr>
131 <tr><td><code><font color=#808080>\g{-1}</font></code></td><td>backreference </td></tr>
132 <tr><td><code><font color=#808080>\g{name}</font></code></td><td>named backreference </td></tr>
135 <tr><td><code><font color=#808080>\k&lt;name&gt;</font></code></td><td>named backreference </td></tr>
136 <tr><td><code><font color=#808080>\k'name'</font></code></td><td>named backreference </td></tr>
366 <tr><td><code><font color=#808080>(?P=name)</font></code></td><td>named backreference </td></tr>
  /external/regex-re2/doc/
syntax.txt 112 \1 backreference NOT SUPPORTED
116 \g1 backreference NOT SUPPORTED
117 \g{1} backreference NOT SUPPORTED
118 \g{+1} backreference NOT SUPPORTED
119 \g{-1} backreference NOT SUPPORTED
120 \g{name} named backreference NOT SUPPORTED
123 \k<name> named backreference NOT SUPPORTED
124 \k'name' named backreference NOT SUPPORTED
354 (?P=name) named backreference NOT SUPPORTED
syntax.html 124 <tr><td><code><font color=#808080>\1</font></code></td><td>backreference </td></tr>
128 <tr><td><code><font color=#808080>\g1</font></code></td><td>backreference </td></tr>
129 <tr><td><code><font color=#808080>\g{1}</font></code></td><td>backreference </td></tr>
130 <tr><td><code><font color=#808080>\g{+1}</font></code></td><td>backreference </td></tr>
131 <tr><td><code><font color=#808080>\g{-1}</font></code></td><td>backreference </td></tr>
132 <tr><td><code><font color=#808080>\g{name}</font></code></td><td>named backreference </td></tr>
135 <tr><td><code><font color=#808080>\k&lt;name&gt;</font></code></td><td>named backreference </td></tr>
136 <tr><td><code><font color=#808080>\k'name'</font></code></td><td>named backreference </td></tr>
366 <tr><td><code><font color=#808080>(?P=name)</font></code></td><td>named backreference </td></tr>
  /external/chromium_org/v8/test/webkit/
regexp-alternatives.js 38 // Force YARR to use Interpreter by using backreference
  /external/llvm/lib/Support/
Regex.cpp 153 // Extract the backreference number.
162 *Error = "invalid backreference string '" + Ref.str() + "'";
regerror.c 64 { REG_ESUBREG, "REG_ESUBREG", "invalid backreference number" },
  /ndk/sources/host-tools/ndk-stack/regex/
regerror.c 59 { REG_ESUBREG, "REG_ESUBREG", "invalid backreference number" },
  /external/llvm/unittests/Support/
RegexTest.cpp 112 EXPECT_EQ(Error, "invalid backreference string '100'");
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.h 552 /* If this state has backreference node(s). */
682 Idx nbackref; /* The number of backreference in this dfa. */
684 /* Bitmap expressing which backreference is used. */
689 /* If this dfa has "multibyte node", which is a backreference or
regexec.c     [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regerror.c 142 { REG_ESUBREG, "REG_ESUBREG", "invalid backreference number" },
  /external/pcre/dist/doc/
pcreperform.3 108 not the subject of a backreference, and the PCRE_DOTALL option is set, the
pcrematching.3 141 4. For the same reason, conditional expressions that use a backreference as the
pcresyntax.3 33 \eddd character with octal code ddd, or backreference
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.h 130 unsigned max_id : 4; /* maximum backreference on the RHS */
  /external/pcre/dist/doc/html/
pcreperform.html 118 not the subject of a backreference, and the PCRE_DOTALL option is set, the
pcrematching.html 166 4. For the same reason, conditional expressions that use a backreference as the
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_parse.py 555 # named backreference
609 # conditional backreference group
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_parse.py 555 # named backreference
609 # conditional backreference group
  /external/chromium_org/v8/src/
jsregexp.h 386 VISIT(BackReference) \
400 VISIT(BackReference) \
    [all...]
  /external/pcre/dist/
pcre_study.c 376 (when no recursion happens). A backreference within the group that it is
379 If PCRE_JAVASCRIPT_COMPAT is set, a backreference to an unset bracket
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
re_tests.py 26 ('(Python)\\1', 'PythonPython'), # Backreference
73 ('\\1', 'a', SYNTAX_ERROR), # Backreference
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
re_tests.py 26 ('(Python)\\1', 'PythonPython'), # Backreference
73 ('\\1', 'a', SYNTAX_ERROR), # Backreference

Completed in 421 milliseconds

1 2 3