HomeSort by relevance Sort by last modified time
    Searched defs:replace (Results 26 - 50 of 1467) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
RemoveTransliterator.java 51 text.replace(index.start, index.limit, "");
StringReplacer.java 61 * @param theOutput text that will replace input text when the
62 * replace() method is called. May contain stand-in characters
65 * the replace() method
82 * @param theOutput text that will replace input text when the
83 * replace() method is called. May contain stand-in characters
114 public int replace(Replaceable text, method in class:StringReplacer
127 text.replace(start, limit, output);
162 text.replace(tempStart, tempStart, "\uFFFF");
183 // right context for previous replace() operations.
199 text.replace(destLimit, destLimit, buf.toString())
    [all...]
FunctionReplacer.java 50 public int replace(Replaceable text, method in class:FunctionReplacer
56 int len = replacer.replace(text, start, limit, cursor);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
ReplaceableTest.java 130 public void replace(int start, int limit, String text) { method in class:ReplaceableTest.TestReplaceable
132 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
134 chars.replace(start, limit, text);
139 public void replace(int start, int limit, char[] charArray, method in class:ReplaceableTest.TestReplaceable
142 this.chars.replace(start, limit, charArray, charsStart, charsLen);
167 styles.replace(start, limit, s.toString());
TestUtility.java 40 public static String replace(String source, String toBeReplaced, String replacement) { method in class:TestUtility
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
SingleConversionRule.java 65 * @see org.slf4j.converter.ConversionRule#replace(java.util.regex.Matcher)
67 public String replace(Matcher matcher) { method in class:SingleConversionRule
MultiGroupConversionRule.java 78 * @see org.slf4j.converter.ConversionRule#replace(java.util.regex.Matcher)
80 public String replace(Matcher matcher) { method in class:MultiGroupConversionRule
  /external/v8/tools/
isolate_driver.py 231 '.', temp_isolate_dir).replace(os.path.sep, '/')
252 '<(PRODUCT_DIR)/%s' % i.replace(os.path.sep, '/')
291 def replace(index): function in function:rebase_directories
295 replace(i + 1)
298 replace(i + 2)
  /frameworks/base/core/java/android/text/
Editable.java 52 public Editable replace(int st, int en, CharSequence source, int start, int end); method in interface:Editable
55 * Convenience for replace(st, en, text, 0, text.length())
56 * @see #replace(int, int, CharSequence, int, int)
58 public Editable replace(int st, int en, CharSequence text); method in interface:Editable
61 * Convenience for replace(where, where, text, start, end)
62 * @see #replace(int, int, CharSequence, int, int)
67 * Convenience for replace(where, where, text, 0, text.length());
68 * @see #replace(int, int, CharSequence, int, int)
73 * Convenience for replace(st, en, "", 0, 0)
74 * @see #replace(int, int, CharSequence, int, int
    [all...]
  /prebuilts/go/darwin-x86/src/html/template/
js.go 167 return fmt.Sprintf(" /* %s */null ", strings.Replace(err.Error(), "*/", "* /", -1))
223 return replace(s, jsStrNormReplacementTable)
225 return replace(s, jsStrReplacementTable)
234 s = replace(s, jsRegexpReplacementTable)
242 // replace replaces each rune r of s with replacementTable[r], provided that
247 func replace(s string, replacementTable []string) string { func
  /prebuilts/go/linux-x86/src/html/template/
js.go 167 return fmt.Sprintf(" /* %s */null ", strings.Replace(err.Error(), "*/", "* /", -1))
223 return replace(s, jsStrNormReplacementTable)
225 return replace(s, jsStrReplacementTable)
234 s = replace(s, jsRegexpReplacementTable)
242 // replace replaces each rune r of s with replacementTable[r], provided that
247 func replace(s string, replacementTable []string) string { func
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringMatcher.java 242 public int replace(Replaceable text, method in class:StringMatcher
260 text.replace(start, limit, ""); // delete original text
StringReplacer.java 62 * @param theOutput text that will replace input text when the
63 * replace() method is called. May contain stand-in characters
66 * the replace() method
83 * @param theOutput text that will replace input text when the
84 * replace() method is called. May contain stand-in characters
115 public int replace(Replaceable text, method in class:StringReplacer
128 text.replace(start, limit, output);
163 text.replace(tempStart, tempStart, "\uFFFF");
184 // right context for previous replace() operations.
200 text.replace(destLimit, destLimit, buf.toString())
    [all...]
FunctionReplacer.java 51 public int replace(Replaceable text, method in class:FunctionReplacer
57 int len = replacer.replace(text, start, limit, cursor);
  /frameworks/base/core/java/android/widget/
MultiAutoCompleteTextView.java 155 e.replace(start, i, "");
157 e.replace(start, i,
200 editable.replace(start, end, mTokenizer.terminateToken(text));
  /libcore/ojluni/src/main/java/java/lang/
StringBuilder.java 262 public StringBuilder replace(int start, int end, String str) { method in class:StringBuilder
263 super.replace(start, end, str);
  /development/samples/training/basic/FragmentBasics/src/com/example/fragments/
MainActivity.java 78 // Replace whatever is in the fragment_container view with this fragment,
80 transaction.replace(R.id.fragment_container, newFragment);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 96 public static string replace( string str, char oldValue, char newValue ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
109 return System.Text.RegularExpressions.Regex.Replace( str, regex, newValue );
114 return System.Text.RegularExpressions.Regex.Replace( str, regex, replacement );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 97 public static string replace(this string str, char oldValue, char newValue) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
99 return str.Replace(oldValue, newValue);
105 return Regex.Replace( str, regex, newValue );
110 return Regex.Replace( str, regex, replacement );
  /external/clang/tools/clang-format/
clang-format.el 95 (defun clang-format--replace (offset length &optional text)
156 (apply #'clang-format--replace rpl))
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentHashMap.java 73 public boolean replace(K key, V oldValue, V newValue) { method in class:ConcurrentHashMap
84 public V replace(K key, V value) { method in class:ConcurrentHashMap
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TestUtility.java 41 public static String replace(String source, String toBeReplaced, String replacement) { method in class:TestUtility
  /external/icu/icu4c/source/i18n/
funcrepl.cpp 80 int32_t FunctionReplacer::replace(Replaceable& text, function in class:FunctionReplacer
87 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
ReplaceIcuTags.java 45 rewrite.replace(tag, createIcuMarker(ast), null /* editGroup */);
49 rewrite.replace(tag, createIcuUsageText(ast), null /* editGroup */);
59 rewrite.replace(tag, createIcuEnhancementText(ast, element), null /* editGroup */);
63 rewrite.replace(tag, createIcuNoteText(ast), null /* editGroup */);
68 rewrite.replace(tag, createDiscouragedText(ast, element), null /* editGroup */);
  /external/parameter-framework/upstream/test/functional-tests/include/
ConfigFiles.hpp 80 replace(format, '{' + sub.first + '}', sub.second);
85 void replace(std::string &on, const std::string &from, const std::string &to) function in class:parameterFramework::ConfigFiles
89 on.replace(from_pos, from.length(), to);

Completed in 558 milliseconds

12 3 4 5 6 7 8 91011>>