HomeSort by relevance Sort by last modified time
    Searched full:compose (Results 151 - 175 of 603) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/UnifiedEmail/res/values/
strings.xml 33 <!-- Compose -->
34 <!-- Shown in Compose; the recipient(s) of the message [CHAR LIMIT=10] -->
36 <!-- Shown in Compose; the cc recipient(s) of the message [CHAR LIMIT=10] -->
38 <!-- Shown in Compose; the bcc recipient(s) of the message [CHAR LIMIT=10] -->
40 <!-- Shown in Compose; the subject of the message [CHAR LIMIT=100] -->
42 <!-- Shown in Compose; the subject of the message [CHAR LIMIT=100] -->
43 <string name="body_hint">Compose email</string>
44 <!-- Compose screen button. Add an attachment to this message [CHAR LIMIT=20] -->
46 <!-- Compose screen button. Add a photo attachment to this message [CHAR LIMIT=20] -->
48 <!-- Compose screen button. Add a video attachment to this message [CHAR LIMIT=20] --
    [all...]
  /external/icu4c/test/intltest/
tstnorm.cpp 174 logln("testing compose...");
277 UnicodeString compose[1][3]; local
278 compose[0][0] = str("\\u0fb2\\u0f71\\u0f80");
279 compose[0][1] = str("\\u0fb2\\u0f71\\u0f80");
280 compose[0][2] = str("\\u0fb2\\u0f71\\u0f80");
284 staticTest(UNORM_NFC, 0, compose, ARRAY_LENGTH(compose), 1);
285 staticTest(UNORM_NFKC, 0, compose, ARRAY_LENGTH(compose), 2);
324 hex(b) + " x COMPOSE => "
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
StylesheetRoot.java 309 // This has to be done before the initialization of the compose state, because
323 m_templateList.compose(this);
326 m_outputProperties.compose(this);
329 // Now call the compose() method on every element to give it a chance to adjust
352 * Call the compose function for each ElemTemplateElement.
361 templ.compose(this);
    [all...]
ElemVariable.java 73 * global variables since the local position is computed in the compose() method.
326 public void compose(StylesheetRoot sroot) throws TransformerException method in class:ElemVariable
361 super.compose(sroot);
ElemElement.java 128 public void compose(StylesheetRoot sroot) throws TransformerException method in class:ElemElement
130 super.compose(sroot);
ElemTemplate.java 345 public void compose(StylesheetRoot sroot) throws TransformerException method in class:ElemTemplate
347 super.compose(sroot);
ElemValueOf.java 175 public void compose(StylesheetRoot sroot) throws TransformerException method in class:ElemValueOf
178 super.compose(sroot);
  /external/chromium_org/ppapi/generators/
idl_c_proto.py 407 def Compose(self, rtype, name, arrayspec, callspec, prefix, func_as_ptr,
409 self.LogEnter('Compose: %s %s' % (rtype, name))
426 params.append(self.Compose(ptype, pname, parray, pspec, '', True,
434 self.LogExit('Exit Compose: %s' % out)
459 out = self.Compose(rtype, name, arrayspec, callspec, prefix,
  /external/chromium_org/third_party/icu/source/common/unicode/
normalizer2.h 47 * For example, NFKC_Casefold is provided via getInstance("nfkc_cf", COMPOSE)
50 * Not only are the standard compose and decompose modes supplied,
93 * @param mode normalization mode (compose or decompose etc.)
193 * (which is only possible for the two COMPOSE modes) this method
209 * For the two COMPOSE modes, the result could be "maybe" in cases that
  /external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.java 803 Predicate<String> trimEqualsFoo = Predicates.compose(equalsFoo, trim);
811 .addEqualityGroup(trimEqualsFoo, Predicates.compose(equalsFoo, trim))
814 .addEqualityGroup(Predicates.compose(equalsFoo, identity))
815 .addEqualityGroup(Predicates.compose(equalsBar, trim))
823 Predicate<String> trimEqualsFoo = Predicates.compose(equalsFoo, trim);
  /external/icu4c/common/unicode/
normalizer2.h 47 * For example, NFKC_Casefold is provided via getInstance("nfkc_cf", COMPOSE)
50 * Not only are the standard compose and decompose modes supplied,
169 * @param mode normalization mode (compose or decompose etc.)
328 * (which is only possible for the two COMPOSE modes) this method
344 * For the two COMPOSE modes, the result could be "maybe" in cases that
  /external/chromium_org/third_party/icu/source/common/
normalizer2impl.cpp 493 // Called by the compose() and makeFCD() implementations.
766 // c is a Jamo V/T, see if we can compose it with the previous character.
768 // c is a Jamo Vowel, compose with previous Jamo L and following Jamo T.
902 Normalizer2Impl::compose(const UChar *src, const UChar *limit, function in class:Normalizer2Impl
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tstnorm.cpp 173 logln("testing compose...");
276 UnicodeString compose[1][3]; local
277 compose[0][0] = str("\\u0fb2\\u0f71\\u0f80");
278 compose[0][1] = str("\\u0fb2\\u0f71\\u0f80");
279 compose[0][2] = str("\\u0fb2\\u0f71\\u0f80");
283 staticTest(UNORM_NFC, 0, compose, ARRAY_LENGTH(compose), 1);
284 staticTest(UNORM_NFKC, 0, compose, ARRAY_LENGTH(compose), 2);
323 hex(b) + " x COMPOSE => "
    [all...]
  /external/chromium_org/ui/base/ime/
character_composer_unittest.cc 201 // Even though sequence ['dead acute', 'a'] will compose 'a with acute',
325 // Sequence [Ctrl+Shift+U, x, space] does not compose a character.
470 // compose a string with a character '\0')
  /external/icu4c/common/
normalizer2impl.cpp 516 // Called by the compose() and makeFCD() implementations.
841 // c is a Jamo V/T, see if we can compose it with the previous character.
843 // c is a Jamo Vowel, compose with previous Jamo L and following Jamo T.
1026 Normalizer2Impl::compose(const UChar *src, const UChar *limit, function in class:Normalizer2Impl
    [all...]
  /frameworks/native/cmds/flatland/
Main.cpp 357 bool compose() { function in class:Layer
358 return mComposer->compose(mTexName, mGLConsumer);
539 result = mLayers[i].compose();
  /frameworks/base/libs/hwui/
SkiaShader.cpp 374 // Compose shader
412 // Apply this compose shader's local transform and pass it down to
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentsView.java 16 package com.android.mail.compose;
49 * View for displaying attachments in the compose screen.
QuotedTextView.java 16 package com.android.mail.compose;
41 * View for displaying the quoted text in the compose screen for a reply
  /art/test/092-locale/src/
Main.java 134 System.err.println("Bad compose: '" + decomposed + "' --> '"
  /bootable/recovery/edify/
expr.h 157 // Use printf-style arguments to compose an error message to put into
  /dalvik/tests/092-locale/src/
Main.java 134 System.err.println("Bad compose: '" + decomposed + "' --> '"
  /external/bluetooth/bluedroid/stack/avrc/
avrc_opt.c 37 ** Description Compose a VENDOR DEPENDENT command according to p_msg
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_button_cell_unittest.mm 93 // dynamically compose the menu given a node.
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_button_cell_unittest.mm 93 // dynamically compose the menu given a node.

Completed in 884 milliseconds

1 2 3 4 5 67 8 91011>>