HomeSort by relevance Sort by last modified time
    Searched refs:COMPOSE (Results 1 - 25 of 32) sorted by null

1 2

  /external/icu/android_icu4j/src/main/java/android/icu/text/
Normalizer2.java 32 * For example, NFKC_Casefold is provided via getInstance("nfkc_cf", COMPOSE)
35 * Not only are the standard compose and decompose modes supplied,
78 COMPOSE,
100 * Compose only contiguously.
112 * Same as getInstance(null, "nfc", Mode.COMPOSE).
132 * Same as getInstance(null, "nfkc", Mode.COMPOSE).
152 * Same as getInstance(null, "nfkc_cf", Mode.COMPOSE).
167 * <li>Use name="nfc" and COMPOSE/DECOMPOSE for Unicode standard NFC/NFD.
168 * <li>Use name="nfkc" and COMPOSE/DECOMPOSE for Unicode standard NFKC/NFKD.
169 * <li>Use name="nfkc_cf" and COMPOSE for Unicode standard NFKC_CF=NFKC_Casefold
    [all...]
Normalizer.java 391 public static final Mode COMPOSE = NFC;
678 * Compose a string.
680 * @param str The string to compose.
689 public static String compose(String str, boolean compat) { method in class:Normalizer
690 return compose(str,compat,0);
694 * Compose a string.
696 * @param str The string to compose.
706 public static String compose(String str, boolean compat, int options) { method in class:Normalizer
711 * Compose a string.
713 * @param source The char array to compose
727 public static int compose(char[] source,char[] target, boolean compat, int options) { method in class:Normalizer
752 public static int compose(char[] src,int srcStart, int srcLimit, method in class:Normalizer
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer2.java 31 * For example, NFKC_Casefold is provided via getInstance("nfkc_cf", COMPOSE)
34 * Not only are the standard compose and decompose modes supplied,
80 COMPOSE,
104 * Compose only contiguously.
117 * Same as getInstance(null, "nfc", Mode.COMPOSE).
139 * Same as getInstance(null, "nfkc", Mode.COMPOSE).
161 * Same as getInstance(null, "nfkc_cf", Mode.COMPOSE).
177 * <li>Use name="nfc" and COMPOSE/DECOMPOSE for Unicode standard NFC/NFD.
178 * <li>Use name="nfkc" and COMPOSE/DECOMPOSE for Unicode standard NFKC/NFKD.
179 * <li>Use name="nfkc_cf" and COMPOSE for Unicode standard NFKC_CF=NFKC_Casefold
    [all...]
Normalizer.java 378 public static final Mode COMPOSE = NFC;
665 * Compose a string.
667 * @param str The string to compose.
675 public static String compose(String str, boolean compat) { method in class:Normalizer
676 return compose(str,compat,0);
680 * Compose a string.
682 * @param str The string to compose.
691 public static String compose(String str, boolean compat, int options) { method in class:Normalizer
696 * Compose a string.
698 * @param source The char array to compose
711 public static int compose(char[] source,char[] target, boolean compat, int options) { method in class:Normalizer
735 public static int compose(char[] src,int srcStart, int srcLimit, method in class:Normalizer
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
FromAddressSpinner.java 16 package com.android.mail.compose;
86 * @param action Action being performed; if this is COMPOSE, show all
96 if (action == ComposeActivity.COMPOSE) {
121 // directly to the compose activity, don't bother populating the reply
ComposeActivity.java 17 package com.android.mail.compose;
92 import com.android.mail.compose.AttachmentsView.AttachmentAddedOrDeletedListener;
93 import com.android.mail.compose.AttachmentsView.AttachmentFailureException;
94 import com.android.mail.compose.FromAddressSpinner.OnAccountChangedListener;
95 import com.android.mail.compose.QuotedTextView.RespondInlineListener;
155 public static final int COMPOSE = -1;
161 // Integer extra holding one of the above compose action
381 public static void compose(Context launcher, Account account) { method in class:ComposeActivity
382 launch(launcher, account, null, COMPOSE, null, null, null, null, null /* extraValues */);
389 launch(launcher, account, null, COMPOSE, toAddress, null, null, null
    [all...]
  /frameworks/native/include/input/
InputEventLabels.h 385 DEFINE_LED(COMPOSE),
  /external/skia/samplecode/
SampleFilterFuzz.cpp 532 XFERMODE, OFFSET, MATRIX, MATRIX_CONVOLUTION, COMPOSE,
600 case COMPOSE:
  /external/skqp/samplecode/
SampleFilterFuzz.cpp 532 XFERMODE, OFFSET, MATRIX, MATRIX_CONVOLUTION, COMPOSE,
600 case COMPOSE:
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UTS46.java 69 Normalizer2.getInstance(null, "uts46", Normalizer2.Mode.COMPOSE); // uts46.nrm
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UTS46.java 68 Normalizer2.getInstance(null, "uts46", Normalizer2.Mode.COMPOSE); // uts46.nrm
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
ComposeActivityTest.java 17 package com.android.mail.compose;
502 activity.initReplyRecipients(refMessage, ComposeActivity.COMPOSE);
672 // the Compose Activity's from account for the reply is correct
710 // the Compose Activity's from account for the reply is correct
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
UIProvider.java 293 * Does the server allow the user to compose mails (and reply) using addresses other than
297 * can compose (and reply) using either address.
504 * Uri for VIEW intent that will cause the compose screens for this type
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
BasicTest.java 240 String[][] compose = { local
246 staticTest(Normalizer.NFC, compose, 1);
247 staticTest(Normalizer.NFKC,compose, 2);
283 hex(b) + " x COMPOSE => " +
287 hex(b) + " x COMPOSE => " +
309 // String c = Normalizer.normalize(b,Normalizer.COMPOSE,0);
312 // hex(b) + " x COMPOSE => " +
316 // hex(b) + " x COMPOSE => " +
368 * order correctly by compose() if there is no starter.
391 result = Normalizer.compose(input, false)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
BasicTest.java 237 String[][] compose = { local
243 staticTest(Normalizer.NFC, compose, 1);
244 staticTest(Normalizer.NFKC,compose, 2);
280 hex(b) + " x COMPOSE => " +
284 hex(b) + " x COMPOSE => " +
306 // String c = Normalizer.normalize(b,Normalizer.COMPOSE,0);
309 // hex(b) + " x COMPOSE => " +
313 // hex(b) + " x COMPOSE => " +
365 * order correctly by compose() if there is no starter.
388 result = Normalizer.compose(input, false)
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java     [all...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 

Completed in 726 milliseconds

1 2