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

12 3 4 5 6 7 8 91011>>

  /external/annotation-tools/scene-lib/src/annotations/util/coll/
KeyedSet.java 50 public static final int REPLACE = 1;
83 public abstract V replace(V v); method in interface:KeyedSet
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Utils.java 53 a string to replace, replacee,
54 and a string to replace with, replacer,
61 public static String replace(String src, String replacee, String replacer) { method in class:Utils
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RemoveTransliterator.java 52 text.replace(index.start, index.limit, "");
Replaceable.java 22 * during a replace operation, new characters take on the metadata of
37 * <code>replace()</code> is the following:
108 * limit is equal to the replacement text, that replace has no
118 * @param text the text to replace characters <code>start</code>
121 void replace(int start, int limit, String text); method in interface:Replaceable
127 * limit is equal to the replacement text, that replace has no
137 * @param chars the text to replace characters <code>start</code>
143 void replace(int start, int limit, char[] chars, method in interface:Replaceable
157 * replace(dest, dest, text, 0, limit - start);</pre>
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...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
ReplaceableTest.java 144 public void replace(int start, int limit, String text) { method in class:ReplaceableTest.TestReplaceable
146 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
148 chars.replace(start, limit, text);
154 public void replace(int start, int limit, char[] charArray, method in class:ReplaceableTest.TestReplaceable
157 this.chars.replace(start, limit, charArray, charsStart, charsLen);
182 styles.replace(start, limit, s.toString());
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Replaceable.java 21 * during a replace operation, new characters take on the metadata of
36 * <code>replace()</code> is the following:
112 * limit is equal to the replacement text, that replace has no
122 * @param text the text to replace characters <code>start</code>
126 void replace(int start, int limit, String text); method in interface:Replaceable
132 * limit is equal to the replacement text, that replace has no
142 * @param chars the text to replace characters <code>start</code>
149 void replace(int start, int limit, char[] chars, method in interface:Replaceable
163 * replace(dest, dest, text, 0, limit - start);</pre>
  /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...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
ReplaceableTest.java 141 public void replace(int start, int limit, String text) { method in class:ReplaceableTest.TestReplaceable
143 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
145 chars.replace(start, limit, text);
151 public void replace(int start, int limit, char[] charArray, method in class:ReplaceableTest.TestReplaceable
154 this.chars.replace(start, limit, charArray, charsStart, charsLen);
179 styles.replace(start, limit, s.toString());
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
Java5Validator.java 39 replace(noGenerics, genericsWithoutDiamondOperator); method
Java9Validator.java 27 replace(modifiersWithoutPrivateInterfaceMethods, modifiers); method
28 replace(tryWithLimitedResources, tryWithResources); method
Validators.java 30 public Validators replace(Validator oldValidator, Validator newValidator) { method in class:Validators
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/version/
PostProcessors.java 34 public PostProcessors replace(PostProcessor oldProcessor, PostProcessor newProcessor) { method in class:PostProcessors
  /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
  /external/tensorflow/tensorflow/contrib/tpu/python/tpu/
tpu_config.py 185 def replace(self, **kwargs): member in class:RunConfig
187 return super(RunConfig, self).replace(**kwargs)
190 new_instance = super(RunConfig, self).replace(**kwargs)
  /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
  /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 );

Completed in 1145 milliseconds

12 3 4 5 6 7 8 91011>>