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

1 2 3 4 5 6 7 8 91011>>

  /development/scripts/
combine_sdks.sh 3 function replace() function
67 # replace tools/emulator # at this time we do not want the exe from SDK1.x
68 replace tools/lib/images
69 replace tools/lib/res
70 replace tools/lib/fonts
71 replace tools/lib/layoutlib.jar
72 replace docs
73 replace android.jar
76 replace tools/lib/$i.txt
80 replace usb_drive
    [all...]
  /external/slf4j/
binderVersion.pl 14 sub replace () { subroutine
41 do replace($ARG);
version.pl 11 sub replace () { subroutine
40 do replace($ARG);
  /sdk/eclipse/scripts/
update_version.sh 32 function replace() { function
51 replace "$i"
67 replace "$i"
72 # want to replace those automatically as it could be something else.
  /external/autotest/client/site_tests/platform_CryptohomeNonDirs/
platform_CryptohomeNonDirs.py 23 def replace(self, src, dest): member in class:platform_CryptohomeNonDirs
64 self.replace(parent_path + '.old', parent_path)
75 self.replace(parent_path + '.old', parent_path)
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentMap.java 32 V replace(K key, V value); method in interface:ConcurrentMap
34 boolean replace(K key, V oldValue, V newValue); method in interface:ConcurrentMap
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeReplacer.java 18 * replace a range of characters in a Replaceable string with output
26 * Replace characters in 'text' from 'start' to 'limit' with the
42 public abstract int replace(Replaceable text, method in interface:UnicodeReplacer
ReplaceableContextIterator.java 133 * Replace the current code point by its case mapping,
139 public int replace(String text) { method in class:ReplaceableContextIterator
141 rep.replace(cpStart, cpLimit, text);
ReplaceableString.java 130 * Replace zero or more characters with new characters.
136 * @param text new text to replace characters <code>start</code> to
140 public void replace(int start, int limit, String text) { method in class:ReplaceableString
141 buf.replace(start, limit, text);
145 * Replace a substring of this object with the given text.
150 * @param chars the text to replace characters <code>start</code>
157 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
184 replace(dest, dest, text, 0, limit - start); method
  /external/guava/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 52 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/icu/icu4c/source/common/unicode/
urep.h 102 * @param text the new text to replace the UChars from
108 void (*replace)(UReplaceable* rep, member in struct:UReplaceableCallbacks
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeReplacer.java 17 * replace a range of characters in a Replaceable string with output
25 * Replace characters in 'text' from 'start' to 'limit' with the
41 public abstract int replace(Replaceable text, method in interface:UnicodeReplacer
ReplaceableContextIterator.java 132 * Replace the current code point by its case mapping,
138 public int replace(String text) { method in class:ReplaceableContextIterator
140 rep.replace(cpStart, cpLimit, text);
ReplaceableString.java 138 * Replace zero or more characters with new characters.
144 * @param text new text to replace characters <code>start</code> to
149 public void replace(int start, int limit, String text) { method in class:ReplaceableString
150 buf.replace(start, limit, text);
154 * Replace a substring of this object with the given text.
159 * @param chars the text to replace characters <code>start</code>
167 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
195 replace(dest, dest, text, 0, limit - start); method
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
Java11Validator.java 14 replace(varOnlyOnLocalVariableDefinitionAndFor, varAlsoInLambdaParameters); method
Java1_1Validator.java 19 replace(noInnerClasses, innerClasses); method
Java1_2Validator.java 14 replace(modifiersWithoutStrictfpAndDefaultAndStaticInterfaceMethodsAndPrivateInterfaceMethods, modifiersWithoutDefaultAndStaticInterfaceMethodsAndPrivateInterfaceMethods); method
Java7Validator.java 33 replace(tryWithoutResources, tryWithLimitedResources); method
37 replace(noMultiCatch, multiCatch); method
Java8Validator.java 25 replace(modifiersWithoutDefaultAndStaticInterfaceMethodsAndPrivateInterfaceMethods, modifiersWithoutPrivateInterfaceMethods); method
  /external/python/cpython2/Demo/turtle/
tdemo_lindenmayer_indian.py 30 def replace( seq, replacementRules, n ): function
68 drawing = replace(snake_start, snake_replacementRules, 3)
111 drawing = replace(krishna_start, krishna_replacementRules, 3)
  /external/python/cpython3/Lib/turtledemo/
lindenmayer.py 30 def replace( seq, replacementRules, n ): function
68 drawing = replace(snake_start, snake_replacementRules, 3)
111 drawing = replace(krishna_start, krishna_replacementRules, 3)
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
ConversionRule.java 35 * Given replacement rules, replace each capturing group in matcher's pattern
40 public String replace(Matcher matcher); method in interface:ConversionRule
  /external/tensorflow/tensorflow/contrib/py2tf/pyct/
templates.py 35 """Replace AST nodes."""
123 def replace(template, **replacements): function
124 """Replace placeholders in a Python template.
  /frameworks/base/libs/hwui/debug/
GlesDriver.cpp 33 std::unique_ptr<GlesDriver> GlesDriver::replace(std::unique_ptr<GlesDriver>&& driver) { function in class:android::uirenderer::debug::GlesDriver
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSpannableStringBuilder.java 30 public Editable replace(int st, int en, CharSequence text) { method in class:ShadowSpannableStringBuilder
31 builder.replace(st, en, text.toString());

Completed in 519 milliseconds

1 2 3 4 5 6 7 8 91011>>