Searched refs:subtype (Results 1 - 25 of 114) sorted by relevance

12345

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DMediaRange.java48 * | ( type "/" subtype )
65 /** subtype field
67 protected String subtype; field in class:MediaRange
85 return subtype;
97 * Set the subtype member
101 subtype = s;
115 .append(subtype);
H A DAccept.java157 * @param subtype String to set
159 public void setContentSubType(String subtype) { argument
162 mediaRange.setSubtype(subtype);
H A DContentType.java82 /** Constructor given a content type and subtype.
84 *@param contentSubtype is the content subtype
97 mediaRange.type + "/" + mediaRange.subtype).compareToIgnoreCase(
136 return mediaRange.subtype;
139 /** Get the content subtype.
140 *@return the content subtype string (or null if not set).
146 /** Get the content subtype.
169 * set the content type and subtype.
171 *@param contentSubType content subtype string
194 /** Set the content subtype
[all...]
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dmimeparse.py26 (type, subtype, params) where 'params' is a dictionary
36 type, subtype = type.split('/', 1)
38 type, subtype = type.strip() or '*', '*'
41 subtype = subtype.strip() or '*'
49 return type, subtype, params
53 (type, subtype, params) where 'params' is a dictionary
64 type, subtype, params = parse_mime_type(range)
70 return type, subtype, params
82 for type, subtype, param
[all...]
/external/valgrind/none/tests/amd64/
H A Dgen_insn_test.pl240 my $subtype = $2;
248 subtype => $subtype,
256 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
263 print qq| $value$SubTypeSuffixes{$subtype}|;
277 my $subtype = $2;
285 subtype => $subtype,
293 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
300 print qq| $value$SubTypeSuffixes{$subtype}|;
[all...]
/external/valgrind/none/tests/x86/
H A Dgen_insn_test.pl217 my $subtype = $2;
225 subtype => $subtype,
233 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
240 print qq| $value$SubTypeSuffixes{$subtype}|;
254 my $subtype = $2;
262 subtype => $subtype,
270 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
277 print qq| $value$SubTypeSuffixes{$subtype}|;
[all...]
/external/libnl/include/netlink/netfilter/
H A Dnfnl.h24 #define NFNLMSG_TYPE(subsys, subtype) (((subsys) << 8) | (subtype))
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DMediaType.java36 private final String subtype; field in class:MediaType
39 private MediaType(String mediaType, String type, String subtype, String charset) { argument
42 this.subtype = subtype;
54 String subtype = typeSubtype.group(2).toLowerCase(Locale.US);
73 return new MediaType(string, type, subtype, charset);
85 * Returns a specific media subtype, such as "plain" or "png", "mpeg",
88 public String subtype() { method in class:MediaType
89 return subtype;
/external/guava/guava/src/com/google/common/net/
H A DMediaType.java58 * type or subtype value. A media type may not have wildcard type with a declared subtype. The
59 * {@code *} character has no special meaning as part of a parameter. All values for type, subtype,
64 * <p>All portions of the media type that are case-insensitive (type, subtype, parameter attributes)
87 /** Matcher for type, subtype and attributes. */
110 private static MediaType createConstant(String type, String subtype) { argument
111 return addKnownType(new MediaType(type, subtype, ImmutableListMultimap.<String, String>of()));
114 private static MediaType createConstantUtf8(String type, String subtype) { argument
115 return addKnownType(new MediaType(type, subtype, UTF_8_CONSTANT_PARAMETERS));
126 * "common name" of the media. This is often, but not necessarily the same as the subtype
349 private final String subtype; field in class:MediaType
352 MediaType(String type, String subtype, ImmutableListMultimap<String, String> parameters) argument
365 public String subtype() { method in class:MediaType
502 create(String type, String subtype) argument
511 createApplicationType(String subtype) argument
520 createAudioType(String subtype) argument
529 createImageType(String subtype) argument
538 createTextType(String subtype) argument
547 createVideoType(String subtype) argument
551 create(String type, String subtype, Multimap<String, String> parameters) argument
[all...]
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java29 * <li>&lt;sub&gt;: This is the subtype for the application protocol</li>
90 * @param subtype
91 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
98 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final String text) { argument
99 return new ServiceInfoImpl(type, name, subtype, port, 0, 0, false, text);
130 * @param subtype
131 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
142 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final String text) { argument
143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text);
174 * @param subtype
186 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final Map<String, ?> props) argument
230 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final byte[] text) argument
278 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final String text) argument
326 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
374 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) argument
[all...]
/external/lldb/utils/test/
H A Dras.py138 maintype, subtype = ctype.split('/', 1)
142 msg = MIMEText(fp.read(), _subtype=subtype)
146 msg = MIMEImage(fp.read(), _subtype=subtype)
150 msg = MIMEAudio(fp.read(), _subtype=subtype)
154 msg = MIMEBase(maintype, subtype)
/external/tcpdump/
H A Dprint-lldp.c642 int subtype, hexdump = FALSE; local
650 subtype = *(tptr+3);
653 tok2str(lldp_8021_subtype_values, "unknown", subtype),
654 subtype);
656 switch (subtype) {
845 int subtype, hexdump = FALSE; local
850 subtype = *(tptr+3);
853 tok2str(lldp_8023_subtype_values, "unknown", subtype),
854 subtype);
856 switch (subtype) {
923 int subtype, hexdump = FALSE; local
1104 int subtype, hexdump = FALSE; local
1370 u_int8_t subtype; local
[all...]
H A Dprint-eap.c168 u_int tlen, type, subtype; local
209 subtype = *(tptr+4);
214 switch (subtype) {
274 printf(" subtype [%s] 0x%02x,",
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_batch.c65 uint32_t subtype, uint32_t ending_offset)
68 annotation->subtype = subtype;
64 make_annotation(drm_intel_aub_annotation *annotation, uint32_t type, uint32_t subtype, uint32_t ending_offset) argument
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DMediaTypeTest.java40 assertEquals("plain", mediaType.subtype());
94 assertEquals("!#$%&'*+-.{|}~", mediaType.subtype());
100 assertEquals("plain", mediaType.subtype());
154 assertEquals("plain", mediaType.subtype());
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_sake.c91 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
90 eap_sake_build_msg(struct eap_sake_data *data, u8 id, size_t length, u8 subtype) argument
414 u8 subtype; local
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_sake.c91 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
90 eap_sake_build_msg(struct eap_sake_data *data, u8 id, size_t length, u8 subtype) argument
414 u8 subtype; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_sake.c91 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
90 eap_sake_build_msg(struct eap_sake_data *data, u8 id, size_t length, u8 subtype) argument
414 u8 subtype; local
[all...]
/external/libdrm/intel/
H A Dintel_aub.h100 * 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/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
H A DMediaTypeTest.java75 assertEquals("yams", newType.subtype());
81 assertEquals("yams", newType.subtype());
87 assertEquals("yams", newType.subtype());
93 assertEquals("yams", newType.subtype());
99 assertEquals("yams", newType.subtype());
109 assertEquals("plain", MediaType.parse("text/plain").subtype());
111 MediaType.parse("application/atom+xml; charset=utf-8").subtype());
/external/guava/guava-tests/test/com/google/common/net/
H A DMediaTypeTest.java71 assertSame(constant, MediaType.create(constant.type(), constant.subtype())
135 assertEquals("yams", newType.subtype());
141 assertEquals("yams", newType.subtype());
147 assertEquals("yams", newType.subtype());
153 assertEquals("yams", newType.subtype());
159 assertEquals("yams", newType.subtype());
169 assertEquals("plain", MediaType.parse("text/plain").subtype());
171 MediaType.parse("application/atom+xml; charset=utf-8").subtype());
/external/jmdns/src/javax/jmdns/impl/
H A DJmDNSImpl.java125 public SubTypeEntry(String subtype) { argument
127 _value = (subtype != null ? subtype : "");
228 * @param subtype
232 public boolean contains(String subtype) { argument
233 return subtype != null && this.containsKey(subtype.toLowerCase());
240 * @param subtype
244 public boolean add(String subtype) { argument
245 if (subtype
740 resolveServiceInfo(String type, String name, String subtype, boolean persistent) argument
756 getServiceInfoFromCache(String type, String name, String subtype, boolean persistent) argument
[all...]
H A DServiceInfoImpl.java119 * @param subtype
127 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, String text) { argument
128 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, (byte[]) null);
142 * @param subtype
150 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, Map<String, ?> props) { argument
151 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, textFromProperties(props));
157 * @param subtype
165 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, byte text[]) { argument
166 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, text);
236 public static Map<Fields, String> decodeQualifiedNameMap(String type, String name, String subtype) { argument
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_osf.h76 char subtype[MAXGENRELEN]; member in struct:xt_osf_user_finger
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_osf.h75 char subtype[MAXGENRELEN]; member in struct:xt_osf_user_finger

Completed in 1052 milliseconds

12345