HomeSort by relevance Sort by last modified time
    Searched refs:rawString (Results 1 - 5 of 5) sorted by null

  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
PhoneNumberMatch.java 29 * of the searched text. Use {@link #rawString()} to obtain a copy of the matched subsequence.
42 * // rawString() contains the phone number as it appears in the text.
43 * "+1 425 882-8080".equals(m.rawString());
50 * // invoked on rawString().
51 * util.parse(m.rawString(), country).equals(m.number());
58 private final String rawString;
66 * @param rawString the matched substring of the target text
69 PhoneNumberMatch(int start, String rawString, PhoneNumber number) {
73 if (rawString == null || number == null) {
77 this.rawString = rawString
    [all...]
  /external/libphonenumber/repackaged/libphonenumber/src/com/android/i18n/phonenumbers/
PhoneNumberMatch.java 30 * of the searched text. Use {@link #rawString()} to obtain a copy of the matched subsequence.
43 * // rawString() contains the phone number as it appears in the text.
44 * "+1 425 882-8080".equals(m.rawString());
51 * // invoked on rawString().
52 * util.parse(m.rawString(), country).equals(m.number());
60 private final String rawString;
68 * @param rawString the matched substring of the target text
71 PhoneNumberMatch(int start, String rawString, PhoneNumber number) {
75 if (rawString == null || number == null) {
79 this.rawString = rawString
    [all...]
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
PhoneNumberMatchTest.java 42 assertEquals(match1.rawString(), match2.rawString());
43 assertEquals("1 800 234 45 67", match1.rawString());
PhoneNumberMatcherTest.java 606 findNumbersForLeniency(test.rawString, test.region, leniency);
612 if (!test.rawString.equals(match.rawString())) {
615 + ". Found " + match.rawString());
627 findNumbersForLeniency(test.rawString, test.region, leniency);
    [all...]
  /cts/suite/audio_quality/test_description/
processing_main.py 193 def sendRaw(self, rawString):
195 stringLen = len(rawString)
197 sent = self.conn.send(rawString[totalSent:])

Completed in 718 milliseconds