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

  /external/icu4c/samples/case/
ucase.c 27 /* unfold = "aB LATIN SMALL LETTER DOTLESS I" */
28 static const UChar unfold[] = {0x61, 0x42, 0x131, 0} ; local
74 length = u_strFoldCase(buffer, sizeof(buffer)/sizeof(buffer[0]), unfold,
75 sizeof(unfold)/sizeof(unfold[0]), U_FOLD_CASE_DEFAULT,
81 u_fprintf(out, "u_strFoldCase(%S, U_FOLD_CASE_DEFAULT) -> %S\n", unfold, buffer);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceSetTest.java 93 RecurrenceSet.unfold(RRULE_LESS_THAN_75_CHARS));
96 RecurrenceSet.unfold(RRULE_MORE_THAN_75_CHARS_FOLDED));
99 RecurrenceSet.unfold(STRING_WITH_160_CHARS_FOLDED));
  /external/chromium/third_party/icu/source/common/
ucase.c 36 const UChar *unfold; member in struct:UCaseProps
115 /* get unfold[] */
118 cspProto->unfold=(const UChar *)bin;
121 cspProto->unfold=NULL;
613 const UChar *unfold, *p; local
616 if(csp->unfold==NULL || s==NULL) {
630 unfold=csp->unfold;
631 unfoldRows=unfold[UCASE_UNFOLD_ROWS];
632 unfoldRowWidth=unfold[UCASE_UNFOLD_ROW_WIDTH]
    [all...]
  /external/chromium/third_party/icu/source/tools/gencase/
store.c 73 const UChar unfold[unfoldLength];
164 Reverse case folding data ("unfold") array: (new in format version 1.1)
214 /* reverse case folding ("unfold") data */
215 static UChar unfold[UGENCASE_UNFOLD_MAX_ROWS*UGENCASE_UNFOLD_WIDTH]={ variable
270 if(unfoldTop >= (LENGTHOF(unfold) - UGENCASE_UNFOLD_STRING_WIDTH)) {
274 u_memset(unfold+unfoldTop, 0, UGENCASE_UNFOLD_WIDTH);
275 u_memcpy(unfold+unfoldTop, s, length);
278 U16_APPEND_UNSAFE(unfold, i, c);
420 /* add the multi-character case folding to the "unfold" data */
440 /* finalize reverse case folding ("unfold") data ---------------------------- *
    [all...]
  /external/icu4c/tools/gencase/
store.c 76 const UChar unfold[unfoldLength];
169 Reverse case folding data ("unfold") array: (new in format version 1.1)
219 /* reverse case folding ("unfold") data */
220 static UChar unfold[UGENCASE_UNFOLD_MAX_ROWS*UGENCASE_UNFOLD_WIDTH]={ variable
278 if(unfoldTop >= (LENGTHOF(unfold) - UGENCASE_UNFOLD_STRING_WIDTH)) {
282 u_memset(unfold+unfoldTop, 0, UGENCASE_UNFOLD_WIDTH);
283 u_memcpy(unfold+unfoldTop, s, length);
286 U16_APPEND_UNSAFE(unfold, i, c);
428 /* add the multi-character case folding to the "unfold" data */
448 /* finalize reverse case folding ("unfold") data ---------------------------- *
    [all...]
  /packages/apps/Email/src/com/android/email/mail/internet/
MimeMessage.java 220 mTo = Address.parse(MimeUtility.unfold(getFirstHeader("To")));
225 mCc = Address.parse(MimeUtility.unfold(getFirstHeader("CC")));
230 mBcc = Address.parse(MimeUtility.unfold(getFirstHeader("BCC")));
289 String list = MimeUtility.unfold(getFirstHeader("From"));
291 list = MimeUtility.unfold(getFirstHeader("Sender"));
314 mReplyTo = Address.parse(MimeUtility.unfold(getFirstHeader("Reply-to")));
MimeUtility.java 54 public static String unfold(String s) { method in class:MimeUtility
74 return decode(unfold(s));
194 String[] parts = unfold(header).split(";");
  /external/icu4c/common/
ucase.c 36 const UChar *unfold; member in struct:UCaseProps
115 /* get unfold[] */
118 cspProto->unfold=(const UChar *)bin;
121 cspProto->unfold=NULL;
613 const UChar *unfold, *p; local
616 if(csp->unfold==NULL || s==NULL) {
630 unfold=csp->unfold;
631 unfoldRows=unfold[UCASE_UNFOLD_ROWS];
632 unfoldRowWidth=unfold[UCASE_UNFOLD_ROW_WIDTH]
    [all...]
  /frameworks/base/core/java/android/pim/
RecurrenceSet.java 380 String unfoldedRuleStr = unfold(ruleStr);
417 public static String unfold(String foldedIcalContent) { method in class:RecurrenceSet
  /packages/apps/Email/tests/src/com/android/email/mail/internet/
MimeUtilityTest.java 124 * Test that decode/unfold is efficient when it can be
127 String result1 = MimeUtility.unfold(SHORT_PLAIN);
136 // TODO: more tests for unfold(String s)

Completed in 155 milliseconds