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

1 2 3 4 5 6 7

  /frameworks/native/cmds/lshal/
utils.cpp 43 void replaceAll(std::string *s, char from, char to) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 107 public static string replaceAll( string str, string regex, string newValue )
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 103 public static string replaceAll( this string str, string regex, string newValue )
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TestUtility.java 57 public static String replaceAll(String source, UnicodeSet set, String replacement) {
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TestUtility.java 54 public static String replaceAll(String source, UnicodeSet set, String replacement) {
  /libcore/luni/src/test/java/libcore/java/util/
WeakHashMapTest.java 34 map.replaceAll((k, v) -> k.value);
41 map.replaceAll(new java.util.function.BiFunction<Data, String, String>() {
53 map.replaceAll(null);
63 map.replaceAll((k, v) -> null);
HashtableTest.java 85 ht.replaceAll((k, v) -> k + v);
92 ht.replaceAll(new java.util.function.BiFunction<String, String, String>() {
103 ht.replaceAll(null);
108 ht.replaceAll((k, v) -> null);
HashMapTest.java 232 map.replaceAll((k, v) -> k + v);
239 map.replaceAll((k, v) -> {
247 map.replaceAll(null);
LinkedHashMapTest.java 271 map.replaceAll((k, v) -> k + v);
278 map.replaceAll((k, v) -> {
286 map.replaceAll(null);
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentMap.java 287 default void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/
MapTest.java 89 map.replaceAll((k, v) -> {return v.toUpperCase();});
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/parametrization/
ResolvedTypeParametersMap.java 139 public ResolvedType replaceAll(ResolvedType type) {
  /libcore/ojluni/src/main/java/java/util/
List.java 409 default void replaceAll(UnaryOperator<E> operator) {
    [all...]
Map.java 673 default void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
    [all...]
Arrays.java     [all...]
  /system/core/libutils/
String16.cpp 376 status_t String16::replaceAll(char16_t replaceThis, char16_t withThis)
  /tools/tradefederation/core/src/com/android/tradefed/device/metric/
AtraceCollector.java 181 commandLine.add(entry.replaceAll(mLogProcessingTraceInput, trace.getAbsolutePath()));
  /external/deqp/external/openglcts/modules/gl/
gl4cTextureFilterMinmaxTests.cpp 89 void TextureFilterMinmaxUtils::SupportedTextureType::replaceAll(std::string& str, const std::string& from,
124 replaceAll(m_vertexShader, "<texcoord_type>", shaderTexcoordType);
125 replaceAll(m_fragmentShader, "<texcoord_type>", shaderTexcoordType);
126 replaceAll(m_fragmentShader, "<sampler_type>", shaderSamplerType);
  /frameworks/base/tools/incident_section_gen/
main.cpp 153 static string replaceAll(const string& fieldName, const char oldC, const string& newS) {
220 return replaceAll(field->full_name(), '.', "__");
226 return replaceAll(descriptor->full_name(), '.', "_") + "__MSG__" +
354 printf(" \"%s\",\n", replaceAll(p.patterns(j), '\\', "\\\\").c_str());
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
NodeList.java 361 * @see java.util.List#replaceAll(java.util.function.UnaryOperator)
364 public void replaceAll(UnaryOperator<N> operator) {
  /libcore/ojluni/src/main/java/java/util/regex/
Matcher.java 71 * #replaceAll replaceAll} method can be used to create a string in which every
760 public String replaceAll(String replacement) {
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/
regexp.go 484 b := re.replaceAll(nil, src, n, func(dst []byte, match []int) []byte {
494 return string(re.replaceAll(nil, src, 2, func(dst []byte, match []int) []byte {
504 b := re.replaceAll(nil, src, 2, func(dst []byte, match []int) []byte {
510 func (re *Regexp) replaceAll(bsrc []byte, src string, nmatch int, repl func(dst []byte, m []int) []byte) []byte {
575 // ReplaceAll returns a copy of src, replacing matches of the Regexp
578 func (re *Regexp) ReplaceAll(src, repl []byte) []byte {
584 b := re.replaceAll(src, "", n, func(dst []byte, match []int) []byte {
597 return re.replaceAll(src, "", 2, func(dst []byte, match []int) []byte {
607 return re.replaceAll(src, "", 2, func(dst []byte, match []int) []byte {
    [all...]
  /prebuilts/go/linux-x86/src/regexp/
regexp.go 484 b := re.replaceAll(nil, src, n, func(dst []byte, match []int) []byte {
494 return string(re.replaceAll(nil, src, 2, func(dst []byte, match []int) []byte {
504 b := re.replaceAll(nil, src, 2, func(dst []byte, match []int) []byte {
510 func (re *Regexp) replaceAll(bsrc []byte, src string, nmatch int, repl func(dst []byte, m []int) []byte) []byte {
575 // ReplaceAll returns a copy of src, replacing matches of the Regexp
578 func (re *Regexp) ReplaceAll(src, repl []byte) []byte {
584 b := re.replaceAll(src, "", n, func(dst []byte, match []int) []byte {
597 return re.replaceAll(src, "", 2, func(dst []byte, match []int) []byte {
607 return re.replaceAll(src, "", 2, func(dst []byte, match []int) []byte {
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
SortedList.java 56 * replaceAll).
62 * (addAll or replaceAll).
69 * operation (addAll or replaceAll).
214 * @see #replaceAll(T[])
216 public void replaceAll(@NonNull T[] items, boolean mayModifyInput) {
230 * @see #replaceAll(T[], boolean)
234 public void replaceAll(@NonNull T... items) {
235 replaceAll(items, false);
242 * @see #replaceAll(T[], boolean)
246 public void replaceAll(@NonNull Collection<T> items)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
String.java     [all...]

Completed in 994 milliseconds

1 2 3 4 5 6 7