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

1 23 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
RichInputMethodSubtypeTests.java 89 final InputMethodSubtype subtype = imi.getSubtypeAt(index); local
90 mSubtypesList.add(new RichInputMethodSubtype(subtype));
163 for (final RichInputMethodSubtype subtype : mSubtypesList) {
165 .getSubtypeDisplayNameInSystemLocale(subtype.getRawSubtype());
166 final String spacebarText = subtype.getFullDisplayName();
168 .getSubtypeLocaleDisplayName(subtype.getLocale().toString());
169 if (subtype.isNoLanguage()) {
178 for (final RichInputMethodSubtype subtype : mSubtypesList) {
180 .getSubtypeDisplayNameInSystemLocale(subtype.getRawSubtype());
181 final Locale locale = subtype.getLocale()
313 RichInputMethodSubtype subtype = RichInputMethodSubtype.getRichInputMethodSubtype(null); local
    [all...]
  /external/v8/src/inspector/
injected-script-source.js 69 var name = InjectedScriptHost.internalConstructorName(obj) || InjectedScriptHost.subtype(obj) || (typeof obj);
235 return typeof object === "object" && InjectedScriptHost.subtype(object) === "internal#location";
275 if (InjectedScriptHost.subtype(columns) === "array") {
331 var subtype = this._subtype(object);
332 if (subtype === "internal#scope") {
343 if (subtype === "internal#scopeList" && descriptor.name === "length")
368 if (InjectedScriptHost.subtype(object) === "proxy")
473 skipGetOwnPropertyNames = InjectedScriptHost.subtype(object) === "typedarray" && object.length > 500000;
478 if (InjectedScriptHost.subtype(o) === "proxy")
554 return (typeof object === "undefined") && !!InjectedScriptHost.subtype(object)
970 var subtype = injectedScript._subtype(value); variable
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboardView.java 50 void setSubtypeOnSpaceKey(final InputMethodSubtype subtype) {
52 keyboard.setSpaceIcon(getResources().getDrawable(subtype.getIconResId()));
  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
Usb10ACInputTerminal.java 35 public Usb10ACInputTerminal(int length, byte type, byte subtype, byte subclass) {
36 super(length, type, subtype, subclass);
Usb10ACOutputTerminal.java 31 public Usb10ACOutputTerminal(int length, byte type, byte subtype, byte subClass) {
32 super(length, type, subtype, subClass);
Usb10ASGeneral.java 37 public Usb10ASGeneral(int length, byte type, byte subtype, byte subclass) {
38 super(length, type, subtype, subclass);
Usb20ACHeader.java 32 public Usb20ACHeader(int length, byte type, byte subtype, byte subclass, int spec) {
33 super(length, type, subtype, subclass, spec);
Usb20ACOutputTerminal.java 37 public Usb20ACOutputTerminal(int length, byte type, byte subtype, byte subClass) {
38 super(length, type, subtype, subClass);
Usb20ASFormatI.java 34 public Usb20ASFormatI(int length, byte type, byte subtype, byte formatType, byte subclass) {
35 super(length, type, subtype, formatType, subclass);
Usb20ASFormatII.java 37 public Usb20ASFormatII(int length, byte type, byte subtype, byte formatType, byte subclass) {
38 super(length, type, subtype, formatType, subclass);
Usb20ASFormatIIEx.java 37 public Usb20ASFormatIIEx(int length, byte type, byte subtype, byte formatType, byte subclass) {
38 super(length, type, subtype, formatType, subclass);
Usb20ASFormatIII.java 34 public Usb20ASFormatIII(int length, byte type, byte subtype, byte formatType, byte subclass) {
35 super(length, type, subtype, formatType, subclass);
UsbACMixerUnit.java 27 public UsbACMixerUnit(int length, byte type, byte subtype, byte subClass) {
28 super(length, type, subtype, subClass);
UsbACTerminal.java 35 public UsbACTerminal(int length, byte type, byte subtype, byte subclass) {
36 super(length, type, subtype, subclass);
  /packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/settings/
AdditionalFeaturesSettingUtils.java 53 @Nonnull final InputMethodSubtype subtype,
55 return new RichInputMethodSubtype(subtype);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
InputMethodSubtypePreference.java 32 * Input method subtype preference.
34 * This preference represents a subtype of an IME. It is used to enable or disable the subtype.
40 public InputMethodSubtypePreference(final Context context, final InputMethodSubtype subtype,
44 setKey(imi.getId() + subtype.hashCode());
46 InputMethodAndSubtypeUtil.getSubtypeLocaleNameAsSentence(subtype, context, imi);
48 final String subtypeLocaleString = subtype.getLocale();
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmeth.h 38 * Following the 2byte BRCM ether_type is a 16bit BRCM subtype field
42 * 8 bit subtype (0-127)
46 * 16 bit big-endian subtype
94 uint16 subtype; /* Vendor specific..32769 */ member in struct:bcmeth_hdr
  /frameworks/base/core/java/com/android/internal/inputmethod/
InputMethodSubtypeSwitchingController.java 132 // Subtype that has the same locale of the system's has higher priority.
137 // Subtype that has the same language of the system's has higher priority.
225 for (InputMethodSubtype subtype : explicitlyOrImplicitlyEnabledSubtypeList) {
226 enabledSubtypeSet.add(String.valueOf(subtype.hashCode()));
235 final InputMethodSubtype subtype = imi.getSubtypeAt(j); local
236 final String subtypeHashCode = String.valueOf(subtype.hashCode());
239 && (includeAuxiliarySubtypes || !subtype.isAuxiliary())) {
241 subtype.overridesImplicitlyEnabledSubtype() ? null : subtype
245 subtypeLabel, imi, j, subtype.getLocale(), mSystemLocaleStr))
    [all...]
InputMethodSubtypeHandle.java 30 public InputMethodSubtypeHandle(InputMethodInfo info, @Nullable InputMethodSubtype subtype) {
32 if (subtype != null) {
33 mSubtypeId = subtype.hashCode();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
iterators.py 49 def typed_subpart_iterator(msg, maintype='text', subtype=None):
53 "text". Optional `subtype' is the MIME subtype to match against; if
58 if subtype is None or subpart.get_content_subtype() == subtype:
  /external/python/cpython2/Lib/email/
iterators.py 49 def typed_subpart_iterator(msg, maintype='text', subtype=None):
53 "text". Optional `subtype' is the MIME subtype to match against; if
58 if subtype is None or subpart.get_content_subtype() == subtype:
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
app.cc 27 // |V=2|P| subtype | PT=APP=204 | length |
45 void App::WithSubType(uint8_t subtype) {
46 RTC_DCHECK_LE(subtype, 0x1f);
47 sub_type_ = subtype;
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
iterators.py 49 def typed_subpart_iterator(msg, maintype='text', subtype=None):
53 "text". Optional `subtype' is the MIME subtype to match against; if
58 if subtype is None or subpart.get_content_subtype() == subtype:
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
iterators.py 49 def typed_subpart_iterator(msg, maintype='text', subtype=None):
53 "text". Optional `subtype' is the MIME subtype to match against; if
58 if subtype is None or subpart.get_content_subtype() == subtype:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
iterators.py 49 def typed_subpart_iterator(msg, maintype='text', subtype=None):
53 "text". Optional `subtype' is the MIME subtype to match against; if
58 if subtype is None or subpart.get_content_subtype() == subtype:

Completed in 2252 milliseconds

1 23 4 5 6 7 8 91011>>