HomeSort by relevance Sort by last modified time
    Searched full:replace (Results 101 - 125 of 11582) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/
clearfat.go 25 decls.WriteString(strings.Replace(decl, "$", s, -1))
26 calls.WriteString(strings.Replace("poison$()\n\tclearfat$()\n\t", "$", s, -1))
29 program = strings.Replace(program, "$DECLS", decls.String(), 1)
30 program = strings.Replace(program, "$CALLS", calls.String(), 1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/
fix_parrot.py 13 name.replace(Name("cheese", name.prefix))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/fixers/myfixes/
fix_parrot.py 13 name.replace(Name("cheese", name.prefix))
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
asg.s 8 .asg *ar0+, INC ; replace a complete operand
9 .asg ar0, FP ; replace a sub-operand
11 .asg newlabel, LABEL ; replace a label
12 .asg .word 0, PSEUDO ; replace with a directive
  /external/markdown/markdown/
postprocessors.py 55 text = text.replace("<p>%s</p>" %
58 text = text.replace(markdown.preprocessors.HTML_PLACEHOLDER % i,
64 html = html.replace('&', '&amp;')
65 html = html.replace('<', '&lt;')
66 html = html.replace('>', '&gt;')
67 return html.replace('"', '&quot;')
76 text = text.replace(markdown.AMP_SUBSTITUTE, "&")
  /external/v8/test/mjsunit/
string-replace-with-empty.js 31 assertEquals("0123", "aa0bb1cc2dd3".replace(/[a-z]/g, ""));
32 assertEquals("0123", "\u1234a0bb1cc2dd3".replace(/[\u1234a-z]/g, ""));
40 assertEquals(expected, cons.replace(/[a-z]/g, ""));
45 assertEquals(expected, cons.replace(/[\u1234a-z]/g, ""));
52 assertEquals(expected, cons.replace(/[a-z]/g, ""));
58 assertEquals(expected, cons.replace(/[\u1234a-z]/g, ""));
64 "foo".replace(/foo/g, "");
  /external/v8/tools/gyp/pylib/gyp/
xml_fix.py 18 data = data.replace("&", "&amp;").replace("<", "&lt;")
19 data = data.replace("\"", "&quot;").replace(">", "&gt;")
21 data = data.replace(
22 "\r", "&#xD;").replace(
23 "\n", "&#xA;").replace(
  /external/v8/tools/gyp/test/variables/filelist/
gyptest-filelist-golden.py 20 expect = expect.replace('/', r'\\').replace('\r\n', '\n')
35 contents = test.read('src/filelist.gypd').replace(
36 '\r', '').replace('\\\\', '/')
37 expect = test.read('filelist.gypd.golden').replace('\r', '')
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CodingErrorActionTest.java 47 assertNotNull(CodingErrorAction.REPLACE);
49 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPLACE);
51 assertNotSame(CodingErrorAction.REPLACE, CodingErrorAction.REPORT);
59 assertTrue(CodingErrorAction.REPLACE.toString().indexOf("REPLACE") != -1);
  /external/testng/src/main/java/org/testng/remote/strprotocol/
MessageHelper.java 160 return message.replace('\n', LINE_SEP_DELIMITER_1).replace('\r', LINE_SEP_DELIMITER_2);
168 return replace(
169 replace(
170 replace(
171 replace(message, "\u0004", "\\u0004"),
182 return replace(
183 replace(
184 replace(
185 replace(message, "\\u0004", "\u0004")
230 private static final String replace(String original, CharSequence target, CharSequence replacement) { method in class:MessageHelper
    [all...]
  /external/v8/src/compiler/
graph-reducer.h 57 static Reduction Replace(Node* node) { return Reduction(node); }
71 // Replace {node} with {replacement}.
72 virtual void Replace(Node* node, Node* replacement) = 0;
75 // Replace value uses of {node} with {value} and effect uses of {node} with
86 static Reduction Replace(Node* node) { return Reducer::Replace(node); }
89 void Replace(Node* node, Node* replacement) {
91 editor_->Replace(node, replacement);
105 // TODO(turbofan): replace the effect input to {node} with {graph->start()}.
148 // Replace {node} with {replacement}
    [all...]
  /external/v8/test/mjsunit/regress/
regress-2437.js 31 // such as String.prototype.replace or String.prototype.match, since it
54 // Test String.prototype.replace with atomic regexp and empty string.
57 "zzzz".replace(r, "");
60 // Test String.prototype.replace with non-atomic regexp and empty string.
63 "zzzz".replace(r, "");
66 // Test String.prototype.replace with atomic regexp and non-empty string.
69 "zzzz".replace(r, "a");
72 // Test String.prototype.replace with non-atomic regexp and non-empty string.
75 "zzzz".replace(r, "a");
78 // Test String.prototype.replace with replacement functio
    [all...]
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/
AndroidNdkScriptGenerator.java 69 srcFiles.append(files.get(i).path().replace('\\', '/').replace(config.jniDir.toString() + "/", ""));
82 template = template.replace("%sharedLibName%", config.sharedLibName);
83 template = template.replace("%headerDirs%", headerDirs);
84 template = template.replace("%cFlags%", target.cFlags);
85 template = template.replace("%cppFlags%", target.cppFlags);
86 template = template.replace("%linkerFlags%", target.linkerFlags);
87 template = template.replace("%srcFiles%", srcFiles);
93 String fileName = file.path().replace('\\', '/');
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
ZipExtractorTask.java 43 private static enum Replace {
177 Replace answer = showDialog(entry.getName());
217 private Replace showDialog(final String name) {
218 final FutureResult<Replace> mResult = new FutureResult<Replace>();
225 builder.setMessage(String.format("Do you want to replace script \"%s\" ?", name));
230 Replace result = Replace.SKIPALL;
233 result = Replace.YES;
236 result = Replace.NO
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/ui/
ImgSrcReplacementTest.java 29 private static void replace(final String input, final String expectedOutput) { method in class:ImgSrcReplacementTest
35 replace(
43 replace(
51 replace(
59 replace(
67 replace(
75 replace(
84 replace(
93 replace(
101 replace(
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
string_tests.py 155 r2, rem = divmod(n - len(i.replace(j, '')), len(j))
576 EQ("", "", "replace", "", "")
577 EQ("A", "", "replace", "", "A")
578 EQ("", "", "replace", "A", "")
579 EQ("", "", "replace", "A", "A")
580 EQ("", "", "replace", "", "", 100)
581 EQ("", "", "replace", "", "", sys.maxint)
584 EQ("A", "A", "replace", "", "")
585 EQ("*A*", "A", "replace", "", "*")
586 EQ("*1A*1", "A", "replace", "", "*1"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
string_tests.py 155 r2, rem = divmod(n - len(i.replace(j, '')), len(j))
576 EQ("", "", "replace", "", "")
577 EQ("A", "", "replace", "", "A")
578 EQ("", "", "replace", "A", "")
579 EQ("", "", "replace", "A", "A")
580 EQ("", "", "replace", "", "", 100)
581 EQ("", "", "replace", "", "", sys.maxint)
584 EQ("A", "A", "replace", "", "")
585 EQ("*A*", "A", "replace", "", "*")
586 EQ("*1A*1", "A", "replace", "", "*1"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
string_tests.py 155 r2, rem = divmod(n - len(i.replace(j, '')), len(j))
576 EQ("", "", "replace", "", "")
577 EQ("A", "", "replace", "", "A")
578 EQ("", "", "replace", "A", "")
579 EQ("", "", "replace", "A", "A")
580 EQ("", "", "replace", "", "", 100)
581 EQ("", "", "replace", "", "", sys.maxint)
584 EQ("A", "A", "replace", "", "")
585 EQ("*A*", "A", "replace", "", "*")
586 EQ("*1A*1", "A", "replace", "", "*1"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
string_tests.py 155 r2, rem = divmod(n - len(i.replace(j, '')), len(j))
576 EQ("", "", "replace", "", "")
577 EQ("A", "", "replace", "", "A")
578 EQ("", "", "replace", "A", "")
579 EQ("", "", "replace", "A", "A")
580 EQ("", "", "replace", "", "", 100)
581 EQ("", "", "replace", "", "", sys.maxint)
584 EQ("A", "A", "replace", "", "")
585 EQ("*A*", "A", "replace", "", "*")
586 EQ("*1A*1", "A", "replace", "", "*1"
    [all...]
  /external/curl/docs/libcurl/
curl_global_init_mem.3 36 allows the application to set callbacks to replace the otherwise used internal
47 To replace malloc()
49 To replace free()
51 To replace realloc()
53 To replace strdup()
55 To replace calloc()
  /external/v8/test/webkit/
regexp-char-insensitive-expected.txt 39 PASS 'PASå'.replace(/å/ig, 'S') is 'PASS'
40 PASS 'PASå'.replace(/Å/ig, 'S') is 'PASS'
41 PASS 'PASÅ'.replace(/å/ig, 'S') is 'PASS'
42 PASS 'PASÅ'.replace(/Å/ig, 'S') is 'PASS'
43 PASS 'PASS'.replace(/å/ig, '%C3%A5') is 'PASS'
44 PASS 'PASS'.replace(/Å/ig, '%C3%A5') is 'PASS'
regexp-char-insensitive.js 41 shouldBe("'PAS\u00E5'.replace(/\u00E5/ig, 'S')", "'PASS'");
42 shouldBe("'PAS\u00E5'.replace(/\u00C5/ig, 'S')", "'PASS'");
43 shouldBe("'PAS\u00C5'.replace(/\u00E5/ig, 'S')", "'PASS'");
44 shouldBe("'PAS\u00C5'.replace(/\u00C5/ig, 'S')", "'PASS'");
46 shouldBe("'PASS'.replace(/\u00E5/ig, '%C3%A5')", "'PASS'");
47 shouldBe("'PASS'.replace(/\u00C5/ig, '%C3%A5')", "'PASS'");
  /libcore/benchmarks/src/benchmarks/regression/
StringReplaceBenchmark.java 56 s.value.replace('z', '0');
62 s.value.replace('a', '0');
68 s.value.replace('q', '0');
74 s.value.replace("fish", "0");
80 s.value.replace("jklm", "0");
86 s.value.replace("qrst", "0");
  /packages/apps/Settings/tests/unit/src/com/android/settings/bluetooth/
Utf8ByteLengthFilterTest.java 47 dest.replace(5, 8, source);
63 dest.replace(8, 10, source);
66 dest.replace(0, 1, source);
70 dest.replace(0, 4, source);
80 dest.replace(2, 3, source);
84 dest.replace(3, 4, source);
  /external/curl/CMake/
OtherTests.cmake 75 string(REGEX REPLACE "^([^,]*),[^,]*,[^,]*,[^,]*,[^,]*$" "\\1" RECV_TYPE_ARG1 "${curl_cv_func_recv_args}")
76 string(REGEX REPLACE "^[^,]*,([^,]*),[^,]*,[^,]*,[^,]*$" "\\1" RECV_TYPE_ARG2 "${curl_cv_func_recv_args}")
77 string(REGEX REPLACE "^[^,]*,[^,]*,([^,]*),[^,]*,[^,]*$" "\\1" RECV_TYPE_ARG3 "${curl_cv_func_recv_args}")
78 string(REGEX REPLACE "^[^,]*,[^,]*,[^,]*,([^,]*),[^,]*$" "\\1" RECV_TYPE_ARG4 "${curl_cv_func_recv_args}")
79 string(REGEX REPLACE "^[^,]*,[^,]*,[^,]*,[^,]*,([^,]*)$" "\\1" RECV_TYPE_RETV "${curl_cv_func_recv_args}")
122 string(REGEX REPLACE "(const) .*" "\\1" send_qual_arg2 "${send_arg2}")
123 string(REGEX REPLACE "const (.*)" "\\1" send_arg2 "${send_arg2}")
141 string(REGEX REPLACE "^([^,]*),[^,]*,[^,]*,[^,]*,[^,]*,[^,]*$" "\\1" SEND_TYPE_ARG1 "${curl_cv_func_send_args}")
142 string(REGEX REPLACE "^[^,]*,([^,]*),[^,]*,[^,]*,[^,]*,[^,]*$" "\\1" SEND_TYPE_ARG2 "${curl_cv_func_send_args}")
143 string(REGEX REPLACE "^[^,]*,[^,]*,([^,]*),[^,]*,[^,]*,[^,]*$" "\\1" SEND_TYPE_ARG3 "${curl_cv_func_send_args}"
    [all...]

Completed in 1320 milliseconds

1 2 3 45 6 7 8 91011>>