HomeSort by relevance Sort by last modified time
    Searched defs:replace (Results 1 - 25 of 1467) 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);
  /frameworks/support/samples/SupportLeanbackShowcase/
build-release.py 9 def replace(inputFile, pattern, newVal, ): function
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
25 replace(os.getcwd()+"/local.properties", r'(.*)LOCAL_REPO(.*)', 'LOCAL_REPO=')
26 replace(os.getcwd()+"/local.properties", r'(.*)LIBRARY_VERSION(.*)', 'LIBRARY_VERSION=')
build-local.py 9 def replace(inputFile, pattern, newVal, ): function
10 print 'About to replace repo path to {0} in {1}'.format(newVal, inputFile)
51 replace(os.getcwd()+"/local.properties", r'(.*)LOCAL_REPO(.*)', 'LOCAL_REPO='+repo_path)
52 replace(os.getcwd()+"/local.properties", r'(.*)LIBRARY_VERSION(.*)', 'LIBRARY_VERSION='+library_version)
  /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 19 def replace(self, src, dest): member in class:platform_CryptohomeNonDirs
62 self.replace(parent_path + '.old', parent_path)
73 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 127 * Replace zero or more characters with new characters.
133 * @param text new text to replace characters <code>start</code> to
136 public void replace(int start, int limit, String text) { method in class:ReplaceableString
137 buf.replace(start, limit, text);
141 * Replace a substring of this object with the given text.
146 * @param chars the text to replace characters <code>start</code>
152 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
178 replace(dest, dest, text, 0, limit - start); method
RemoveTransliterator.java 52 text.replace(index.start, index.limit, "");
Replaceable.java 22 * during a replace operation, new characters take on the metadata of
37 * <code>replace()</code> is the following:
110 * limit is equal to the replacement text, that replace has no
120 * @param text the text to replace characters <code>start</code>
123 void replace(int start, int limit, String text); method in interface:Replaceable
129 * limit is equal to the replacement text, that replace has no
139 * @param chars the text to replace characters <code>start</code>
145 void replace(int start, int limit, char[] chars, method in interface:Replaceable
159 * replace(dest, dest, text, 0, limit - start);</pre>
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
update.py 71 def _add(self, replace, section, name, *args):
72 """Add records. The first argument is the replace mode. If
88 if replace:
96 if replace:
104 if replace:
165 def replace(self, name, *args): member in class:Update
166 """Replace records. The first argument is always a name. The other
175 Note that if you want to replace the entire node, you should do
  /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 135 * Replace zero or more characters with new characters.
141 * @param text new text to replace characters <code>start</code> to
145 public void replace(int start, int limit, String text) { method in class:ReplaceableString
146 buf.replace(start, limit, text);
150 * Replace a substring of this object with the given text.
155 * @param chars the text to replace characters <code>start</code>
162 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
189 replace(dest, dest, text, 0, limit - start); method
Replaceable.java 21 * during a replace operation, new characters take on the metadata of
36 * <code>replace()</code> is the following:
114 * limit is equal to the replacement text, that replace has no
124 * @param text the text to replace characters <code>start</code>
128 void replace(int start, int limit, String text); method in interface:Replaceable
134 * limit is equal to the replacement text, that replace has no
144 * @param chars the text to replace characters <code>start</code>
151 void replace(int start, int limit, char[] chars, method in interface:Replaceable
165 * replace(dest, dest, text, 0, limit - start);</pre>
  /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
  /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());
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Utils.java 53 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/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
ReplaceableTest.java 131 public void replace(int start, int limit, String text) { method in class:ReplaceableTest.TestReplaceable
133 if (DEBUG) System.out.print(Utility.escape(toString() + " -> replace(" + start +
135 chars.replace(start, limit, text);
140 public void replace(int start, int limit, char[] charArray, method in class:ReplaceableTest.TestReplaceable
143 this.chars.replace(start, limit, charArray, charsStart, charsLen);
168 styles.replace(start, limit, s.toString());

Completed in 490 milliseconds

1 2 3 4 5 6 7 8 91011>>