HomeSort by relevance Sort by last modified time
    Searched defs:replace (Results 1 - 25 of 479) 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/chromium_org/third_party/WebKit/Source/core/inspector/
inline-javascript-imports.py 56 def replace(match): function in function:main
68 outputScript = re.sub(r'importScripts?\([\'"]([^\'"]+)[\'"]\)', replace, inputScript)
  /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
ConcurrentHashMap.java 73 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
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentMap.java 16 * {@code putIfAbsent}, {@code remove}, and {@code replace} methods.
112 boolean replace(K key, V oldValue, V newValue); method in interface:ConcurrentMap
141 V replace(K key, V value); method in interface:ConcurrentMap
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
inline_js_imports.py 58 def replace(match): function in function:main
70 output_script = re.sub(r'importScripts?\([\'"]([^\'"]+)[\'"]\)', replace, input_script)
  /external/chromium_org/third_party/icu/source/common/unicode/
urep.h 100 * @param text the new text to replace the UChars from
106 void (*replace)(UReplaceable* rep, member in struct:UReplaceableCallbacks
  /external/chromium_org/tools/gyp/pylib/gyp/
easy_xml.py 117 xml_string = xml_string.replace('\n', '\r\n')
151 def replace(match): function in function:_XmlEscape
153 # don't replace single quotes in attrs
157 return _xml_escape_re.sub(replace, value)
  /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/icu4c/common/unicode/
urep.h 100 * @param text the new text to replace the UChars from
106 void (*replace)(UReplaceable* rep, member in struct:UReplaceableCallbacks
  /external/robolectric/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/chromium_org/third_party/icu/source/i18n/
funcrepl.cpp 75 int32_t FunctionReplacer::replace(Replaceable& text, function in class:FunctionReplacer
82 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
unicodestring.cc 60 void UnicodeString::replace(int start, int length, const UnicodeString& src) { function in class:i18n::phonenumbers::UnicodeString
  /external/oprofile/libregex/
op_regex.h 5 * and replace facility.
35 * lightweight encapsulation of regex lib search and replace
42 * @param limit limit on number of search and replace done
47 * & replace, preparing it for substitution ala sed
55 * @param replace the string to subsitute in other regular definition
60 std::string const & replace);
63 * @param replace the replace string to use when this regular
66 * You can imbed regular definition in pattern but not in replace.
69 std::string const & replace);
89 std::string replace; member in struct:regular_expression_replace::replace_t
    [all...]
  /external/smali/util/src/main/java/ds/tree/
RadixTree.java 73 * Find an existing entry and replace it's value. If no existing entry, do nothing
79 public boolean replace(String key, final T value); method in interface:RadixTree
  /frameworks/base/core/java/android/text/
Editable.java 48 public Editable replace(int st, int en, CharSequence source, int start, int end); method in interface:Editable
51 * Convenience for replace(st, en, text, 0, text.length())
52 * @see #replace(int, int, CharSequence, int, int)
54 public Editable replace(int st, int en, CharSequence text); method in interface:Editable
57 * Convenience for replace(where, where, text, start, end)
58 * @see #replace(int, int, CharSequence, int, int)
63 * Convenience for replace(where, where, text, 0, text.length());
64 * @see #replace(int, int, CharSequence, int, int)
69 * Convenience for replace(st, en, "", 0, 0)
70 * @see #replace(int, int, CharSequence, int, int
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
sequence.hpp 62 // replace helper implementation ----------------------------------//
64 // Optimized version of replace for generic sequence containers
87 // Replace sequence is longer, insert it
94 // Replace sequence is shorter, erase the rest
128 // No native replace method
148 // Container has native replace method
160 Input.replace( From, To, Begin, End );
164 // replace helper -------------------------------------------------//
167 inline void replace( function in namespace:boost::algorithm::detail
179 inline void replace( function in namespace:boost::algorithm::detail
    [all...]
  /development/samples/training/basic/FragmentBasics/src/com/example/fragments/
MainActivity.java 78 // Replace whatever is in the fragment_container view with this fragment,
80 transaction.replace(R.id.fragment_container, newFragment);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 96 public static string replace( string str, char oldValue, char newValue ) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
109 return System.Text.RegularExpressions.Regex.Replace( str, regex, newValue );
114 return System.Text.RegularExpressions.Regex.Replace( str, regex, replacement );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 97 public static string replace(this string str, char oldValue, char newValue) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
99 return str.Replace(oldValue, newValue);
105 return Regex.Replace( str, regex, newValue );
110 return Regex.Replace( str, regex, replacement );
  /external/clang/include/clang/AST/
ASTUnresolvedSet.h 51 bool replace(const NamedDecl* Old, NamedDecl *New, AccessSpecifier AS) { function in class:clang::ASTUnresolvedSet
  /external/icu4c/i18n/
funcrepl.cpp 78 int32_t FunctionReplacer::replace(Replaceable& text, function in class:FunctionReplacer
85 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeAllocator.h 61 replace(pClient);
76 /// replace - be the agent of client.
77 void replace(NodeFactory& pClient) { function in class:mcld::NodeFactory
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditable.java 35 replace(int start, int end, CharSequence tb, int tbstart, int tbend) { method in class:CalculatorEditable
37 return super.replace(start, end, tb, tbstart, tbend);
57 delta = delta.replace(ORIGINALS[i], REPLACEMENTS[i]);
71 return super.replace(start, end, "");
79 return super.replace(start, end, "");
93 return super.replace(start, end, "");
96 return super.replace(start, end, delta);

Completed in 600 milliseconds

1 2 3 4 5 6 7 8 91011>>