HomeSort by relevance Sort by last modified time
    Searched refs:NameValue (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/nist-sip/java/gov/nist/core/
NameValueList.java 42 * Implements a simple NameValue association with a quick lookup function (via a
54 public class NameValueList implements Serializable, Cloneable, Map<String,NameValue> {
59 private Map<String,NameValue> hmap;
68 this.hmap = new LinkedHashMap<String,NameValue>();
74 this.hmap = new ConcurrentHashMap<String,NameValue>();
76 this.hmap = new LinkedHashMap<String,NameValue>();
95 Iterator<NameValue> iterator = hmap.values().iterator();
120 * Set a namevalue object in this list.
123 public void set(NameValue nv) {
128 * Set a namevalue object in this list
    [all...]
DuplicateNameValueList.java 46 private MultiValueMapImpl<NameValue> nameValueMap = new MultiValueMapImpl<NameValue>();
75 Iterator<NameValue> iterator = nameValueMap.values().iterator();
100 * Set a namevalue object in this list.
103 public void set(NameValue nv) {
108 * Set a namevalue object in this list.
111 NameValue nameValue = new NameValue(name, value);
112 nameValueMap.put(name.toLowerCase(), nameValue);
    [all...]
ParserCore.java 48 protected NameValue nameValue(char separator) throws ParseException {
49 if (debug) dbg_enter("nameValue");
82 NameValue nv = new NameValue(name.tokenValue,str,isFlag);
87 return new NameValue(name.tokenValue,"",true);
90 return new NameValue(name.tokenValue,null,false);
94 if (debug) dbg_leave("nameValue");
129 protected NameValue nameValue() throws ParseException
    [all...]
NameValue.java 47 public class NameValue extends GenericObject implements Entry<String,String> {
63 public NameValue() {
78 public NameValue(String n, Object v, boolean isFlag) {
95 public NameValue(String n, Object v) {
146 * Get the encoded representation of this namevalue object. Added
213 NameValue retval = (NameValue) super.clone();
226 NameValue that = (NameValue) other;
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PChargingFunctionAddresses.java 33 import gov.nist.core.NameValue;
168 NameValue nv;
170 nv = (NameValue) li.next();
173 NameValue ccfNV = new NameValue();
247 public ListIterator<NameValue> getEventChargingFunctionAddresses() {
249 LinkedList<NameValue> listw = new LinkedList<NameValue>();
252 ListIterator<NameValue> ecfLIST = listw.listIterator();
253 NameValue nv
    [all...]
PChargingFunctionAddressesHeader.java 33 import gov.nist.core.NameValue;
SecurityAgree.java 40 import gov.nist.core.NameValue;
96 NameValue nv = super.parameters.getNameValue(name.toLowerCase());
99 nv = new NameValue(name, value);
  /external/curl/src/
tool_setopt.h 42 } NameValue;
49 extern const NameValue setopt_nv_CURLPROXY[];
50 extern const NameValue setopt_nv_CURL_SOCKS_PROXY[];
51 extern const NameValue setopt_nv_CURL_HTTP_VERSION[];
52 extern const NameValue setopt_nv_CURL_SSLVERSION[];
53 extern const NameValue setopt_nv_CURL_TIMECOND[];
54 extern const NameValue setopt_nv_CURLFTPSSL_CCC[];
55 extern const NameValue setopt_nv_CURLUSESSL[];
57 extern const NameValue setopt_nv_CURL_NETRC[];
58 extern const NameValue setopt_nv_CURLPROTO[]
    [all...]
tool_setopt.c 47 const NameValue setopt_nv_CURLPROXY[] = {
58 const NameValue setopt_nv_CURL_SOCKS_PROXY[] = {
80 const NameValue setopt_nv_CURL_HTTP_VERSION[] = {
89 const NameValue setopt_nv_CURL_SSLVERSION[] = {
101 const NameValue setopt_nv_CURL_TIMECOND[] = {
109 const NameValue setopt_nv_CURLFTPSSL_CCC[] = {
116 const NameValue setopt_nv_CURLUSESSL[] = {
130 const NameValue setopt_nv_CURL_NETRC[] = {
139 const NameValue setopt_nv_CURLPROTO[] = {
167 static const NameValue setopt_nv_CURLNONZERODEFAULTS[] =
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
TelephoneNumber.java 156 NameValue nv = new NameValue(POSTDIAL, p);
165 NameValue nv = new NameValue(name, value);
234 NameValue nv = new NameValue(name, value);
SipUri.java 553 NameValue nv = new NameValue(name, value);
588 NameValue nv = new NameValue(name, value);
604 NameValue nameValue = uriParms.getNameValue(MADDR);
607 if (nameValue != null)
608 nameValue.setValueAsObject(host);
610 nameValue = new NameValue(MADDR, host)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ParametersParser.java 58 NameValue nv = nameValue();
72 NameValue nv = nameValue();
ViaParser.java 96 NameValue nameValue = this.nameValue();
97 String name = nameValue.getName();
99 String branchId = (String) nameValue.getValueAsObject();
104 v.setParameter(nameValue);
141 * Overrides the superclass nameValue parser because we have to tolerate
144 protected NameValue nameValue() throws ParseException {
146 dbg_enter("nameValue");
    [all...]
AuthenticationInfoParser.java 78 NameValue nv = super.nameValue();
85 nv = super.nameValue();
ChallengeParser.java 63 * @return NameValue containing the parameter
71 NameValue nv = this.nameValue('=');
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParametersHeader.java 32 import gov.nist.core.NameValue;
149 NameValue nv = parameters.getNameValue(name);
153 nv = new NameValue(name, value);
178 NameValue nv = parameters.getNameValue(name);
183 nv = new NameValue(name, value);
246 NameValue nv = parameters.getNameValue(name);
250 nv = new NameValue(name, val);
305 * @param nameValue - the name value of the parameter to set.
307 public void setParameter(NameValue nameValue) {
    [all...]
AuthenticationInfo.java 54 public void add(NameValue nv) {
72 public NameValue getAuthInfo(String name) {
210 NameValue nv = super.parameters.getNameValue(name.toLowerCase());
212 nv = new NameValue(name, value);
AuthenticationHeader.java 106 NameValue nv = super.parameters.getNameValue(name.toLowerCase());
108 nv = new NameValue(name, value);
259 NameValue nv = new NameValue(ParameterNames.URI, uri);
403 setParameter(new NameValue(ParameterNames.STALE, Boolean.valueOf(stale)));
Contact.java 36 import gov.nist.core.NameValue;
84 NameValue nv = parameters.getNameValue(name);
88 nv = new NameValue(name, value);
AcceptLanguage.java 155 this.setParameter(new NameValue("q", Float.valueOf(q)));
Via.java 33 import gov.nist.core.NameValue;
444 setParameter(new NameValue(ParameterNames.TTL, Integer.valueOf(ttl)));
474 NameValue nameValue = new NameValue(ParameterNames.MADDR, host);
475 setParameter(nameValue);
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PAccessNetworkInfoParser.java 38 import gov.nist.core.NameValue;
107 NameValue nv = super.nameValue('=');
PChargingVectorParser.java 32 import gov.nist.core.NameValue;
105 NameValue nv = this.nameValue('=');
PChargingFunctionAddressesParser.java 32 import gov.nist.core.NameValue;
126 NameValue nv = this.nameValue('=');
SecurityAgreeParser.java 41 import gov.nist.core.NameValue;
72 NameValue nv = this.nameValue('=');

Completed in 155 milliseconds

1 2 3