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

1 2 3 4 5 6 7 8 91011

  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
TestHelper.java 30 String en = expected.replaceAll("[\\s]+", " ").trim();
31 String an = actual.replaceAll( "[\\s]+", " ").trim();
  /external/jdiff/src/jdiff/
SingleComment.java 26 id_ = id.replaceAll("<", "&lt;").replaceAll(">", "&gt;");;
  /external/smali/util/src/main/java/org/jf/util/
TextUtils.java 59 source = matcher.replaceAll("");
64 source = matcher2.replaceAll("");
69 source = matcher3.replaceAll("");
80 return matcher.replaceAll("");
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenProperties.groovy 116 return pkg.replaceAll(/\./, File.separator)
125 return path.replaceAll(File.separator, /\./)
160 outputPath = outputPath.replaceAll('_PROJECT_', targetSampleName())
161 outputPath = outputPath.replaceAll('_MODULE_', targetSampleModule())
162 outputPath = outputPath.replaceAll('_PACKAGE_', packageAsPath(targetSamplePackage))
166 outputPath = outputPath.replaceAll('_IDE_', "idea")
167 outputPath = outputPath.replaceAll(/\.ftl$/, '')
170 outputPath = outputPath.replaceAll('gitignore', '.gitignore')
  /external/easymock/src/org/easymock/internal/matchers/
Matches.java 37 buffer.append("matches(\"" + regex.replaceAll("\\\\", "\\\\\\\\")
Find.java 39 buffer.append("find(\"" + regex.replaceAll("\\\\", "\\\\\\\\") + "\")");
  /external/mockito/src/main/java/org/mockito/internal/matchers/
Find.java 26 return "find(\"" + regex.replaceAll("\\\\", "\\\\\\\\") + "\")";
Matches.java 29 return "matches(\"" + pattern.pattern().replaceAll("\\\\", "\\\\\\\\") + "\")";
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/
AternativeApproach.java 66 String r = m.replaceAll("Logger");
72 r = m.replaceAll("Logger");
94 String r = m.replaceAll("LoggerFactory.getLogger(");
111 String r = m.replaceAll(" Logger");
133 r = m2.replaceAll("Logger");
145 String r = m.replaceAll(" Logger");
151 r = m.replaceAll("LoggerFactory.getLogger(");
  /external/cldr/tools/java/org/unicode/cldr/posix/
POSIX_LCTime.java 88 t_fmt = t_fmt.replaceAll("\"", "/\""); // excaping of " in strings
98 t_fmt_ampm = t_fmt_ampm.replaceAll("\"", "/\""); // excaping of " in strings
111 d_fmt = d_fmt.replaceAll("\"", "/\""); // excaping of " in strings
122 d_t_fmt = d_t_fmt.replaceAll("\\{0\\}", doc.getWinningValue(SearchLocation));
127 d_t_fmt = d_t_fmt.replaceAll("\\{1\\}", doc.getWinningValue(SearchLocation));
131 d_t_fmt = d_t_fmt.replaceAll("\"", "/\""); // excaping of " in strings
150 date_fmt = date_fmt.replaceAll("\\{0\\}", doc.getWinningValue(SearchLocation));
153 date_fmt = date_fmt.replaceAll("\\{1\\}", doc.getWinningValue(SearchLocation));
157 date_fmt = date_fmt.replaceAll("\"", "/\""); // excaping of " in strings
178 nlldate = nlldate.replaceAll("\"", "/\""); // excaping of " in string
    [all...]
POSIXUtilities.java 114 return result.toString().replaceAll("><", "-");
137 result.append(n.replaceAll(" ", "_").replaceAll("DIGIT_", "").toLowerCase());
148 result.append(n.replaceAll(" ", "_").replaceAll("<", "").replaceAll(">", "").toUpperCase());
197 result.append(n.replaceAll(" ", "_").replaceAll("<", "").replaceAll(">", "").toUpperCase());
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
ClassicToken.java 147 txt = txt.replaceAll("\n","\\\\n");
148 txt = txt.replaceAll("\r","\\\\r");
149 txt = txt.replaceAll("\t","\\\\t");
CommonToken.java 197 txt = txt.replaceAll("\n","\\\\n");
198 txt = txt.replaceAll("\r","\\\\r");
199 txt = txt.replaceAll("\t","\\\\t");
  /external/apache-commons-compress/src/changes/
release-notes.vm 19 $introduction.replaceAll("(?<!\015)\012", "
25 $release.description.replaceAll(" ", "
30 #set($action=$action.replaceAll("(?m)^ +"," "))
38 ## Use replaceAll to fix up LF-only line ends on Windows.
39 #set($action=$actionItem.getAction().replaceAll("\n","
67 ## Use replaceAll to fix up LF-only line ends on Windows.
68 #set($action=$actionItem.getAction().replaceAll("\n","
96 ## Use replaceAll to fix up LF-only line ends on Windows.
97 #set($action=$actionItem.getAction().replaceAll("\n","
125 ## Use replaceAll to fix up LF-only line ends on Windows
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
VariableReplacer.java 32 source = replaceAll(source, variable, value);
38 public String replaceAll(String source, String key, String value) {
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/util/
BCELifierTestCase.java 74 input = input.replaceAll("#\\d+", "#n"); // numbers may vary in length
75 input = input.replaceAll(" +", " "); // collapse spaces
76 input = input.replaceAll("//.+",""); // comments may vary
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DOTTreeGenerator.java 212 text = text.replaceAll("\"", "\\\\\"");
213 text = text.replaceAll("\\t", " ");
214 text = text.replaceAll("\\n", "\\\\n");
215 text = text.replaceAll("\\r", "\\\\r");
  /external/guava/guava-tests/test/com/google/common/base/
StandardSystemPropertyTest.java 31 String expected = Ascii.toLowerCase(fieldName).replaceAll("_", ".");
  /external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
CommonToken.pm 208 txt = txt.replaceAll("\n","\\\\n");
209 txt = txt.replaceAll("\r","\\\\r");
210 txt = txt.replaceAll("\t","\\\\t");
  /external/mockito/src/test/java/org/mockitoutil/
TestBase.java 113 return stackTrace.replaceAll("(\\((\\w+\\.java):(\\d)+\\))", "($2:0)");
122 return text.replaceAll("hashCode: (\\d)+\\.", "hashCode: xxx.");
  /external/opencensus-java/contrib/monitored_resource_util/src/main/java/io/opencensus/contrib/monitoredresource/util/
AwsIdentityDocUtils.java 119 String key = keyValuePair[0].replaceAll("[\" ]", "");
120 String value = keyValuePair[1].replaceAll("[\" ,]", "");
  /external/deqp/external/openglcts/modules/gl/
gl3cCullDistanceTests.cpp 262 void CullDistance::Utilities::replaceAll(std::string& str, const std::string& from, const std::string& to)
    [all...]
  /cts/hostsidetests/media/bitstreams/common/src/android/media/cts/bitstreams/
MediaBitstreams.java 73 String base = bitstreamPath.replaceAll(".mp4$|.webm$", "");
  /development/samples/apkcachetest/src/com/android/apkcachetest/
Main.java 65 s = s.replaceAll("[^\\x20-\\x7E]+", " ");
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/arj/
ArjArchiveEntry.java 54 return localFileHeader.name.replaceAll("/",

Completed in 1130 milliseconds

1 2 3 4 5 6 7 8 91011