Searched defs:replace (Results 76 - 100 of 198) sorted by relevance

12345678

/external/jetty/src/java/org/eclipse/jetty/util/
H A DStringUtil.java186 * replace substrings within string.
188 public static String replace(String s, String sub, String with) method in class:StringUtil
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSQLiteDatabase.java84 public long replace(String table, String nullColumnHack, ContentValues values) { method in class:ShadowSQLiteDatabase
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestFragmentManager.java141 public void addFragment(int containerViewId, String tag, Fragment fragment, boolean replace) { argument
148 shadowFragment.setShouldReplace(replace);
H A DTestFragmentTransaction.java50 public FragmentTransaction replace(int containerViewId, Fragment fragment) { method in class:TestFragmentTransaction
51 return replace(containerViewId, fragment, null);
55 public FragmentTransaction replace(int containerViewId, Fragment fragment, String tag) { method in class:TestFragmentTransaction
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DFragmentTransactionTest.java66 txn.replace(id, fragment);
71 txn.replace(id, fragment, tag);
122 txn.replace(111, fragment).commit();
133 txn.replace(111, fragment, "tag1").commit();
280 public void addFragment(int containerViewId, String tag, Fragment fragment, boolean replace) { argument
285 addFragmentReplace = replace;
/external/skia/src/utils/
H A DSkRTConf.cpp234 static inline void str_replace(char *s, char search, char replace) { argument
237 *ptr = replace;
/external/testng/src/main/java/org/testng/remote/strprotocol/
H A DMessageHelper.java160 return message.replace('\n', LINE_SEP_DELIMITER_1).replace('\r', LINE_SEP_DELIMITER_2);
168 return replace(
169 replace(
170 replace(
171 replace(message, "\u0004", "\\u0004"),
182 return replace(
183 replace(
184 replace(
185 replace(messag
230 private static final String replace(String original, CharSequence target, CharSequence replacement) { method in class:MessageHelper
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py1029 You can insert stuff, replace, and delete chunks. Note that the
1168 def replace(self, *args): member in class:TokenRewriteStream
1200 "replace: range invalid: %d..%d (size=%d)"
1210 self.replace(*(list(args) + [None]))
1350 Delete special case of replace (text==null):
1365 R.x-y.u = replace x-y indexed tokens with u
1367 First we need to examine replaces. For any replace op:
1370 2. Drop any replace op before that is contained completely within
1372 3. Throw exception upon boundary overlap with any previous replace.
1377 2. for any prior replace wit
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMapMaker.java294 * {@link ConcurrentMap#replace(Object, Object, Object) replace(K, V, V)}, and may not be what you
320 * {@link ConcurrentMap#replace(Object, Object, Object) replace(K, V, V)}, and may not be what you
700 * {@link ConcurrentMap#replace(Object, Object)}, or
701 * {@link ConcurrentMap#replace(Object, Object, Object)}.
810 public V replace(K key, V value) { method in class:MapMaker.NullConcurrentMap
817 public boolean replace(K key, @Nullable V oldValue, V newValue) { method in class:MapMaker.NullConcurrentMap
/external/elfutils/tests/
H A Delfstrmerge.c38 static bool replace; variable
84 // if (replace)
154 /* Basic command line handling. Need to replace the input file? */
158 replace = argc == 2;
162 if (replace)
356 if (replace)
658 /* Finally replace the old file with the new merged strings file. */
659 if (replace)
665 if (replace)
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DLocalCache.java180 public boolean replace(K key, V oldValue, V newValue) { method in class:LocalCache
190 public V replace(K key, V value) { method in class:LocalCache
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUTF16.java1097 target.replace(offset16, offset16 + count, valueOf(char32));
1877 * UTF16.replace("mesquite in your cellar", 'e', 'o');<br>
1879 * UTF16.replace("JonL", 'q', 'x');<br>
1881 * UTF16.replace("Supplementary character \ud800\udc00", 0x10000, '!'); <br>
1883 * UTF16.replace("Supplementary character \ud800\udc00", 0xd800, '!'); <br>
1891 * @param newChar32 The new codepoint to replace oldChar32
1895 public static String replace(String source, int oldChar32, int newChar32) { method in class:UTF16
1919 result.replace(resultIndex, endResultIndex, newChar32Str);
1935 * UTF16.replace("mesquite in your cellar", "e", "o");<br>
1937 * UTF16.replace("mesquit
1955 public static String replace(String source, String oldStr, String newStr) { method in class:UTF16
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUTF16.java1147 target.replace(offset16, offset16 + count, valueOf(char32));
1943 * UTF16.replace("mesquite in your cellar", 'e', 'o');<br>
1945 * UTF16.replace("JonL", 'q', 'x');<br>
1947 * UTF16.replace("Supplementary character \ud800\udc00", 0x10000, '!'); <br>
1949 * UTF16.replace("Supplementary character \ud800\udc00", 0xd800, '!'); <br>
1957 * @param newChar32 The new codepoint to replace oldChar32
1962 public static String replace(String source, int oldChar32, int newChar32) { method in class:UTF16
1986 result.replace(resultIndex, endResultIndex, newChar32Str);
2002 * UTF16.replace("mesquite in your cellar", "e", "o");<br>
2004 * UTF16.replace("mesquit
2023 public static String replace(String source, String oldStr, String newStr) { method in class:UTF16
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-netrexx.jar ... boolean format private boolean keep private boolean logo private boolean replace private boolean savelog private java.io.File srcDir ...
/external/clang/include/clang/Sema/
H A DLookup.h600 void replace(NamedDecl *D) { function in class:clang::LookupResult::Filter
601 Results.Decls.replace(I-1, D);
606 void replace(NamedDecl *D, AccessSpecifier AS) { function in class:clang::LookupResult::Filter
607 Results.Decls.replace(I-1, D, AS);
/external/clang/lib/ARCMigrate/
H A DTransformActions.cpp138 void replace(SourceRange range, StringRef text);
139 void replace(SourceRange range, SourceRange replacementRange);
321 void TransformActionsImpl::replace(SourceRange range, StringRef text) { function in class:TransformActionsImpl
328 void TransformActionsImpl::replace(SourceRange range, function in class:TransformActionsImpl
640 void TransformActions::replace(SourceRange range, StringRef text) { function in class:TransformActions
641 static_cast<TransformActionsImpl*>(Impl)->replace(range, text);
644 void TransformActions::replace(SourceRange range, function in class:TransformActions
646 static_cast<TransformActionsImpl*>(Impl)->replace(range, replacementRange);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DTestResultsGenerator.java232 replace(testResultsTemplateString, compileLogsToken, String.valueOf(compilerString));
235 replace(testResultsTemplateString, accessesLogsToken, String.valueOf(accessesString));
267 stringBuffer.replace(
347 buffer.replace(
572 replace(
596 return xmlFileCanonicalPath.substring(rootCanonicalPath.length() + 1).replace('\\', '/');
601 private String replace( method in class:TestResultsGenerator
636 replace(
642 dropTemplateString = replace(dropTemplateString,"%testsStatus%",testResultsStatus);
657 replace(
[all...]
/external/harfbuzz_ng/src/
H A Dhb-buffer.cc778 * @replace:
791 hb_bool_t replace)
793 return hb_object_set_user_data (buffer, key, data, destroy, replace);
787 hb_buffer_set_user_data(hb_buffer_t *buffer, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
H A Dhb-font.cc480 * @replace:
493 hb_bool_t replace)
495 return hb_object_set_user_data (ffuncs, key, data, destroy, replace);
1261 * @replace:
1274 hb_bool_t replace)
1276 return hb_object_set_user_data (font, key, data, destroy, replace);
489 hb_font_funcs_set_user_data(hb_font_funcs_t *ffuncs, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
1270 hb_font_set_user_data(hb_font_t *font, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DPick.java69 public Pick replace(String toReplace, Pick replacement) { method in class:Pick
522 // Note: each visitor should return the Pick that will replace a (or a itself)
/external/icu/icu4c/source/common/unicode/
H A Dunistr.h1871 * @param srcText The text containing the characters to replace
1899 * @param src The text containing the characters to replace.
1953 * @param ch the code unit to replace
1962 * @param ch the code point to replace
1991 * replace string.
2338 * @param start the offset at which the replace operation begins
2339 * @param length the number of characters to replace. The character at
2345 * the replace string
2349 UnicodeString& replace(int32_t start,
2360 * @param start the offset at which the replace operatio
4296 UnicodeString::replace(int32_t start, function in class:UnicodeString
4302 UnicodeString::replace(int32_t start, function in class:UnicodeString
4310 UnicodeString::replace(int32_t start, function in class:UnicodeString
4317 UnicodeString::replace(int32_t start, function in class:UnicodeString
4325 UnicodeString::replace(int32_t start, function in class:UnicodeString
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DPick.java68 public Pick replace(String toReplace, Pick replacement) { method in class:Pick
521 // Note: each visitor should return the Pick that will replace a (or a itself)
/external/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp370 void replace(const SCEV *IterCount);
1260 void LoopReroll::DAGRootTracker::replace(const SCEV *IterCount) { function in class:LoopReroll::DAGRootTracker
1468 DAGRoots.replace(IterCount);
/external/lzma/CPP/7zip/UI/Common/
H A DArchiveExtractCallback.cpp701 bool replace = _isAltStream ? local
706 MakeCorrectPath(_directoryPath.IsEmpty(), pathParts, replace);
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.cpp164 // Check if we can replace this definition's value by the value in @rep,
201 ValueDef::replace(const ValueRef &repVal, bool doSet) function in class:nv50_ir::ValueDef

Completed in 6866 milliseconds

12345678