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

  /external/webkit/Source/WebCore/bindings/js/
JSHTMLDocumentCustom.cpp 140 UString firstString = exec->argument(0).toString(exec);
141 SegmentedString segmentedString = ustringToString(firstString);
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 726 * @param firstString The string following a parameter name and attributes.
735 private String getQuotedPrintablePart(String firstString)
749 if (firstString.trim().endsWith("=")) {
751 int pos = firstString.length() - 1;
752 while (firstString.charAt(pos) != '=') {
755 builder.append(firstString.substring(0, pos + 1));
777 return firstString;
781 protected String getBase64(String firstString) throws IOException, VCardException {
783 builder.append(firstString);
    [all...]
VCardParserImpl_V30.java 320 protected String getBase64(final String firstString)
323 builder.append(firstString);
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponseParser.java 283 final ImapString firstString = parseBareString();
284 responseToDestroy.add(firstString);
  /external/icu4c/common/
normalizer2.cpp 707 UnicodeString firstString(first, firstLength, firstCapacity);
708 firstLength=firstString.length(); // In case it was -1.
717 ReorderingBuffer buffer(n2wi->impl, firstString);
722 } // The ReorderingBuffer destructor finalizes firstString.
723 if(U_FAILURE(*pErrorCode) || firstString.length()>firstCapacity) {
735 n2->normalizeSecondAndAppend(firstString, secondString, *pErrorCode);
737 n2->append(firstString, secondString, *pErrorCode);
741 return firstString.extract(first, firstCapacity, *pErrorCode);

Completed in 854 milliseconds