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

123456

/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/v8/test/mjsunit/
H A Dstring-oom-replace-regexp-global-with-function.js10 function replace() { function
11 a.replace(/a/g, function() { return b });
14 assertThrows(replace, RangeError);
/external/icu/icu4c/source/common/unicode/
H A Durep.h100 * @param text the new text to replace the UChars from
106 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/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/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeReplacer.java15 * replace a range of characters in a Replaceable string with output
39 public abstract int replace(Replaceable text, method in interface:UnicodeReplacer
H A DReplaceable.java19 * during a replace operation, new characters take on the metadata of
34 * <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>
H A DReplaceableContextIterator.java136 public int replace(String text) { method in class:ReplaceableContextIterator
138 rep.replace(cpStart, cpLimit, text);
H A DReplaceableString.java139 * @param text new text to replace characters <code>start</code> to
143 public void replace(int start, int limit, String text) { method in class:ReplaceableString
144 buf.replace(start, limit, text);
153 * @param chars the text to replace characters <code>start</code>
160 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
187 replace(dest, dest, text, 0, limit - start);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DVariableReplacer.java24 public String replace(String source) { method in class:VariableReplacer
/external/clang/tools/clang-format/
H A Dclang-format.el94 (defun clang-format--replace (offset length &optional text)
155 (apply #'clang-format--replace rpl))
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DFunctionReplacer.java47 public int replace(Replaceable text, method in class:FunctionReplacer
53 int len = replacer.replace(text, start, limit, cursor);
H A DStringReplacer.java59 * @param theOutput text that will replace input text when the
60 * replace() method is called. May contain stand-in characters
63 * the replace() method
80 * @param theOutput text that will replace input text when the
81 * replace() method is called. May contain stand-in characters
111 public int replace(Replaceable text, method in class:StringReplacer
124 text.replace(start, limit, output);
159 text.replace(tempStart, tempStart, "\uFFFF");
180 // right context for previous replace() operations.
196 text.replace(destLimi
[all...]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DTestUtility.java38 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 )
/external/icu/icu4c/source/i18n/
H A Dfuncrepl.cpp78 int32_t FunctionReplacer::replace(Replaceable& text, function in class:FunctionReplacer
85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
H A DFileUtilities.java40 line = replace(line, replacementList[i], replacementList[i+1]);
51 public static String replace(String source, String piece, String replacement) { method in class:FileUtilities
62 public static String replace(String source, String[][] replacements) { method in class:FileUtilities
63 return replace(source, replacements, replacements.length);
66 public static String replace(String source, String[][] replacements, int count) { method in class:FileUtilities
68 source = replace(source, replacements[i][0], replacements[i][1]);
73 public static String replace(String source, String[][] replacements, boolean reverse) { method in class:FileUtilities
74 if (!reverse) return replace(source, replacements);
76 source = replace(source, replacements[i][1], replacements[i][0]);

Completed in 9526 milliseconds

123456