HomeSort by relevance Sort by last modified time
    Searched defs:repl (Results 1 - 25 of 70) sorted by null

1 2 3

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
ReplaceTest.java 29 String target, pattern, repl; local
33 repl = "xxx";
38 assertEquals("foobarxxxarfoofo1", m.replaceFirst(repl));
39 assertEquals("foobarxxxarfooxxx", m.replaceAll(repl));
43 String target, pattern, repl, s; local
49 repl = "$2[$1]";
53 s = m.replaceFirst(repl);
55 s = m.replaceAll(repl);
60 repl = "[$5]$6($3)$4{$1}$2";
63 s = m.replaceFirst(repl);
76 String target, pattern, repl, s; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ReplaceTest.java 26 String target, pattern, repl; local
30 repl = "xxx";
35 assertEquals("foobarxxxarfoofo1barfort", m.replaceFirst(repl));
36 assertEquals("foobarxxxarfooxxxbarxxxt", m.replaceAll(repl));
40 String target, pattern, repl, s; local
46 repl = "$2[$1]";
50 s = m.replaceFirst(repl);
52 s = m.replaceAll(repl);
57 repl = "[$5]$6($3)$4{$1}$2";
60 s = m.replaceFirst(repl);
71 String target, pattern, repl, s; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
gettext.py 107 def repl(x): function in function:c2py
109 expr.sub(repl, x.group(3)))
122 s = expr.sub(repl, stack.pop())
126 plural = expr.sub(repl, stack.pop())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
gettext.py 105 def repl(x): function in function:c2py
107 expr.sub(repl, x.group(3)))
120 s = expr.sub(repl, stack.pop())
124 plural = expr.sub(repl, stack.pop())
mimify.py 45 repl = re.compile('^subject:\\s+re: ', re.I) variable
152 if not prefix and repl.match(line):
  /external/chromium-trace/catapult/systrace/systrace/tracing_agents/
atrace_agent.py 354 def repl(m): function in function:fix_missing_tgids
366 trace_data = re.sub(r'^\s*(\S+)-(\d+)\s+(\(\S+\))', repl, trace_data,
  /external/deqp/framework/qphelper/
qpXmlWriter.c 56 const char* repl = DE_NULL; local
60 case '<': repl = "&lt;"; break;
61 case '>': repl = "&gt;"; break;
62 case '&': repl = "&amp;"; break;
63 case '\'': repl = "&apos;"; break;
64 case '"': repl = "&quot;"; break;
67 case 1: repl = "&lt;SOH&gt;"; break;
68 case 2: repl = "&lt;STX&gt;"; break;
69 case 3: repl = "&lt;ETX&gt;"; break;
70 case 4: repl = "&lt;EOT&gt;"; break
    [all...]
  /external/mesa3d/src/compiler/glsl/
opt_function_inlining.cpp 40 ir_dereference *repl);
331 * Replaces references to the "orig" variable with a clone of "repl."
341 ir_variable_replacement_visitor(ir_variable *orig, ir_dereference *repl)
344 this->repl = repl;
360 ir_dereference *repl; member in class:ir_variable_replacement_visitor
368 *deref = this->repl->clone(ralloc_parent(*deref), NULL);
426 ir_dereference *repl)
428 ir_variable_replacement_visitor v(orig, repl);
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_ssa_builder.cpp 221 bool repl = (n.op_ptr()->flags & AF_REPL) || local
224 n.init_args(repl);
  /external/owasp/sanitizer/src/main/org/owasp/html/
Encoding.java 171 String repl = REPLACEMENTS[ch]; local
172 if (repl != null) {
173 output.append(plainText, pos, i).append(repl);
  /external/python/cpython2/Lib/
mimify.py 45 repl = re.compile('^subject:\\s+re: ', re.I) variable
152 if not prefix and repl.match(line):
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
MacroExpander.cpp 253 Token& repl = replacements->front(); local
258 repl.text = stream.str();
264 repl.text = stream.str();
281 Token& repl = replacements->at(i); local
286 repl.setAtStartOfLine(identifier.atStartOfLine());
287 repl.setHasLeadingSpace(identifier.hasLeadingSpace());
289 repl.location = identifier.location;
389 const Token& repl = macro.replacements[i]; local
390 if (repl.type != Token::IDENTIFIER)
392 replacements->push_back(repl);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
gettext.py 105 def repl(x): function in function:c2py
107 expr.sub(repl, x.group(3)))
120 s = expr.sub(repl, stack.pop())
124 plural = expr.sub(repl, stack.pop())
mimify.py 45 repl = re.compile('^subject:\\s+re: ', re.I) variable
152 if not prefix and repl.match(line):
  /prebuilts/gdb/linux-x86/lib/python2.7/
gettext.py 105 def repl(x): function in function:c2py
107 expr.sub(repl, x.group(3)))
120 s = expr.sub(repl, stack.pop())
124 plural = expr.sub(repl, stack.pop())
mimify.py 45 repl = re.compile('^subject:\\s+re: ', re.I) variable
152 if not prefix and repl.match(line):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gettext.py 105 def repl(x): function in function:c2py
107 expr.sub(repl, x.group(3)))
120 s = expr.sub(repl, stack.pop())
124 plural = expr.sub(repl, stack.pop())
mimify.py 45 repl = re.compile('^subject:\\s+re: ', re.I) variable
152 if not prefix and repl.match(line):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gettext.py 105 def repl(x): function in function:c2py
107 expr.sub(repl, x.group(3)))
120 s = expr.sub(repl, stack.pop())
124 plural = expr.sub(repl, stack.pop())
mimify.py 45 repl = re.compile('^subject:\\s+re: ', re.I) variable
152 if not prefix and repl.match(line):
  /cts/tests/tests/text/src/android/text/method/cts/
QwertyKeyListenerTest.java 196 Object[] repl = content.getSpans(0, content.length(), Object.class); local
197 assertEquals(0, repl.length);
200 repl = content.getSpans(0, content.length(), Object.class);
201 assertEquals(1, repl.length);
202 assertEquals(0, content.getSpanStart(repl[0]));
203 assertEquals(content.length(), content.getSpanEnd(repl[0]));
204 assertEquals(Spannable.SPAN_EXCLUSIVE_EXCLUSIVE, content.getSpanFlags(repl[0]));
207 repl = content.getSpans(0, content.length(), Object.class);
208 assertEquals(1, repl.length);
209 assertEquals(1, content.getSpanStart(repl[0]))
    [all...]
  /external/google-breakpad/src/testing/gtest/scripts/
upload.py 827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
    [all...]
  /external/google-breakpad/src/testing/scripts/
upload.py 827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
    [all...]
  /external/googletest/googlemock/scripts/
upload.py 827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
    [all...]
  /external/googletest/googletest/scripts/
upload.py 827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
    [all...]

Completed in 1730 milliseconds

1 2 3