HomeSort by relevance Sort by last modified time
    Searched refs:subtype (Results 76 - 100 of 182) sorted by null

1 2 34 5 6 7 8

  /external/wpa_supplicant_8/src/eap_common/
eap_sake_common.h 50 u8 subtype; member in struct:eap_sake_hdr
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
802.11e.h 51 uint8 subtype; /* WME_SUBTYPE_TSPEC */ member in struct:tspec
eapol.h 151 uint8 subtype; member in struct:__anon32657
  /packages/apps/Browser/src/com/android/browser/
NetworkStateHandler.java 114 private void sendNetworkType(String type, String subtype) {
  /external/clang/tools/scan-view/
Reporter.py 92 maintype, subtype = ctype.split('/', 1)
96 msg = MIMEText(fp.read(), _subtype=subtype)
100 msg = MIMEBase(maintype, subtype)
  /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 : "");
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
BodyDescriptor.java 109 String subtype = main.substring(index + 1).trim(); local
110 if (type.length() > 0 && subtype.length() > 0) {
111 main = type + "/" + subtype;
  /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/qemu/distrib/jpeg-6b/
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/chromium/chrome/browser/importer/
importer_unittest.cc 287 void ClearPStoreType(IPStore* pstore, const GUID* type, const GUID* subtype) {
289 HRESULT result = pstore->EnumItems(0, type, subtype, 0, item.Receive());
293 pstore->DeleteItem(0, type, subtype, item_name, NULL, 0);
297 pstore->DeleteSubtype(0, type, subtype, 0);
301 void WritePStore(IPStore* pstore, const GUID* type, const GUID* subtype) {
320 HRESULT res = pstore->WriteItem(0, type, subtype, items[i].name,
359 GUID subtype = IEImporter::kUnittestGUID;
368 ClearPStoreType(pstore, &type, &subtype);
373 pstore->CreateSubtype(0, &type, &subtype, &type_info, NULL, 0);
374 WritePStore(pstore, &type, &subtype);
    [all...]
  /external/chromium_org/chrome/browser/importer/
ie_importer_browsertest_win.cc 215 void ClearPStoreType(IPStore* pstore, const GUID* type, const GUID* subtype) {
217 HRESULT result = pstore->EnumItems(0, type, subtype, 0, item.Receive());
221 pstore->DeleteItem(0, type, subtype, item_name, NULL, 0);
225 pstore->DeleteSubtype(0, type, subtype, 0);
229 void WritePStore(IPStore* pstore, const GUID* type, const GUID* subtype) {
248 HRESULT res = pstore->WriteItem(0, type, subtype, items[i].name,
  /frameworks/wilhelm/tools/permute/
permute.c 145 unsigned subtype = sfinfo_in.format & SF_FORMAT_SUBMASK; local
147 switch (subtype) {
155 fprintf(stderr, "%s: unsupported subtype 0x%X\n", path_in, subtype);
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 252 final InputMethodSubtype subtype = mInputMethodManager.getCurrentInputMethodSubtype(); local
253 mInputView.setSubtypeOnSpaceKey(subtype);
257 public void onCurrentInputMethodSubtypeChanged(InputMethodSubtype subtype) {
258 mInputView.setSubtypeOnSpaceKey(subtype);
  /external/chromium_org/content/common/gpu/media/
dxva_video_decode_accelerator.h 92 bool SetDecoderOutputMediaType(const GUID& subtype);
  /external/wpa_supplicant_8/src/p2p/
p2p_build.c 17 void p2p_buf_add_action_hdr(struct wpabuf *buf, u8 subtype, u8 dialog_token)
23 wpabuf_put_u8(buf, subtype); /* OUI Subtype */
29 void p2p_buf_add_public_action_hdr(struct wpabuf *buf, u8 subtype,
37 wpabuf_put_u8(buf, subtype); /* OUI Subtype */
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 421 final InputMethodSubtype subtype = AdditionalSubtypeUtils.createAdditionalSubtype( local
423 final KeyboardLayoutSet keyboardLayoutSet = createKeyboardSetForSpellChecker(subtype);
452 private KeyboardLayoutSet createKeyboardSetForSpellChecker(final InputMethodSubtype subtype) {
458 builder.setSubtype(subtype);
  /external/tcpdump/
print-802_11.c 604 printf("Unhandled Management subtype(%x)",
667 printf("Unknown Ctrl Subtype");
690 u_int subtype = FC_SUBTYPE(fc); local
692 if (DATA_FRAME_IS_CF_ACK(subtype) || DATA_FRAME_IS_CF_POLL(subtype) ||
693 DATA_FRAME_IS_QOS(subtype)) {
695 if (DATA_FRAME_IS_CF_ACK(subtype)) {
696 if (DATA_FRAME_IS_CF_POLL(subtype))
701 if (DATA_FRAME_IS_CF_POLL(subtype))
704 if (DATA_FRAME_IS_QOS(subtype))
    [all...]
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerInfo.java 108 if (!"subtype".equals(subtypeNodeName)) {
110 "Meta-data in spell-checker does not start with subtype tag");
114 SpellCheckerSubtype subtype = new SpellCheckerSubtype( local
121 mSubtypes.add(subtype);
251 * Return the subtype at the specified index.
253 * @param index the index of the subtype to return.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeSwitcher.java 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.REQ_NETWORK_CONNECTIVITY;
59 // Dummy no language QWERTY subtype. See {@link R.xml.method}.
64 + "," + Constants.Subtype.ExtraValue.ASCII_CAPABLE
66 + Constants.Subtype.ExtraValue.EMOJI_CAPABLE,
68 // Caveat: We probably should remove this when we add an Emoji subtype in {@link R.xml.method}.
69 // Dummy Emoji subtype. See {@link R.xml.method}.
74 + Constants.Subtype.ExtraValue.EMOJI_CAPABLE,
153 // TODO: Pick up the first found subtype for now. Should handle all subtypes
167 // Update the current subtype. LatinIME.onCurrentInputMethodSubtypeChanged calls this function.
199 private void switchToTargetIME(final String imiId, final InputMethodSubtype subtype,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 48 self.subtype = '/'.join(fields[1:])
99 return self.subtype
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 48 self.subtype = '/'.join(fields[1:])
99 return self.subtype
  /system/core/sh/
jobs.c 1399 int subtype = 0; local
1413 subtype = *p++;
1414 if ((subtype & VSTYPE) == VSLENGTH)
1418 if (!(subtype & VSQUOTE) != !(quoted & 1)) {
1431 subtype = 0;
1454 if (subtype == 0)
1456 str = vstype[subtype & VSTYPE];
1457 if (subtype & VSNUL)
parser.c 1260 int subtype; local
1281 subtype = VSNORMAL;
1288 subtype = VSLENGTH;
1291 subtype = 0;
1313 if (subtype == 0) {
1323 subtype = p - types + VSNORMAL;
1329 subtype = c == '#' ? VSTRIMLEFT :
1333 subtype++;
1344 *(stackblock() + typeloc) = subtype | flags;
1345 if (subtype != VSNORMAL)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_events.c 126 if (phevent->subtype == Ph_EV_PTR_ENTER)
130 else if (phevent->subtype ==Ph_EV_PTR_LEAVE)
172 if (phevent->subtype == Ph_EV_RELEASE_REAL && buttons != 0)
176 else if(phevent->subtype == Ph_EV_RELEASE_PHANTOM)
380 if (phevent->subtype==Ph_OFFSCREEN_INVALID)
  /external/wpa_supplicant_8/src/ap/
gas_serv.c 664 static void rx_anqp_hs_query_list(struct hostapd_data *hapd, u8 subtype,
667 switch (subtype) {
695 wpa_printf(MSG_DEBUG, "ANQP: Unsupported HS 2.0 subtype %u",
696 subtype);
724 u8 subtype; local
750 subtype = *pos++;
752 switch (subtype) {
764 wpa_printf(MSG_DEBUG, "ANQP: Unsupported HS 2.0 query subtype "
765 "%u", subtype);

Completed in 809 milliseconds

1 2 34 5 6 7 8