HomeSort by relevance Sort by last modified time
    Searched refs:subtype (Results 101 - 125 of 544) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
TestsQwertyUrl.java 44 protected KeyboardLayoutSet createKeyboardLayoutSet(final InputMethodSubtype subtype,
51 subtype, emailField, voiceInputKeyEnabled, languageSwitchKeyEnabled,
TestsSplitLayoutQwertyEnglishUS.java 40 protected KeyboardLayoutSet createKeyboardLayoutSet(final InputMethodSubtype subtype,
43 return super.createKeyboardLayoutSet(subtype, editorInfo, voiceInputKeyEnabled,
  /external/r8/src/main/java/com/android/tools/r8/graph/
DexType.java 106 // subtype chains.
117 return other.directSubtypes.stream().anyMatch(subtype -> this.isSubtypeOf(subtype,
160 for (DexType subtype : directSubtypes) {
162 if (subtype.hierarchyLevel == INTERFACE_LEVEL) {
163 f.accept(subtype);
168 for (DexType subtype : directSubtypes) {
170 if (subtype.hierarchyLevel != INTERFACE_LEVEL) {
171 f.accept(subtype);
190 for (DexType subtype : directSubtypes)
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_psi_ops.cpp 41 assert(n.subtype == NST_PSI);
71 assert(n.subtype == NST_PSI);
97 if (val->def->subtype == NST_PSI && ps == 3) {
121 assert(n.subtype == NST_PSI);
139 assert(n.subtype == NST_PSI);
  /external/python/cpython2/Doc/includes/
email-dir.py 77 maintype, subtype = ctype.split('/', 1)
81 msg = MIMEText(fp.read(), _subtype=subtype)
85 msg = MIMEImage(fp.read(), _subtype=subtype)
89 msg = MIMEAudio(fp.read(), _subtype=subtype)
93 msg = MIMEBase(maintype, subtype)
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
InputMethodInfoTest.java 211 final InputMethodSubtype subtype = InputMethodSubtype.CREATOR.createFromParcel(p); local
215 subtype.containsExtraValueKey(mSubtypeExtraValue_key));
216 assertEquals(mInputMethodSubtype.getExtraValue(), subtype.getExtraValue());
218 subtype.getExtraValueOf(mSubtypeExtraValue_key));
219 assertEquals(mInputMethodSubtype.getIconResId(), subtype.getIconResId());
220 assertEquals(mInputMethodSubtype.getLocale(), subtype.getLocale());
221 assertEquals(mInputMethodSubtype.getMode(), subtype.getMode());
222 assertEquals(mInputMethodSubtype.getNameResId(), subtype.getNameResId());
223 assertEquals(mInputMethodSubtype.hashCode(), subtype.hashCode());
224 assertEquals(mInputMethodSubtype.isAuxiliary(), subtype.isAuxiliary())
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mkbuiltin.go 106 // subtype expressions.
126 func (i *typeInterner) subtype(t ast.Expr) string { func
143 return fmt.Sprintf("typSlice(%s)", i.subtype(t.Elt))
145 return fmt.Sprintf("typArray(%s, %d)", i.subtype(t.Elt), intconst(t.Len))
154 return fmt.Sprintf("typChan(%s, %s)", i.subtype(t.Value), dir)
163 return fmt.Sprintf("typMap(%s, %s)", i.subtype(t.Key), i.subtype(t.Value))
165 return fmt.Sprintf("typPtr(%s)", i.subtype(t.X))
181 typ := i.subtype(f.Type)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mkbuiltin.go 106 // subtype expressions.
126 func (i *typeInterner) subtype(t ast.Expr) string { func
143 return fmt.Sprintf("typSlice(%s)", i.subtype(t.Elt))
145 return fmt.Sprintf("typArray(%s, %d)", i.subtype(t.Elt), intconst(t.Len))
154 return fmt.Sprintf("typChan(%s, %s)", i.subtype(t.Value), dir)
163 return fmt.Sprintf("typMap(%s, %s)", i.subtype(t.Key), i.subtype(t.Value))
165 return fmt.Sprintf("typPtr(%s)", i.subtype(t.X))
181 typ := i.subtype(f.Type)
  /packages/apps/Settings/src/com/android/settings/inputmethod/
SpellCheckersSettings.java 142 final SpellCheckerSubtype subtype) {
146 if (subtype == null) {
149 return subtype.getDisplayName(
198 final SpellCheckerSubtype subtype = currentSci.getSubtypeAt(index); local
200 items[itemId] = getSpellCheckerSubtypeLabel(currentSci, subtype);
201 if (subtype.equals(currentScs)) {
220 final SpellCheckerSubtype subtype = mTsm.getCurrentSpellCheckerSubtype(
223 + subtype == null ? "null" : subtype.getLocale());
260 // Reset the spell checker subtype
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
LanguageOnSpacebarUtilsTests.java 76 final InputMethodSubtype subtype = mRichImm.findSubtypeByLocaleAndKeyboardLayoutSet( local
78 if (subtype == null) {
79 throw new RuntimeException("Can't find subtype of " + localeString + " with "
82 return new RichInputMethodSubtype(subtype);
87 for (final RichInputMethodSubtype subtype : subtypes) {
88 enabledSubtypes.add(subtype.getRawSubtype());
93 private static void assertFormatType(final RichInputMethodSubtype subtype,
96 LanguageOnSpacebarUtils.onSubtypeChanged(subtype, implicitlyEnabledSubtype, systemLocale);
97 assertEquals(subtype.getLocale() + " implicitly=" + implicitlyEnabledSubtype
99 LanguageOnSpacebarUtils.getLanguageOnSpacebarFormatType(subtype));
    [all...]
SubtypeLocaleUtilsTests.java 86 final InputMethodSubtype subtype = imi.getSubtypeAt(index); local
87 mSubtypesList.add(new RichInputMethodSubtype(subtype));
147 for (final RichInputMethodSubtype subtype : mSubtypesList) {
149 .getSubtypeDisplayNameInSystemLocale(subtype.getRawSubtype());
150 if (subtype.isNoLanguage()) {
152 .getKeyboardLayoutSetDisplayName(subtype.getRawSubtype());
156 .getSubtypeLocaleDisplayNameInSystemLocale(subtype.getLocale().toString());
466 for (final RichInputMethodSubtype subtype : mSubtypesList) {
467 final InputMethodSubtype rawSubtype = subtype.getRawSubtype();
472 assertTrue(subtypeName, subtype.isRtlSubtype())
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state_batch.c 68 uint32_t subtype, uint32_t ending_offset)
71 annotation->subtype = subtype;
  /frameworks/base/core/java/com/android/internal/inputmethod/
InputMethodUtils.java 325 // subtype)
367 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local
369 final Locale subtypeLocale = subtype.getLocaleObject();
377 subtype.getLocale()));
383 mode.equalsIgnoreCase(subtype.getMode())) {
404 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local
405 if (subtype.overridesImplicitlyEnabledSubtype() && subtype.getMode().equals(mode)) {
406 subtypes.add(subtype);
501 final InputMethodSubtype subtype = subtypes.get(i) local
518 final InputMethodSubtype subtype = subtypes.get(i); local
538 final InputMethodSubtype subtype = applicableSubtypes.get(i); local
547 final InputMethodSubtype subtype = keyboardSubtypes.get(i); local
612 InputMethodSubtype subtype = subtypes.get(i); local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
MediaTypeTest.java 40 assertEquals("plain", mediaType.subtype());
94 assertEquals("!#$%&'*+-.{|}~", mediaType.subtype());
100 assertEquals("plain", mediaType.subtype());
154 assertEquals("plain", mediaType.subtype());
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
RealWebSocket.java 115 String contentSubtype = contentType.subtype();
118 if (WebSocket.TEXT.subtype().equals(contentSubtype)) {
120 } else if (WebSocket.BINARY.subtype().equals(contentSubtype)) {
124 + contentType.type() + "/" + contentType.subtype() // Omit any implicitly added charset.
  /external/wpa_supplicant_8/src/eap_server/
eap_server_sake.c 91 u8 id, size_t length, u8 subtype)
110 sake->subtype = subtype;
241 u8 version, session_id, subtype; local
253 subtype = resp->subtype;
266 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received frame: subtype=%d", subtype);
268 if (data->state == IDENTITY && subtype == EAP_SAKE_SUBTYPE_IDENTITY)
271 if (data->state == CHALLENGE && subtype == EAP_SAKE_SUBTYPE_CHALLENGE
414 u8 subtype; local
    [all...]
  /frameworks/base/core/java/android/view/textservice/
TextServicesManager.java 160 final SpellCheckerSubtype subtype = sci.getSubtypeAt(i); local
161 final String tempSubtypeLocale = subtype.getLocale();
164 subtypeInUse = subtype;
168 subtypeInUse = subtype;
  /toolchain/binutils/binutils-2.25/gas/config/
xtensa-istack.h 62 enum xtensa_relax_statesE subtype; member in struct:tinsn_struct
  /toolchain/binutils/binutils-2.25/include/vms/
eihd.h 63 /* Image subtype. */
64 unsigned char subtype[4]; member in struct:vms_eihd
116 /* Image subtype. */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
MimeWriter.py 55 w.startmultipartbody(subtype)
145 def startmultipartbody(self, subtype, boundary=None, plist=[], prefix=1):
149 subtype parameter provides the multipart subtype, the boundary
151 plist parameter provides optional parameters for the subtype. The
159 return self.startbody("multipart/" + subtype,
  /external/libdrm/intel/
intel_aub.h 100 * bits representing the subtype. This macro performs the encoding.
102 #define ENCODE_SS_TYPE(type, subtype) (((type) << 16) | (subtype))
142 * Decode a state_struct_type value to determine the subtype that should be
  /external/nist-sip/java/gov/nist/javax/sip/header/
Accept.java 157 * @param subtype String to set
159 public void setContentSubType(String subtype) {
162 mediaRange.setSubtype(subtype);
  /external/python/cpython2/Lib/
MimeWriter.py 55 w.startmultipartbody(subtype)
145 def startmultipartbody(self, subtype, boundary=None, plist=[], prefix=1):
149 subtype parameter provides the multipart subtype, the boundary
151 plist parameter provides optional parameters for the subtype. The
159 return self.startbody("multipart/" + subtype,
  /frameworks/base/core/java/android/net/metrics/
DhcpErrorEvent.java 59 // byte 1: error subtype
97 private static int makeErrorCode(int type, int subtype) {
98 return (type << 24) | ((0xFF & subtype) << 16);
  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
Usb10ACMixerUnit.java 33 public Usb10ACMixerUnit(int length, byte type, byte subtype, byte subClass) {
34 super(length, type, subtype, subClass);

Completed in 573 milliseconds

1 2 3 45 6 7 8 91011>>