HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 226 - 250 of 3666) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/platform_GesturesRegressionTest/
platform_GesturesRegressionTest.py 58 self.test_results[key.replace('/', '-')] = score
59 self.output_perf_value(key.replace('/', '-'), score, 'points')
  /external/autotest/server/bin/
unit_test_server.py 21 # simple replace to make a valid identifier
22 key = f.replace('/', '_').replace('.', '_')
  /external/autotest/tko/
display.py 47 return int(key.replace('pct',''))
53 hint = key.replace('pct',' %')
224 reason = reason.replace('<br>','\n')
225 reason = reason.replace('<','[').replace('>',']')
226 reason = reason.replace('|','\n').replace('&',' AND ')
227 reason = reason.replace('\n','<br>')
  /external/ceres-solver/scripts/
make_docs.py 65 # and replace fixes that.
91 breadcrumb_start_index = breadcrumb_start_other.replace('index.html', '#')
108 out = out.replace(input_pattern, output_pattern)
  /external/chromium-trace/catapult/dashboard/dashboard/
buildbucket_job_status.py 65 result[key.replace('_ts', '_utc')] = time_string
88 result[key.replace('_json', '')] = json.loads(
  /external/chromium-trace/catapult/third_party/graphy/graphy/
all_tests.py 25 filename = filename.replace(base_dir, '')
27 filename = filename.replace(os.path.sep, '.')
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/static/
jquery.json-2.2.min.js 25 return JSON.parse(src);var filtered=src;filtered=filtered.replace(/\\["\\\/bfnrtu]/g,'@');filtered=filtered.replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,']');filtered=filtered.replace(/(?:^|:|,)(?:\s*\[)+/g,'');if(/^[\],:{}\s]*$/.test(filtered))
29 {return'"'+string.replace(_escapeable,function(a)
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/static/
jquery.json-2.2.min.js 25 return JSON.parse(src);var filtered=src;filtered=filtered.replace(/\\["\\\/bfnrtu]/g,'@');filtered=filtered.replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,']');filtered=filtered.replace(/(?:^|:|,)(?:\s*\[)+/g,'');if(/^[\],:{}\s]*$/.test(filtered))
29 {return'"'+string.replace(_escapeable,function(a)
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
jquery.json.min.js 25 return JSON.parse(src);var filtered=src;filtered=filtered.replace(/\\["\\\/bfnrtu]/g,'@');filtered=filtered.replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,']');filtered=filtered.replace(/(?:^|:|,)(?:\s*\[)+/g,'');if(/^[\],:{}\s]*$/.test(filtered))
29 {return'"'+string.replace(_escapeable,function(a)
  /external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
resource.py 27 return self.relative_path.replace(os.sep, '/')
40 name = dirname.replace(os.path.sep, '.') + '.' + modname
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringReplacer.java 60 * @param theOutput text that will replace input text when the
61 * replace() method is called. May contain stand-in characters
64 * the replace() method
81 * @param theOutput text that will replace input text when the
82 * replace() method is called. May contain stand-in characters
112 public int replace(Replaceable text, method in class:StringReplacer
125 text.replace(start, limit, output);
160 text.replace(tempStart, tempStart, "\uFFFF");
181 // right context for previous replace() operations.
197 text.replace(destLimit, destLimit, buf.toString())
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
StringReplacer.java 59 * @param theOutput text that will replace input text when the
60 * replace() method is called. May contain stand-in characters
63 * the replace() method
80 * @param theOutput text that will replace input text when the
81 * replace() method is called. May contain stand-in characters
111 public int replace(Replaceable text, method in class:StringReplacer
124 text.replace(start, limit, output);
159 text.replace(tempStart, tempStart, "\uFFFF");
180 // right context for previous replace() operations.
196 text.replace(destLimit, destLimit, buf.toString())
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
ModifyStringLiterals.java 48 // TODO Replace with Pattern
50 String newLiteralValue = literalValue.replace(oldString, newString);
53 rewrite.replace(node, newLiteral, null /* editGorup */);
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
FixupBidiClassDoc.java 56 String newCommentText = commentText.replace(BAD_TEXT, "");
57 document.replace(javadoc.getStartPosition(), javadoc.getLength(), newCommentText);
  /external/proguard/src/proguard/io/
DataEntryRewriter.java 125 // Replace dots by forward slashes.
127 word.replace('.', ClassConstants.PACKAGE_SEPARATOR) :
138 // Replace forward slashes by dots.
140 newClassName.replace(ClassConstants.PACKAGE_SEPARATOR, '.') :
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSpannableStringBuilder.java 30 public Editable replace(int st, int en, CharSequence text) { method in class:ShadowSpannableStringBuilder
31 builder.replace(st, en, text.toString());
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SpannableStringBuilderTest.java 30 assertThat(builder.replace(2, 3, "").toString(), equalTo("ab"));
31 assertThat(builder.replace(0, 2, "xyz").toString(), equalTo("xyz"));
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliInstructionTest.java 51 text.replace("<ref>", ""));
72 text.replace("<ref>", ""));
  /external/smali/util/src/main/java/org/jf/util/
TextUtils.java 48 return source.replace("\r", "").replace("\n", newlineValue);
  /external/v8/test/mjsunit/es6/
regexp-replace-lastindex.js 10 assertEquals("X", "x".replace(global, function(a) { return "X"; }));
  /external/v8/test/mjsunit/
regexp-capture-3.js 29 "abcd".replace(re, function() { });
45 "abcdabcd".replace(/b/g, function() { });
58 "abcd".replace(re, function() { });
76 "abcdabcd".replace(/(b)(c)/g, function() { });
95 "abcdabcd".replace(/(b)(c)/g, function() { });
109 OverrideCase(function() { return input.replace(re, "x"); });
110 OverrideCase(function() { return input.replace(re_g, "x"); });
111 OverrideCase(function() { return input.replace(re, ""); });
112 OverrideCase(function() { return input.replace(re_g, ""); });
135 no_last_match(function() { "foo".replace("f", ""); })
    [all...]
  /external/v8/test/mjsunit/regress/
regress-crbug-467047.js 9 "abcd".replace(re, function() { });
regress-crbug-471659.js 18 s.replace("+", "-");
  /frameworks/base/telephony/java/android/telephony/
JapanesePhoneNumberFormatter.java 190 text.replace(0, length, saved);
196 text.replace(0, length, saved);
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeAllocator.h 60 replace(pClient);
74 /// replace - be the agent of client.
75 void replace(NodeFactory& pClient) { function in class:mcld::NodeFactory

Completed in 395 milliseconds

1 2 3 4 5 6 7 8 91011>>