Searched defs:replace (Results 1 - 25 of 205) sorted by relevance

123456789

/external/slf4j/
H A DbinderVersion.pl14 sub replace () { subroutine
41 do replace($ARG);
H A Dversion.pl11 sub replace () { subroutine
40 do replace($ARG);
/external/icu/icu4c/source/common/unicode/
H A Durep.h102 * @param text the new text to replace the UChars from
108 void (*replace)(UReplaceable* rep, member in struct:UReplaceableCallbacks
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
H A DConversionRule.java35 * Given replacement rules, replace each capturing group in matcher's pattern
40 public String replace(Matcher matcher); method in interface:ConversionRule
H A DMultiGroupConversionRule.java78 * @see org.slf4j.converter.ConversionRule#replace(java.util.regex.Matcher)
80 public String replace(Matcher matcher) { method in class:MultiGroupConversionRule
H A DSingleConversionRule.java65 * @see org.slf4j.converter.ConversionRule#replace(java.util.regex.Matcher)
67 public String replace(Matcher matcher) { method in class:SingleConversionRule
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DUtils.java53 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/autotest/client/site_tests/platform_CryptohomeNonDirs/
H A Dplatform_CryptohomeNonDirs.py19 def replace(self, src, dest): member in class:platform_CryptohomeNonDirs
62 self.replace(parent_path + '.old', parent_path)
73 self.replace(parent_path + '.old', parent_path)
/external/guava/guava/src/com/google/common/collect/
H A DForwardingConcurrentMap.java52 public V replace(K key, V value) { method in class:ForwardingConcurrentMap
53 return delegate().replace(key, value);
57 public boolean replace(K key, V oldValue, V newValue) { method in class:ForwardingConcurrentMap
58 return delegate().replace(key, oldValue, newValue);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentMap.java32 V replace(K key, V value); method in interface:ConcurrentMap
34 boolean replace(K key, V oldValue, V newValue); method in interface:ConcurrentMap
H A DConcurrentHashMap.java73 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/java/android/icu/text/
H A DUnicodeReplacer.java18 * replace a range of characters in a Replaceable string with output
42 public abstract int replace(Replaceable text, method in interface:UnicodeReplacer
H A DFunctionReplacer.java51 public int replace(Replaceable text, method in class:FunctionReplacer
57 int len = replacer.replace(text, start, limit, cursor);
H A DReplaceable.java22 * during a replace operation, new characters take on the metadata of
37 * <code>replace()</code> is the following:
110 * limit is equal to the replacement text, that replace has no
120 * @param text the text to replace characters <code>start</code>
123 void replace(int start, int limit, String text); method in interface:Replaceable
129 * limit is equal to the replacement text, that replace has no
139 * @param chars the text to replace characters <code>start</code>
145 void replace(int start, int limit, char[] chars, method in interface:Replaceable
159 * replace(dest, dest, text, 0, limit - start);</pre>
H A DReplaceableContextIterator.java139 public int replace(String text) { method in class:ReplaceableContextIterator
141 rep.replace(cpStart, cpLimit, text);
H A DReplaceableString.java133 * @param text new text to replace characters <code>start</code> to
136 public void replace(int start, int limit, String text) { method in class:ReplaceableString
137 buf.replace(start, limit, text);
146 * @param chars the text to replace characters <code>start</code>
152 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
178 replace(dest, dest, text, 0, limit - start);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
H A DTestUtility.java41 public static String replace(String source, String toBeReplaced, String replacement) { method in class:TestUtility
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeReplacer.java17 * replace a range of characters in a Replaceable string with output
41 public abstract int replace(Replaceable text, method in interface:UnicodeReplacer
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A Dupdate.py71 def _add(self, replace, section, name, *args):
72 """Add records. The first argument is the replace mode. If
88 if replace:
96 if replace:
104 if replace:
165 def replace(self, name, *args): member in class:Update
175 Note that if you want to replace the entire node, you should do
/external/clang/tools/clang-format/
H A Dclang-format.el95 (defun clang-format--replace (offset length &optional text)
156 (apply #'clang-format--replace rpl))
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DFunctionReplacer.java50 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/
H A DTestUtility.java40 public static String replace(String source, String toBeReplaced, String replacement) { method in class:TestUtility
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs96 public static string replace( string str, char oldValue, char newValue ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs97 public static string replace(this string str, char oldValue, char newValue) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb129 @operation_name = 'replace'.freeze
180 def replace( *range_arguments ) method in class:ANTLR3.RewriteProgram
260 @operations.replace( reduced )
408 def replace( *args ) method
409 @programs[ 'default' ].replace( *args )

Completed in 779 milliseconds

123456789