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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
preparechangelog_unittest.py 52 expected_contents = changelog_contents.replace("Need a short description and bug URL (OOPS!)", expected_message)
  /frameworks/base/core/java/android/text/method/
CharacterPickerDialog.java 93 private void replaceCharacterAndClose(CharSequence replace) {
96 mText.insert(selEnd, replace);
98 mText.replace(selEnd - 1, selEnd, replace);
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringBufferTest.java 208 testBuffer.replace(-1, 0, "text");
215 testBuffer.replace(0, -1, "text");
222 testBuffer.replace(2, 1, "text");
229 testBuffer.replace(testBuffer.length() + 1, testBuffer.length() + 1,
  /build/tools/droiddoc/templates-pdk/assets/
jquery-history.js 40 hash = '#' + hash.replace(hashTrim, '');
55 return currentHash.replace(hashTrim, '');
  /build/tools/droiddoc/templates-sdk/assets/
jquery-history.js 40 hash = '#' + hash.replace(hashTrim, '');
55 return currentHash.replace(hashTrim, '');
  /development/host/windows/prebuilt/usb/
Android.mk 17 @echo "Killing adb server so we can replace AdbWinApi.dll"
  /development/tools/idegen/src/
IntelliJ.java 85 iml = iml.replace("SOURCE_FOLDERS",
87 iml = iml.replace("JAR_ENTRIES", jarsXml.toString());
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
RealmCallbackTest.java 89 sb.replace(0, sb.length(), prompts[i]);
132 sb.replace(0, sb.length(), prompts[i]);
  /external/chromium/testing/gmock/test/
gmock_output_test.py 62 return s.replace('\r\n', '\n').replace('\r', '\n')
  /external/collada/include/dae/
daeUtils.h 30 // String replace function. Usage: replace("abcdef", "cd", "12") --> "ab12ef".
31 DLLSPEC std::string replace(const std::string& s,
32 const std::string& replace,
  /external/doclava/res/assets/templates/assets/
jquery-history.js 40 hash = '#' + hash.replace(hashTrim, '');
55 return currentHash.replace(hashTrim, '');
  /external/icu4c/i18n/
funcrepl.cpp 75 int32_t FunctionReplacer::replace(Replaceable& text, function in class:FunctionReplacer
82 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
  /external/javassist/src/main/javassist/
URLClassPath.java 89 = directory + classname.replace('.', '/') + ".class";
135 directory + classname.replace('.', '/') + ".class");
  /external/wpa_supplicant/
pmksa_cache.h 41 void *ctx, int replace),
64 void *ctx, int replace),
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
pmksa_cache.h 51 void *ctx, int replace),
74 void *ctx, int replace),
  /external/wpa_supplicant_8/src/rsn_supp/
pmksa_cache.h 51 void *ctx, int replace),
74 void *ctx, int replace),
  /frameworks/base/tools/preload/
Record.java 24 * names. In that case, manually replace the delimiter with something else.
94 line = line.replace(REPLACE_CLASSES[i], REPLACE_CLASSES[i+1]);
152 return typeName.replace("/", ".");
  /ndk/sources/host-tools/make-3.81/
