HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 426 - 450 of 3922) sorted by null

<<11121314151617181920>>

  /external/bison/build-aux/
gnupload 31 replace=
57 --replace allow replacements of existing files
152 --replace)
153 replace="replace: true"
409 if test -n "$replace"; then stmt="$stmt
410 $replace"
  /external/chromium-trace/catapult/systrace/systrace/
systrace-legacy.py 162 out = out.replace('\r\n', '\n')
179 html_prefix.replace("{{SYSTRACE_TRACE_VIEWER_HTML}}",
192 html_out = out.replace('\n', '\\n\\\n')
201 html_out = dec.flush().replace('\n', '\\n\\\n').replace('\r', '')
  /external/chromium-trace/catapult/telemetry/build/
update_docs.py 36 new_href = href.replace('file:', '')
37 new_href = new_href.replace(telemetry_dir, '..')
38 new_href = new_href.replace(os.sep, '/')
40 new_link_text = link_text.replace(telemetry_dir + os.sep, '')
43 html = html.replace(link, new_link)
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicLongMap.java 119 if (map.replace(key, atomic, new AtomicLong(delta))) {
168 if (map.replace(key, atomic, new AtomicLong(delta))) {
203 if (map.replace(key, atomic, new AtomicLong(newValue))) {
340 * first decrementing to zero, and then removing. putIfAbsent or replace could observe the
345 * - Define putIfAbsent and replace as treating zero and absent identically (as currently
349 * - Allow putIfAbsent and replace to distinguish between zero and absent, but don't implement
352 * replace(key, long).
378 if (map.replace(key, atomic, new AtomicLong(newValue))) {
397 boolean replace(K key, long expectedOldValue, long newValue) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
ReplaceableTest.java 136 public void replace(int start, int limit, String text) { method in class:ReplaceableTest.TestReplaceable
138 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
140 chars.replace(start, limit, text);
145 public void replace(int start, int limit, char[] charArray, method in class:ReplaceableTest.TestReplaceable
148 this.chars.replace(start, limit, charArray, charsStart, charsLen);
173 styles.replace(start, limit, s.toString());
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
ReplaceableTest.java 132 public void replace(int start, int limit, String text) { method in class:ReplaceableTest.TestReplaceable
134 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
136 chars.replace(start, limit, text);
141 public void replace(int start, int limit, char[] charArray, method in class:ReplaceableTest.TestReplaceable
144 this.chars.replace(start, limit, charArray, charsStart, charsLen);
169 styles.replace(start, limit, s.toString());
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 64 t = s.replace('\\', '\\\\').replace('"', '\\"').replace('\n', '\\n"\n "')
91 output = output.replace('\n\n', '\n')
134 profiles.append((pfile, path.basename(pfile).replace('.', '_')))
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
HudFragment.java 134 String name = value.name.replace("goog", "");
147 String name = value.name.replace("goog", "");
159 String name = value.name.replace("goog", "").replace("Available", "");
169 String name = value.name.replace("goog", "");
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_zipimport_support.py 96 test_src = test_src.replace(
99 test_src = test_src.replace("test.test_doctest",
101 test_src = test_src.replace("test.sample_doctest",
108 src = src.replace("test.test_doctest", "test_zipped_doctest")
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_zipimport_support.py 96 test_src = test_src.replace(
99 test_src = test_src.replace("test.test_doctest",
101 test_src = test_src.replace("test.sample_doctest",
108 src = src.replace("test.test_doctest", "test_zipped_doctest")
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipimport_support.py 96 test_src = test_src.replace(
99 test_src = test_src.replace("test.test_doctest",
101 test_src = test_src.replace("test.sample_doctest",
108 src = src.replace("test.test_doctest", "test_zipped_doctest")
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipimport_support.py 96 test_src = test_src.replace(
99 test_src = test_src.replace("test.test_doctest",
101 test_src = test_src.replace("test.sample_doctest",
108 src = src.replace("test.test_doctest", "test_zipped_doctest")
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 514 // Replace. (Conceptually equivalent to erase followed by insert.)
515 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string
517 _M_non_dbg_impl.replace(__pos, __n, __s._M_non_dbg_impl);
522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2);
530 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { function in class:basic_string
534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2);
539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string
543 _M_non_dbg_impl.replace(__pos, __n1, __s);
548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:basic_string
555 _Self& replace(iterator __f, iterator __l, const _Self& __s) { function in class:basic_string
563 _Self& replace(iterator __f, iterator __l, const _CharT* __s, size_type __n) { function in class:basic_string
573 _Self& replace(iterator __f, iterator __l, const _CharT* __s) { function in class:basic_string
583 _Self& replace(iterator __f, iterator __l, size_type __n, _CharT __c) { function in class:basic_string
593 _Self& replace(iterator __first, iterator __last, function in class:basic_string
607 _Self& replace(iterator __first, iterator __last, function in class:basic_string
620 _Self& replace(iterator __first, iterator __last, function in class:basic_string
630 _Self& replace(iterator __first, iterator __last, function in class:basic_string
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 514 // Replace. (Conceptually equivalent to erase followed by insert.)
515 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string
517 _M_non_dbg_impl.replace(__pos, __n, __s._M_non_dbg_impl);
522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2);
530 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { function in class:basic_string
534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2);
539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string
543 _M_non_dbg_impl.replace(__pos, __n1, __s);
548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:basic_string
555 _Self& replace(iterator __f, iterator __l, const _Self& __s) { function in class:basic_string
563 _Self& replace(iterator __f, iterator __l, const _CharT* __s, size_type __n) { function in class:basic_string
573 _Self& replace(iterator __f, iterator __l, const _CharT* __s) { function in class:basic_string
583 _Self& replace(iterator __f, iterator __l, size_type __n, _CharT __c) { function in class:basic_string
593 _Self& replace(iterator __first, iterator __last, function in class:basic_string
607 _Self& replace(iterator __first, iterator __last, function in class:basic_string
620 _Self& replace(iterator __first, iterator __last, function in class:basic_string
630 _Self& replace(iterator __first, iterator __last, function in class:basic_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 777 { return this->replace(_M_iend(), _M_iend(), __first, __last); }
906 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); }
934 { this->replace(__p, __p, __n, __c); }
956 { this->replace(__p, __p, __beg, __end); }
1191 replace(size_type __pos, size_type __n, const __versa_string& __str) function in class:__versa_string
1214 replace(size_type __pos1, size_type __n1, const __versa_string& __str, function in class:__versa_string
1242 replace(size_type __pos, size_type __n1, const _CharT* __s, function in class:__versa_string
1266 replace(size_type __pos, size_type __n1, const _CharT* __s) function in class:__versa_string
1290 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:__versa_string
1308 replace(iterator __i1, iterator __i2, const __versa_string& __str) function in class:__versa_string
1326 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) function in class:__versa_string
1347 replace(iterator __i1, iterator __i2, const _CharT* __s) function in class:__versa_string
1368 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) function in class:__versa_string
1393 replace(iterator __i1, iterator __i2, function in class:__versa_string
1405 replace(iterator __i1, iterator __i2, function in class:__versa_string
1419 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) function in class:__versa_string
1429 replace(iterator __i1, iterator __i2, function in class:__versa_string
1440 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) function in class:__versa_string
1450 replace(iterator __i1, iterator __i2, function in class:__versa_string
1474 __versa_string& replace(iterator __i1, iterator __i2, function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 777 { return this->replace(_M_iend(), _M_iend(), __first, __last); }
906 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); }
934 { this->replace(__p, __p, __n, __c); }
956 { this->replace(__p, __p, __beg, __end); }
1191 replace(size_type __pos, size_type __n, const __versa_string& __str) function in class:__versa_string
1214 replace(size_type __pos1, size_type __n1, const __versa_string& __str, function in class:__versa_string
1242 replace(size_type __pos, size_type __n1, const _CharT* __s, function in class:__versa_string
1266 replace(size_type __pos, size_type __n1, const _CharT* __s) function in class:__versa_string
1290 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:__versa_string
1308 replace(iterator __i1, iterator __i2, const __versa_string& __str) function in class:__versa_string
1326 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) function in class:__versa_string
1347 replace(iterator __i1, iterator __i2, const _CharT* __s) function in class:__versa_string
1368 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) function in class:__versa_string
1393 replace(iterator __i1, iterator __i2, function in class:__versa_string
1405 replace(iterator __i1, iterator __i2, function in class:__versa_string
1419 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) function in class:__versa_string
1429 replace(iterator __i1, iterator __i2, function in class:__versa_string
1440 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) function in class:__versa_string
1450 replace(iterator __i1, iterator __i2, function in class:__versa_string
1474 __versa_string& replace(iterator __i1, iterator __i2, function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.h 777 { return this->replace(_M_iend(), _M_iend(), __first, __last); }
906 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); }
934 { this->replace(__p, __p, __n, __c); }
956 { this->replace(__p, __p, __beg, __end); }
1191 replace(size_type __pos, size_type __n, const __versa_string& __str) function in class:__versa_string
1214 replace(size_type __pos1, size_type __n1, const __versa_string& __str, function in class:__versa_string
1242 replace(size_type __pos, size_type __n1, const _CharT* __s, function in class:__versa_string
1266 replace(size_type __pos, size_type __n1, const _CharT* __s) function in class:__versa_string
1290 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:__versa_string
1308 replace(iterator __i1, iterator __i2, const __versa_string& __str) function in class:__versa_string
1326 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) function in class:__versa_string
1347 replace(iterator __i1, iterator __i2, const _CharT* __s) function in class:__versa_string
1368 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) function in class:__versa_string
1393 replace(iterator __i1, iterator __i2, function in class:__versa_string
1405 replace(iterator __i1, iterator __i2, function in class:__versa_string
1419 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) function in class:__versa_string
1429 replace(iterator __i1, iterator __i2, function in class:__versa_string
1440 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) function in class:__versa_string
1450 replace(iterator __i1, iterator __i2, function in class:__versa_string
1474 __versa_string& replace(iterator __i1, iterator __i2, function in class:__versa_string
    [all...]
  /art/compiler/
cfi_test.h 91 line = line.replace(pos, 2, " ");
116 new_line = new_line.replace(pos, strlen(bad_reg), "");
120 new_line = new_line.replace(pos, FindEndOf(new_line, ")") - pos, "");
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
SignatureSourcer.java 224 getBuf().append(name.replace('/', '.'));
235 getBuf().append(name.replace('/', '.'));
243 getBuf().append(name.replace('/', '.'));
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonToken.as 172 txt = txt.replace("\n", "\\\\n");
173 txt = txt.replace("\r", "\\\\r");
174 txt = txt.replace("\t", "\\\\t");
  /external/autotest/server/cros/chaos_lib/
chaos_analyzer.py 76 dut_mac.replace('\'', '').replace(',', ''))
80 ap_ssid.replace('\'', '').replace(',', ''))
93 debug_info = line.replace('\'', '')
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/
item.py 114 def save(self, replace=True):
118 :param bool replace: If ``True``, delete any attributes on the remote
121 self.domain.put_attributes(self.name, self, replace)
123 if replace:
  /external/clang/include/clang/Edit/
Commit.h 84 bool replace(CharSourceRange range, StringRef text);
101 bool replace(SourceRange TokenRange, StringRef text) { function in class:clang::edit::Commit
102 return replace(CharSourceRange::getTokenRange(TokenRange), text);
  /external/harfbuzz_ng/src/
hb-object-private.hh 93 hb_bool_t replace);
183 hb_bool_t replace)
188 return obj->header.user_data.set (key, data, destroy, replace);
  /external/icu/icu4c/source/tools/
icu-svnprops-check.py 112 file_type = file_type.replace(".", "\.")
113 file_type = file_type.replace("*", ".*")
132 prop_val = prop_val.replace(";;", ";");

Completed in 1850 milliseconds

<<11121314151617181920>>