HomeSort by relevance Sort by last modified time
    Searched refs:replaceAll (Results 76 - 100 of 235) sorted by null

1 2 34 5 6 7 8 910

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphExporter.java 157 return raw.replaceAll("\\.", "___"); // DOT does not allow . in element names
  /frameworks/base/tools/layoutlib/bridge/src/android/text/format/
Time_Delegate.java 71 p.matcher(format).replaceAll("$0\\1\\$t"),
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
Matcher2Test.java 229 mat.replaceAll(substitutionString);
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
Matcher2Test.java 227 String res = mat.replaceAll(substitutionString);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
Constants.java 306 Pattern p = Pattern.compile(matchAgainst.replaceAll("\\*", "\\.\\*"),
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HtmlConversationTemplates.java 133 return sAbsoluteImgUrlPattern.matcher(html).replaceAll(IMG_URL_REPLACEMENT);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 300 text = text.replaceAll("[^a-zA-Z0-9]+", "_"); //$NON-NLS-1$ //$NON-NLS-2$
563 wsFolderPath = wsFolderPath.replaceAll("/+\\.\\./+|/+\\./+|//+|\\\\+|^/+", "/"); //$NON-NLS-1$ //$NON-NLS-2$
564 wsFolderPath = wsFolderPath.replaceAll("^\\.\\./+|^\\./+", ""); //$NON-NLS-1$ //$NON-NLS-2$
565 wsFolderPath = wsFolderPath.replaceAll("/+\\.\\.$|/+\\.$|/+$", ""); //$NON-NLS-1$ //$NON-NLS-2$
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
SystraceOutputParser.java 130 String html_out = trace.replaceAll("\n", "\\\\n\\\\\n");
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssReader.java 205 str = str.replaceAll("<.*?>", " ");
206 str = str.replaceAll("\\s+", " ");
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
XmlDocumentProvider.java 349 String pattern = input.replaceAll("//", "/(.*/|)").replaceAll("^/", "^/") + "$";
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringTest.java 180 results[i], str.replaceAll(patterns[i], "?"));
184 str.replaceAll("[abc*", "?");
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 63 s = patternMatcher.replaceAll("");
328 Pattern p = Pattern.compile(matchAgainst.replaceAll("\\*", "\\.\\*"),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
WelcomeWizardPage.java 270 message = message.replaceAll("\n", " "); //$NON-NLS-1$ //$NON-NLS-2$
279 message = message.replaceAll("\n", " "); //$NON-NLS-1$ //$NON-NLS-2$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreator.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessage.java 624 String debug = line.replaceAll("\\n", "<LF>\n");
625 debug = debug.replaceAll("\\r", "<CR>");
627 debug = data.replaceAll("\\n", "<LF>\n");
628 debug = debug.replaceAll("\\r", "<CR>");
645 messages[i] = messages[i].replaceAll("\r\n([/]*)/END\\:MSG", "\r\n$1END:MSG");
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
RemoteDebugEventSocketListener.cs 574 txt = StringExtensions.replaceAll(txt, "%0A", "\n"); // unescape \n
575 txt = StringExtensions.replaceAll(txt, "%0D", "\r"); // unescape \r
576 txt = StringExtensions.replaceAll(txt, "%25", "%"); // undo escaped escape chars
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
RemoteDebugEventSocketListener.java 515 txt = txt.replaceAll("%0A","\n"); // unescape \n
516 txt = txt.replaceAll("%0D","\r"); // unescape \r
517 txt = txt.replaceAll("%25","%"); // undo escaped escape chars
  /external/chromium_org/third_party/icu/source/tools/toolutil/
xmlparser.cpp 511 attValue = mNewLineNormalizer.replaceAll(fOneLF, status);
516 attValue = mAttrNormalizer.replaceAll(oneSpace, status);
569 result = mNewLineNormalizer.replaceAll(fOneLF, status);
  /external/icu4c/tools/toolutil/
xmlparser.cpp 511 attValue = mNewLineNormalizer.replaceAll(fOneLF, status);
516 attValue = mAttrNormalizer.replaceAll(oneSpace, status);
569 result = mNewLineNormalizer.replaceAll(fOneLF, status);
  /external/smali/smali/src/main/antlr3/
smaliParser.g 331 s = s.replaceAll("\n","\\\\n");
332 s = s.replaceAll("\r","\\\\r");
333 s = s.replaceAll("\t","\\\\t");
345 txt = txt.replaceAll("\n","\\\\n");
346 txt = txt.replaceAll("\r","\\\\r");
347 txt = txt.replaceAll("\t","\\\\t");
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 641 comment = comment.replaceAll("\\s+", " "); //$NON-NLS-1$ //$NON-NLS-2$
644 comment = comment.replaceAll("(?:\\{@deprecated[^}]*\\}|@deprecated[^@}]*)", "");
683 comment = comment.replaceAll("\\s+", " "); //$NON-NLS-1$ //$NON-NLS-2$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptProcessor.java 98 relative = relative.append(file.getName().replaceAll(
107 relative = relative.append(file.getName().replaceAll(
480 return depFolder.getFile(sourceFile.getName().replaceAll(AdtConstants.RE_RS_EXT,
  /external/chromium_org/third_party/icu/source/i18n/unicode/
regex.h     [all...]
  /external/icu4c/i18n/unicode/
regex.h     [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 407 int colorFromHex = (int) Long.valueOf(colorValue.replaceAll("#", ""), 16).longValue();
432 int colorFromHex = (int) Long.valueOf(colorValue.replaceAll("#", ""), 16).longValue();

Completed in 1197 milliseconds

1 2 34 5 6 7 8 910