HomeSort by relevance Sort by last modified time
    Searched defs:subtype (Results 1 - 25 of 34) sorted by null

1 2

  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodInfoTest.java 181 final InputMethodSubtype subtype = InputMethodSubtype.CREATOR.createFromParcel(p); local
185 subtype.containsExtraValueKey(mSubtypeExtraValue_key));
186 assertEquals(mInputMethodSubtype.getExtraValue(), subtype.getExtraValue());
188 subtype.getExtraValueOf(mSubtypeExtraValue_key));
189 assertEquals(mInputMethodSubtype.getIconResId(), subtype.getIconResId());
190 assertEquals(mInputMethodSubtype.getLocale(), subtype.getLocale());
191 assertEquals(mInputMethodSubtype.getMode(), subtype.getMode());
192 assertEquals(mInputMethodSubtype.getNameResId(), subtype.getNameResId());
193 assertEquals(mInputMethodSubtype.hashCode(), subtype.hashCode());
194 assertEquals(mInputMethodSubtype.isAuxiliary(), subtype.isAuxiliary())
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
MediaRange.java 48 * | ( type "/" subtype )
65 /** subtype field
67 protected String subtype; field in class:MediaRange
81 /** get the subType field.
85 return subtype;
97 * Set the subtype member
101 subtype = s;
115 .append(subtype);
  /development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 106 final InputMethodSubtype subtype = subtypes.get(i); local
110 sb.append(subtype.getDisplayName(context, imi.getPackageName(),
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 36 private final String subtype; field in class:MediaType
39 private MediaType(String mediaType, String type, String subtype, String charset) {
42 this.subtype = subtype;
54 String subtype = typeSubtype.group(2).toLowerCase(Locale.US); local
70 return new MediaType(string, type, subtype, charset);
82 * Returns a specific media subtype, such as "plain" or "png", "mpeg",
85 public String subtype() { method in class:MediaType
86 return subtype;
  /external/chromium_org/net/base/
mime_util_unittest.cc 304 std::string subtype; local
306 "application/mime", &top_level_type, &subtype));
308 EXPECT_EQ("mime", subtype);
310 // Various allowed subtype forms.
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 209 * the given subtype. This takes into account primitiveness,
217 * @param subtypeBearer {@code non-null;} the subtype
222 Type subtype = subtypeBearer.getType(); local
224 if (supertype.equals(subtype)) {
230 int subBt = subtype.getBasicType();
240 subtype = Type.OBJECT;
249 return supertype.isIntlike() && subtype.isIntlike();
261 } else if (subtype == Type.KNOWN_NULL) {
263 * A known-null subtype is in fact assignable to any
274 if (! subtype.isArray())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementation.cpp 296 size_t subtype = mimeType.find("+json", 12, false); local
297 if (subtype != kNotFound) {
301 unsigned endSubtype = static_cast<unsigned>(subtype) + 5;
304 return parameterMarker > subtype;
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_array_splitting.cpp 370 const struct glsl_type *subtype; local
373 subtype = type->column_type();
375 subtype = type->fields.array;
388 new(entry->mem_ctx) ir_variable(subtype, name, ir_var_temporary);
  /external/mesa3d/src/glsl/
opt_array_splitting.cpp 370 const struct glsl_type *subtype; local
373 subtype = type->column_type();
375 subtype = type->fields.array;
388 new(entry->mem_ctx) ir_variable(subtype, name, ir_var_temporary);
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_osf.h 64 char subtype[MAXGENRELEN]; member in struct:xt_osf_user_finger
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_osf.h 64 char subtype[MAXGENRELEN]; member in struct:xt_osf_user_finger
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_controller.cc 40 // Converts the given match to a type (and possibly subtype) based on the AQS
47 size_t* subtype) {
50 // Default value, indicating no subtype.
51 *subtype = base::string16::npos;
53 // If provider is TYPE_ZERO_SUGGEST, set the subtype accordingly.
55 // SEARCH_SUGGEST or NAVSUGGEST. This subtype indicates context-aware zero
62 *subtype = 66;
67 // Do not set subtype here; subtype may have been set above.
72 *subtype = 46
611 size_t subtype = base::string16::npos; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_file_system_browser_host.cc 489 std::string subtype; local
491 mime_type, &top_level_type, &subtype) ||
495 // Replace a slash used for type/subtype separator with an underscore.
496 std::string output = top_level_type + "_" + subtype;
  /external/chromium_org/media/midi/
usb_midi_descriptor_parser.cc 153 // Descriptor Type and Descriptor Subtype should be accessible.
159 DescriptorSubType subtype = static_cast<DescriptorSubType>(data[2]); local
161 if (subtype != SUBTYPE_MIDI_OUT_JACK &&
162 subtype != SUBTYPE_MIDI_IN_JACK)
  /external/chromium_org/mojo/system/
message_in_transit.h 55 typedef uint16_t Subtype;
57 static const Subtype kSubtypeMessagePipeEndpointData = 0;
61 static const Subtype kSubtypeChannelRunMessagePipeEndpoint = 0;
62 static const Subtype kSubtypeChannelRemoveMessagePipeEndpoint = 1;
63 static const Subtype kSubtypeChannelRemoveMessagePipeEndpointAck = 2;
65 static const Subtype kSubtypeRawChannelPosixExtraPlatformHandles = 0;
120 Subtype subtype() const { return header()->subtype; } function in class:mojo::system::MessageInTransit::View
137 Subtype subtype
196 Subtype subtype() const { return header()->subtype; } function in class:mojo::system::MessageInTransit
234 Subtype subtype; \/\/ 2 bytes. member in struct:mojo::system::MessageInTransit::Header
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
rdtarga.c 337 int idlen, cmaptype, subtype, flags, interlace_type, components; local
353 subtype = UCH(targaheader[2]);
369 if (subtype > 8) {
373 subtype -= 8;
379 /* Now should have subtype 1, 2, or 3 */
383 switch (subtype) {
  /external/iptables/include/linux/netfilter/
xt_osf.h 76 char subtype[MAXGENRELEN]; member in struct:xt_osf_user_finger
  /external/jmdns/src/javax/jmdns/impl/
DNSEntry.java 81 * Check if two entries have the same subtype.
84 * @return <code>true</code> if the two entries have are for the same subtype, <code>false</code> otherwise
91 * Returns the subtype of this entry
93 * @return subtype of this entry
96 String subtype = this.getQualifiedNameMap().get(Fields.Subtype); local
97 return (subtype != null ? subtype : "");
JmmDNSImpl.java 442 String subtype = info.getSubtype(); local
443 if (!map.containsKey(subtype)) {
444 map.put(subtype, new ArrayList<ServiceInfo>(10));
446 map.get(subtype).add(info);
450 for (String subtype : map.keySet()) {
451 List<ServiceInfo> infoForSubType = map.get(subtype);
452 result.put(subtype, infoForSubType.toArray(new ServiceInfo[infoForSubType.size()]));
  /external/jpeg/
rdtarga.c 337 int idlen, cmaptype, subtype, flags, interlace_type, components; local
353 subtype = UCH(targaheader[2]);
369 if (subtype > 8) {
373 subtype -= 8;
379 /* Now should have subtype 1, 2, or 3 */
383 switch (subtype) {
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_osf.h 75 char subtype[MAXGENRELEN]; member in struct:xt_osf_user_finger
  /external/libpcap/
grammar.y 280 %token TYPE SUBTYPE DIR ADDR1 ADDR2 ADDR3 ADDR4 RA TA
305 %type <i> NUM action reason type subtype type_subtype dir
524 p80211: TYPE type SUBTYPE subtype
532 | SUBTYPE type_subtype { $$ = gen_p80211_type($2,
546 subtype: NUM label
563 bpf_error("unknown 802.11 subtype name");
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 262 final InputMethodSubtype subtype = mInputMethodManager.getCurrentInputMethodSubtype(); local
263 mInputView.setSubtypeOnSpaceKey(subtype);
267 public void onCurrentInputMethodSubtypeChanged(InputMethodSubtype subtype) {
268 mInputView.setSubtypeOnSpaceKey(subtype);
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasessionclient.cc 454 std::string subtype = GetXmlAttr(param, QN_SUBTYPE, buzz::STR_EMPTY); local
456 params->Add(FeedbackParam(type, subtype));
    [all...]
mediasessionclient_unittest.cc 314 " <rtcp-fb type='ccm' subtype='fir'/> " \
1224 std::string subtype = param->Attr(cricket::QN_SUBTYPE); local
    [all...]

Completed in 702 milliseconds

1 2