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

  /external/chromium_org/third_party/icu/source/common/
listformatter.cpp 245 const UnicodeString* firstString;
250 firstString = &originalString;
255 firstString = &nextString;
259 UnicodeString result = UnicodeString(pat, 0, i) + *firstString;
normalizer2.cpp 791 UnicodeString firstString(first, firstLength, firstCapacity);
792 firstLength=firstString.length(); // In case it was -1.
801 ReorderingBuffer buffer(n2wi->impl, firstString);
806 } // The ReorderingBuffer destructor finalizes firstString.
807 if(U_FAILURE(*pErrorCode) || firstString.length()>firstCapacity) {
821 n2->normalizeSecondAndAppend(firstString, secondString, *pErrorCode);
823 n2->append(firstString, secondString, *pErrorCode);
827 return firstString.extract(first, firstCapacity, *pErrorCode);
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 743 * @param firstString The string following a parameter name and attributes.
752 private String getQuotedPrintablePart(String firstString)
766 if (firstString.trim().endsWith("=")) {
768 int pos = firstString.length() - 1;
769 while (firstString.charAt(pos) != '=') {
772 builder.append(firstString.substring(0, pos + 1));
794 return firstString;
802 * @param firstString The first line of the property.
806 private String getPotentialMultiline(String firstString) throws IOException {
808 builder.append(firstString);
    [all...]
VCardParserImpl_V30.java 300 protected String getBase64(final String firstString)
302 return firstString;
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapResponseParser.java 283 final ImapString firstString = parseBareString();
284 responseToDestroy.add(firstString);
  /external/icu/icu4c/source/common/
normalizer2.cpp 791 UnicodeString firstString(first, firstLength, firstCapacity);
792 firstLength=firstString.length(); // In case it was -1.
801 ReorderingBuffer buffer(n2wi->impl, firstString);
806 } // The ReorderingBuffer destructor finalizes firstString.
807 if(U_FAILURE(*pErrorCode) || firstString.length()>firstCapacity) {
821 n2->normalizeSecondAndAppend(firstString, secondString, *pErrorCode);
823 n2->append(firstString, secondString, *pErrorCode);
827 return firstString.extract(first, firstCapacity, *pErrorCode);
    [all...]

Completed in 3768 milliseconds