expand.c 330 char *pattern, *replace, *ppercent, *rpercent;
343 replace = (char *) alloca (replace_end
345 *(replace++) = '%';
346 bcopy (replace_beg, replace,
348 replace[replace_end - replace_beg] = '\0';
361 rpercent = replace;
363 --replace;
366 o = patsubst_expand (o, value, pattern, replace,
328 char *pattern, *replace, *ppercent, *rpercent; local
  /sdk/sdkmanager/app/tests/com/android/sdkmanager/
AvdManagerTest.java 69 assertEquals("platforms/v0_0/skins/HVGA", map.get("skin.path").replace(File.separatorChar, '/'));
70 assertEquals("platforms/v0_0/images/", map.get("image.sysdir.1").replace(File.separatorChar, '/'));
  /external/collada/src/dae/
daeUtils.cpp 30 string cdom::replace(const string& s, const string& replace, const string& replaceWith) { function in class:cdom
31 if (replace.empty())
35 size_t pos1 = 0, pos2 = s.find(replace);
39 pos1 = pos2 + replace.length();
40 pos2 = s.find(replace, pos1);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGInlineText.cpp 50 RefPtr<StringImpl> newString = string->replace('\t', ' ');
51 newString = newString->replace('\n', ' ');
52 newString = newString->replace('\r', ' ');
61 RefPtr<StringImpl> newString = string->replace('\n', StringImpl::empty());
62 newString = newString->replace('\r', StringImpl::empty());
63 newString = newString->replace('\t', ' ');
  /external/webkit/Tools/CodeCoverage/
run-generate-coverage-data 72 file = file.replace('\\', '').replace('\n', '')
108 filepath = split[1][:-5].replace('#',os.path.sep)
114 filepath = split[1][:-5].replace('#',os.path.sep)
120 filepath = split[1][:-5].replace('#',os.path.sep)
124 basename=os.path.basename(cov_file).replace('#',os.path.sep)[:-5]
  /external/stlport/stlport/stl/
_rope.h 1710 static _RopeRep* replace(_RopeRep* __old, size_t __pos1, function in class:rope
1784 void replace(size_t __p, size_t __n, const _Self& __r) { function in class:rope
1789 void replace(size_t __p, size_t __n, function in class:rope
1795 void replace(size_t __p, size_t __n, _CharT __c) { function in class:rope
1800 void replace(size_t __p, size_t __n, const _CharT* __c_string) { function in class:rope
1805 void replace(size_t __p, size_t __n, function in class:rope
1811 void replace(size_t __p, size_t __n, function in class:rope
1817 void replace(size_t __p, size_t __n, function in class:rope
1824 void replace(size_t __p, _CharT __c) { function in class:rope
1830 void replace(size_t __p, const _Self& __r) { function in class:rope
1834 void replace(size_t __p, const _CharT* __i, size_t __i_len) { function in class:rope
1838 void replace(size_t __p, const _CharT* __c_string) { function in class:rope
1842 void replace(size_t __p, const _CharT* __i, const _CharT* __j) { function in class:rope
1846 void replace(size_t __p, const const_iterator& __i, function in class:rope
1851 void replace(size_t __p, const iterator& __i, function in class:rope
1891 void replace(const iterator& __p, const iterator& __q, function in class:rope
1894 void replace(const iterator& __p, const iterator& __q, _CharT __c) function in class:rope
1896 void replace(const iterator& __p, const iterator& __q, function in class:rope
1899 void replace(const iterator& __p, const iterator& __q, function in class:rope
1902 void replace(const iterator& __p, const iterator& __q, function in class:rope
1905 void replace(const iterator& __p, const iterator& __q, function in class:rope
1908 void replace(const iterator& __p, const iterator& __q, function in class:rope
1913 void replace(const iterator& __p, const _Self& __r) function in class:rope
1915 void replace(const iterator& __p, _CharT __c) function in class:rope
1917 void replace(const iterator& __p, const _CharT* __c_string) function in class:rope
1919 void replace(const iterator& __p, const _CharT* __i, size_t __n) function in class:rope
1921 void replace(const iterator& __p, const _CharT* __i, const _CharT* __j) function in class:rope
1923 void replace(const iterator& __p, const_iterator __i, function in class:rope
1926 void replace(const iterator& __p, iterator __i, iterator __j) function in class:rope
    [all...]
  /external/v8/src/
string.js 189 function StringReplace(search, replace) {
194 %_Log('regexp', 'regexp-replace,%0r,%1S', [search, subject]);
195 if (IS_FUNCTION(replace)) {
197 return StringReplaceGlobalRegExpWithFunction(subject, search, replace);
201 replace);
206 TO_STRING_INLINE(replace),
221 // Compute the string to replace with.
222 if (IS_FUNCTION(replace)) {
227 replace));
231 replace = TO_STRING_INLINE(replace)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_rope.h 1710 static _RopeRep* replace(_RopeRep* __old, size_t __pos1, function in class:rope
1784 void replace(size_t __p, size_t __n, const _Self& __r) { function in class:rope
1789 void replace(size_t __p, size_t __n, function in class:rope
1795 void replace(size_t __p, size_t __n, _CharT __c) { function in class:rope
1800 void replace(size_t __p, size_t __n, const _CharT* __c_string) { function in class:rope
1805 void replace(size_t __p, size_t __n, function in class:rope
1811 void replace(size_t __p, size_t __n, function in class:rope
1817 void replace(size_t __p, size_t __n, function in class:rope
1824 void replace(size_t __p, _CharT __c) { function in class:rope
1830 void replace(size_t __p, const _Self& __r) { function in class:rope
1834 void replace(size_t __p, const _CharT* __i, size_t __i_len) { function in class:rope
1838 void replace(size_t __p, const _CharT* __c_string) { function in class:rope
1842 void replace(size_t __p, const _CharT* __i, const _CharT* __j) { function in class:rope
1846 void replace(size_t __p, const const_iterator& __i, function in class:rope
1851 void replace(size_t __p, const iterator& __i, function in class:rope
1891 void replace(const iterator& __p, const iterator& __q, function in class:rope
1894 void replace(const iterator& __p, const iterator& __q, _CharT __c) function in class:rope
1896 void replace(const iterator& __p, const iterator& __q, function in class:rope
1899 void replace(const iterator& __p, const iterator& __q, function in class:rope
1902 void replace(const iterator& __p, const iterator& __q, function in class:rope
1905 void replace(const iterator& __p, const iterator& __q, function in class:rope
1908 void replace(const iterator& __p, const iterator& __q, function in class:rope
1913 void replace(const iterator& __p, const _Self& __r) function in class:rope
1915 void replace(const iterator& __p, _CharT __c) function in class:rope
1917 void replace(const iterator& __p, const _CharT* __c_string) function in class:rope
1919 void replace(const iterator& __p, const _CharT* __i, size_t __n) function in class:rope
1921 void replace(const iterator& __p, const _CharT* __i, const _CharT* __j) function in class:rope
1923 void replace(const iterator& __p, const_iterator __i, function in class:rope
1926 void replace(const iterator& __p, iterator __i, iterator __j) function in class:rope
    [all...]

Completed in 2828 milliseconds

1 2 3 45 6 7 8 91011>>