HomeSort by relevance Sort by last modified time
    Searched full:repl (Results 1 - 19 of 19) sorted by null

  /dalvik/libcore/regex/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ReplaceTest.java 46 String target, pattern, repl; local
50 repl = "xxx";
55 assertEquals("foobarxxxarfoofo1barfort", m.replaceFirst(repl));
56 assertEquals("foobarxxxarfooxxxbarxxxt", m.replaceAll(repl));
74 String target, pattern, repl, s; local
80 repl = "$2[$1]";
84 s = m.replaceFirst(repl);
86 s = m.replaceAll(repl);
91 repl = "[$5]$6($3)$4{$1}$2";
94 s = m.replaceFirst(repl);
111 String target, pattern, repl, s; local
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
QwertyKeyListenerTest.java 353 Object[] repl = content.getSpans(0, content.length(), Object.class); local
354 assertEquals(0, repl.length);
357 repl = content.getSpans(0, content.length(), Object.class);
358 assertEquals(1, repl.length);
359 assertEquals(0, content.getSpanStart(repl[0]));
360 assertEquals(content.length(), content.getSpanEnd(repl[0]));
361 assertEquals(Spannable.SPAN_EXCLUSIVE_EXCLUSIVE, content.getSpanFlags(repl[0]));
364 repl = content.getSpans(0, content.length(), Object.class);
365 assertEquals(1, repl.length);
366 assertEquals(1, content.getSpanStart(repl[0]))
    [all...]
  /frameworks/base/core/java/android/text/method/
QwertyKeyListener.java 235 Replaced[] repl = content.getSpans(0, content.length(), local
237 for (int a = 0; a < repl.length; a++)
238 content.removeSpan(repl[a]);
290 Replaced[] repl = content.getSpans(selStart - consider, selStart, local
293 if (repl.length > 0) {
294 int st = content.getSpanStart(repl[0]);
295 int en = content.getSpanEnd(repl[0]);
296 String old = new String(repl[0].mText);
298 content.removeSpan(repl[0]);
388 Replaced[] repl = content.getSpans(0, content.length(), Replaced.class) local
    [all...]
TextKeyListener.java 164 QwertyKeyListener.Replaced[] repl = e.getSpans(0, e.length(), local
166 final int count = repl.length;
168 e.removeSpan(repl[i]);
  /external/iptables/libiptc/
libiptc.c 603 static inline int iptcc_compile_rule (TC_HANDLE_T h, STRUCT_REPLACE *repl, struct rule_head *r)
622 memcpy((char *)repl->entries+r->offset, r->entry, r->size);
628 static int iptcc_compile_chain(TC_HANDLE_T h, STRUCT_REPLACE *repl, struct chain_head *c)
638 head = (void *)repl->entries + c->head_offset;
646 repl->hook_entry[c->hooknum-1] = c->head_offset;
647 repl->underflow[c->hooknum-1] = c->foot_offset;
652 ret = iptcc_compile_rule(h, repl, r);
658 foot = (void *)repl->entries + c->foot_offset;
734 static int iptcc_compile_table(TC_HANDLE_T h, STRUCT_REPLACE *repl)
741 int ret = iptcc_compile_chain(h, repl, c)
2030 STRUCT_REPLACE *repl; local
    [all...]
  /external/kernel-headers/original/linux/netfilter_ipv4/
ip_tables.h 282 //#define ipt_register_table(tbl, repl) xt_register_table(AF_INET, tbl, repl)
286 const struct ipt_replace *repl);
  /system/core/sh/
histedit.c 228 char *pat = NULL, *repl; /* ksh "fc old=new" crap */ local
244 (void) &repl;
328 ((repl = strchr(argv[0], '=')) != NULL)) {
330 *repl++ = '\0';
403 fc_replace(he.str, pat, repl) : he.str;
  /dalvik/libcore/nio_char/src/main/java/java/nio/charset/
CharsetEncoder.java 632 * @param repl
637 public boolean isLegalReplacement(byte[] repl) {
646 ByteBuffer in = ByteBuffer.wrap(repl);
647 CharBuffer out = CharBuffer.allocate((int) (repl.length * decoder
745 * calling <code>isLegalReplacement(byte[] repl)</code>.
  /external/icu4c/test/cintltst/
reapits.c 918 UChar repl[100]; local
    [all...]
  /external/kernel-headers/original/linux/netfilter_arp/
arp_tables.h 245 const struct arpt_replace *repl);
  /external/kernel-headers/original/linux/netfilter_ipv6/
ip6_tables.h 297 const struct ip6t_replace *repl);
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 417 CharSequence repl = mFilters[i].filter(tb, tbstart, tbend, local
420 if (repl != null) {
421 tb = repl;
423 tbend = repl.length();
    [all...]
Html.java 585 Object repl) {
593 text.setSpan(repl, where, len, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
  /external/libxml2/
valid.c 5283 xmlNodePtr repl = NULL, last = NULL, tmp; local
    [all...]
  /external/icu4c/test/intltest/
citrtest.cpp     [all...]
transapi.cpp 386 "21", "23", UnicodeString("Th\\u0069s is the repl\\u0061\\u0063eable String", ""),
    [all...]
  /external/tcpdump/tests/
print-X.new 130 0x05b0: 3e59 6f75 2073 686f 756c 6420 7265 706c >You.should.repl
print-capX.out 130 0x05b0: 3e59 6f75 2073 686f 756c 6420 7265 706c >You.should.repl
  /external/iproute2/doc/
ip-cref.tex 857 \verb|replace|, \verb|repl|.
    [all...]

Completed in 438 milliseconds