HomeSort by relevance Sort by last modified time
    Searched refs:rawString (Results 1 - 10 of 10) 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 52 public final String rawString;
58 this.rawString = parsedString;
59 this.escapedString = makeEscaped(rawString); // overwrites hasQE
66 } else if (isPrintableString(rawString)) {
87 this.rawString = (String) DirectoryString.ASN1.decode(in);
88 this.escapedString = makeEscaped(rawString);
90 this.rawString = hexString;
100 public AttributeValue(String rawString, byte[] encoded, int tag) {
106 if (rawString == null) {
107 this.rawString = getHexString()
    [all...]
AttributeTypeAndValue.java 254 } else if (value.escapedString.length() != value.rawString.length()) {
380 out.content = av.rawString;
385 av.bytes = av.rawString.getBytes(StandardCharsets.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());
525 findNumbersForLeniency(test.rawString, test.region, leniency);
531 if (!test.rawString.equals(match.rawString())) {
534 ". Found " + match.rawString());
547 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 790 final String rawString = builder.toString();
791 if (TextUtils.isEmpty(rawString)) {
797 rawBytes = rawString.getBytes(sourceCharset);
800 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...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 456 spec.url = "tel:" + PhoneNumberUtils.normalizeNumber(match.rawString());

Completed in 253 milliseconds