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

  /external/libphonenumber/java/src/com/android/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());
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...]
PhoneNumberMatcher.java 309 String rawString = candidate.toString();
310 PhoneNumberMatch match = parseAndVerify(rawString, offset);
317 return extractInnerMatch(rawString, offset);
422 // to using rawInput() rather than the rawString() of PhoneNumberMatch.
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 48 public String rawString;
55 this.rawString = parsedString;
56 this.escapedString = makeEscaped(rawString);
72 this.rawString = (String) DirectoryString.ASN1.decode(in);
73 this.escapedString = makeEscaped(rawString);
75 this.rawString = hexString;
85 public AttributeValue(String rawString, byte[] encoded, int tag) {
91 if (rawString == null) {
92 this.rawString = getHexString();
95 this.rawString = rawString
    [all...]
AttributeTypeAndValue.java 244 } else if (value.escapedString.length() != value.rawString.length()) {
366 out.content = av.rawString;
371 av.bytes = av.rawString.getBytes(Charsets.UTF_8);
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberMatchTest.java 44 assertEquals(match1.rawString(), match2.rawString());
45 assertEquals("1 800 234 45 67", match1.rawString());
PhoneNumberMatcherTest.java 208 assertEquals(number, match.rawString());
220 assertEquals(number, matchWithSpaces.rawString());
510 findNumbersForLeniency(test.rawString, test.region, leniency);
516 if (!test.rawString.equals(match.rawString())) {
519 ". Found " + match.rawString());
532 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:])
  /frameworks/opt/vcard/java/com/android/vcard/
VCardUtils.java 769 final String rawString = builder.toString();
770 if (TextUtils.isEmpty(rawString)) {
776 rawBytes = rawString.getBytes(sourceCharset);
779 rawBytes = rawString.getBytes();
    [all...]
  /frameworks/base/tools/aapt/
XMLNode.cpp 194 String16 rawString;
266 rawString.append(curString);
301 rawString.append(curString);
374 rawString.append(curString);
375 outString->setTo(rawString);
    [all...]

Completed in 1072 milliseconds