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

<<11121314151617181920>>

  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarCache.java 190 db.replace(DATABASE_NAME, null /* null column hack */, values);
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
pytree.py 132 def replace(self, new): member in class:Base
133 """Replace this node with a new one in the parent."""
673 If content is not None, replace the dot with the parenthesized
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stringold.py 402 def replace(s, old, new, maxsplit=0): function
403 """replace (str, old, new[, maxsplit]) -> string
410 return s.replace(old, new, maxsplit)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
pytree.py 132 def replace(self, new): member in class:Base
133 """Replace this node with a new one in the parent."""
673 If content is not None, replace the dot with the parenthesized
  /prebuilts/gdb/linux-x86/lib/python2.7/
stringold.py 402 def replace(s, old, new, maxsplit=0): function
403 """replace (str, old, new[, maxsplit]) -> string
410 return s.replace(old, new, maxsplit)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
pytree.py 132 def replace(self, new): member in class:Base
133 """Replace this node with a new one in the parent."""
673 If content is not None, replace the dot with the parenthesized
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 402 def replace(s, old, new, maxsplit=0): function
403 """replace (str, old, new[, maxsplit]) -> string
410 return s.replace(old, new, maxsplit)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
pytree.py 132 def replace(self, new): member in class:Base
133 """Replace this node with a new one in the parent."""
673 If content is not None, replace the dot with the parenthesized
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 402 def replace(s, old, new, maxsplit=0): function
403 """replace (str, old, new[, maxsplit]) -> string
410 return s.replace(old, new, maxsplit)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
CompletionProposal.java 224 document.replace(mReplacementOffset, mReplacementLength, mReplacementString);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
AbstractPropertiesFieldsPart.java 180 // replace old line by new one. This doesn't change the
183 doc.replace(info.getOffset(), info.getLength(), line);
193 AdtPlugin.log(e, "Failed to replace in export.properties");
204 // replace old line by new one
212 doc.replace(info.getOffset(), info.getLength(), line);
224 doc.replace(len, 0, line);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategyTest.java 49 document.replace(0, document.getLength(), newDocumentContent);
68 document.replace(c.offset, c.length, c.text);
  /system/netd/bpfloader/
BpfLoader.cpp 64 // The BPF instruction bytes that we need to replace. x is a placeholder (e.g., COOKIE_TAG_MAP).
73 // The bytes we'll replace them with. x is the actual fd number for the map at runtime.
98 std::array<uint8_t, MAP_CMD_SIZE> replace; member in struct:android::bpf::ReplacePattern
109 replace = MAP_REPLACE_PATTERN(beRealFd);
208 // replace, and if so, replace it.
214 memcpy(mapHead.base(), pattern.replace.data(), MAP_CMD_SIZE);
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringBuilderSpanTest.java 63 replace(original, replacement); method
68 private void replace(String original, String replacement) { method in class:SpannableStringBuilderSpanTest
117 if (DEBUG) System.out.println("#" + testCounter + ", replace \"" + original + "\" [" +
127 originalSpannable.replace(replaceStart, replaceEnd, replacementSpannable,
521 spannable.replace(2, spannable.length(), newText);
534 spannable.replace(2, spannable.length(), newText);
549 spannable.replace(0, spannable.length(), newText);
568 spannable.replace(spannable.length(), spannable.length(), newText);
584 spannable.replace(0, 1, newText);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptEditor.java 273 mContentText.getEditableText().replace(selectionStart, selectionEnd, text);
338 b.setTitle("Search and Replace");
342 b.setNegativeButton("Replace", this);
544 text.replace(start, end, edit.mmBefore);
562 text.replace(start, end, edit.mmAfter);
605 } else { // Replace
607 // Seems to be a bug in the android 2.2 implementation of replace... regions not returning
610 String replace = Matcher.quoteReplacement(replaceText); local
612 s = m.replaceAll(replace);
614 s = m.replaceFirst(replace);
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentHashMapTest.java 447 * replace fails when the given key is not present
451 assertNull(map.replace(six, "Z"));
456 * replace succeeds if the key is already present
460 assertNotNull(map.replace(one, "Z"));
465 * replace value fails when the given key not mapped to expected value
470 assertFalse(map.replace(one, "Z", "Z"));
475 * replace value succeeds when the given key mapped to expected value
480 assertTrue(map.replace(one, "A", "Z"));
678 * replace(null, x) throws NPE
683 c.replace(null, "whatever")
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileChannelImpl.java 1218 public void replace(FileLock fl1, FileLock fl2) { method in class:FileChannelImpl.SimpleFileLockTable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
string.py 513 def replace(s, old, new, maxreplace=-1): function
514 """replace (str, old, new[, maxreplace]) -> string
521 return s.replace(old, new, maxreplace)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserString.py 107 def replace(self, old, new, maxsplit=-1): member in class:UserString
108 return self.__class__(self.data.replace(old, new, maxsplit))
string.py 511 def replace(s, old, new, maxreplace=-1): function
512 """replace (str, old, new[, maxreplace]) -> string
519 return s.replace(old, new, maxreplace)
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 35 * You can insert stuff, replace, and delete chunks. Note that the
247 public void replace(int index, Object text) { method in class:TokenRewriteStream
248 replace(DEFAULT_PROGRAM_NAME, index, index, text); method
251 public void replace(int from, int to, Object text) { method in class:TokenRewriteStream
252 replace(DEFAULT_PROGRAM_NAME, from, to, text); method
255 public void replace(Token indexT, Object text) { method in class:TokenRewriteStream
256 replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text); method
259 public void replace(Token from, Token to, Object text) { method in class:TokenRewriteStream
260 replace(DEFAULT_PROGRAM_NAME, from, to, text); method
263 public void replace(String programName, int from, int to, Object text) method in class:TokenRewriteStream
273 public void replace(String programName, Token from, Token to, Object text) { method in class:TokenRewriteStream
274 replace(programName, method
297 replace(programName,from,to,null); method
301 replace(programName,from,to,null); method
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 1029 You can insert stuff, replace, and delete chunks. Note that the
1168 def replace(self, *args): member in class:TokenRewriteStream
    [all...]
  /external/elfutils/tests/
elfstrmerge.c 38 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/src/com/google/common/collect/
MapMaker.java 294 * {@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
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalLoadingCacheTest.java 150 assertSame(one, map.replace(one, two));
154 assertTrue(map.replace(one, two, three));
252 assertSame(two, map.replace(one, three));
254 assertFalse(map.replace(one, two, three));
256 assertTrue(map.replace(one, three, two));

Completed in 1659 milliseconds

<<11121314151617181920>>