Searched defs:replace (Results 26 - 50 of 198) sorted by relevance

12345678

/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
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 DReplaceable.java20 * during a replace operation, new characters take on the metadata of
35 * <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>
H A DReplaceableContextIterator.java137 public int replace(String text) { method in class:ReplaceableContextIterator
139 rep.replace(cpStart, cpLimit, text);
H A DReplaceableString.java131 * @param text new text to replace characters <code>start</code> to
134 public void replace(int start, int limit, String text) { method in class:ReplaceableString
135 buf.replace(start, limit, text);
144 * @param chars the text to replace characters <code>start</code>
150 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
176 replace(dest, dest, text, 0, limit - start);
H A DStringReplacer.java60 * @param theOutput text that will replace input text when the
61 * replace() method is called. May contain stand-in characters
64 * the replace() method
81 * @param theOutput text that will replace input text when the
82 * replace() method is called. May contain stand-in characters
112 public int replace(Replaceable text, method in class:StringReplacer
125 text.replace(start, limit, output);
160 text.replace(tempStart, tempStart, "\uFFFF");
181 // right context for previous replace() operations.
197 text.replace(destLimi
[all...]
/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/classes/core/src/com/ibm/icu/text/
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/classes/translit/src/com/ibm/icu/text/
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/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]);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DWildcard.java88 strings[i] = ((String)v).replace('.', '/');
102 public String replace(String value) { method in class:Wildcard
137 private static String replaceAllLiteral(Pattern pattern, String value, String replace) { argument
138 replace = replace.replaceAll("([$\\\\])", "\\\\$0");
139 return pattern.matcher(value).replaceAll(replace);
/external/javassist/src/main/javassist/convert/
H A DTransformAccessArrayField.java74 pos = replace(cp, iterator, pos, c, getLoadReplacementSignature(c));
78 pos = replace(cp, iterator, pos, c, getStoreReplacementSignature(c));
125 private int replace(ConstPool cp, CodeIterator iterator, int pos, method in class:TransformAccessArrayField
133 // Do not replace an AALOAD instruction that we do not have a type for
/external/javassist/src/main/javassist/expr/
H A DCast.java89 public void replace(String statement) throws CannotCompileException { method in class:Cast
H A DHandler.java97 public void replace(String statement) throws CannotCompileException { method in class:Handler
H A DInstanceof.java92 public void replace(String statement) throws CannotCompileException { method in class:Instanceof
H A DMethodCall.java178 public void replace(String statement) throws CannotCompileException { method in class:MethodCall
/external/parameter-framework/upstream/test/functional-tests/include/
H A DConfigFiles.hpp80 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);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSpannableStringBuilder.java30 public Editable replace(int st, int en, CharSequence text) { method in class:ShadowSpannableStringBuilder
31 builder.replace(st, en, text.toString());
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as35 * You can insert stuff, replace, and delete chunks. Note that the
137 public function replace(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void { function
143 throw new Error("replace: range invalid: "+fromIndex+".."+toIndex+"(size="+tokens.length+")");
287 * R.x-y.u = replace x-y indexed tokens with u
289 * First we need to examine replaces. For any replace op:
292 * 2. Drop any replace op before that is contained completely within
294 * 3. Throw exception upon boundary overlap with any previous replace.
299 * 2. for any prior replace with same left boundary, combine this
300 * insert with replace and delete this replace
[all...]
/external/clang/include/clang/AST/
H A DASTUnresolvedSet.h57 bool replace(const NamedDecl *Old, NamedDecl *New, AccessSpecifier AS) { function in class:clang::ASTUnresolvedSet
H A DUnresolvedSet.h88 bool replace(const NamedDecl* Old, NamedDecl *New) { function in class:clang::UnresolvedSetImpl
97 void replace(iterator I, NamedDecl *New) { I.I->setDecl(New); } function in class:clang::UnresolvedSetImpl
99 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) { function in class:clang::UnresolvedSetImpl
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicLongMap.java119 if (map.replace(key, atomic, new AtomicLong(delta))) {
168 if (map.replace(key, atomic, new AtomicLong(delta))) {
203 if (map.replace(key, atomic, new AtomicLong(newValue))) {
340 * first decrementing to zero, and then removing. putIfAbsent or replace could observe the
345 * - Define putIfAbsent and replace as treating zero and absent identically (as currently
349 * - Allow putIfAbsent and replace to distinguish between zero and absent, but don't implement
352 * replace(key, long).
378 if (map.replace(key, atomic, new AtomicLong(newValue))) {
397 boolean replace(K key, long expectedOldValue, long newValue) { method in class:AtomicLongMap
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMapMaker.java91 public boolean replace(K key, V oldValue, V newValue) { method in class:MapMaker.ExpiringComputingMap
100 public V replace(K key, V value) { method in class:MapMaker.ExpiringComputingMap
/external/harfbuzz_ng/src/
H A Dhb-blob.cc248 * @replace: whether to replace an existing data with the same key.
259 hb_bool_t replace)
261 return hb_object_set_user_data (blob, key, data, destroy, replace);
255 hb_blob_set_user_data(hb_blob_t *blob, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument

Completed in 5326 milliseconds

12345678