HomeSort by relevance Sort by last modified time
    Searched full:headername (Results 1 - 25 of 406) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/message/
Message.java 20 Header getHeader(String headerName);
23 void removeFirst(String headerName) throws NullPointerException;
24 void removeLast(String headerName) throws NullPointerException;
25 void removeHeader(String headerName);
28 ListIterator getHeaders(String headerName);
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderNamesCache.java 30 public static String toLowerCase(String headerName) {
31 String lowerCase = (String) lowercaseMap.get(headerName);
33 return headerName.toLowerCase();
SIPHeader.java 45 protected String headerName;
54 headerName = hname;
67 return headerName;
72 *@return String headerName
76 return this.headerName;
84 headerName = hdrname;
89 * the headerName:
122 buffer.append(this.headerName).append(COLON).append(SP);
128 /** Encode the body of this header (the stuff that follows headerName).
151 return this.headerName.hashCode()
    [all...]
ExtensionHeaderImpl.java 59 public ExtensionHeaderImpl(String headerName) {
60 super(headerName);
65 * @param headerName is the name of the header to set.
68 public void setName(String headerName) {
69 this.headerName = headerName;
108 return new StringBuffer(this.headerName)
NameMap.java 45 protected static void putNameMap(String headerName, String className) {
47 headerName.toLowerCase(),
51 public static Class getClassFromName(String headerName) {
52 String className = (String) nameMap.get(headerName.toLowerCase());
65 *@param headerName is the extension header name.
72 String headerName,
74 nameMap.put(headerName.toLowerCase(), className);
SIPHeaderList.java 60 return this.headerName;
78 this.headerName = hname;
156 buffer.append(headerName).append(':').append(Separators.NEWLINE);
161 if (this.headerName.equals(SIPHeaderNames.WWW_AUTHENTICATE)
162 || this.headerName.equals(SIPHeaderNames.PROXY_AUTHENTICATE)
163 || this.headerName.equals(SIPHeaderNames.AUTHORIZATION)
164 || this.headerName.equals(SIPHeaderNames.PROXY_AUTHORIZATION)
166 (this.headerName.equals(SIPHeaderNames.VIA) || this.headerName.equals(SIPHeaderNames.ROUTE) || this.headerName.equals(SIPHeaderNames.RECORD_ROUTE))) // Less confusing to rea
    [all...]
ExtensionHeaderList.java 49 ExtensionHeaderList retval = new ExtensionHeaderList(headerName);
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipURIExt.java 25 * @param headerName -- the name of the header.
29 public void removeHeader(String headerName);
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceResponseSoup.cpp 65 const char* headerName;
69 while (soup_message_headers_iter_next(&headersIter, &headerName, &headerValue))
70 m_httpHeaderFields.set(String::fromUTF8(headerName), String::fromUTF8(headerValue));
ResourceRequestSoup.cpp 94 const char* headerName;
97 while (soup_message_headers_iter_next(&headersIter, &headerName, &headerValue)) {
98 m_httpHeaderFields.set(String::fromUTF8(headerName), String::fromUTF8(headerValue));
  /external/webkit/Source/WebCore/platform/network/
ResourceResponseBase.cpp 398 static double parseDateValueInHeader(const HTTPHeaderMap& headers, const AtomicString& headerName)
400 String headerValue = headers.get(headerName);
418 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("date"));
419 m_date = parseDateValueInHeader(m_httpHeaderFields, headerName);
430 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("age"));
431 String headerValue = m_httpHeaderFields.get(headerName);
446 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("expires"));
447 m_expires = parseDateValueInHeader(m_httpHeaderFields, headerName);
458 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("last-modified"));
459 m_lastModified = parseDateValueInHeader(m_httpHeaderFields, headerName);
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 68 protected String headerName;
86 this.headerName = name;
123 return (this.headerName == null) ||
124 this.headerName.equalsIgnoreCase(this.allHeaders[index].getName());
BasicListHeaderIterator.java 75 protected String headerName;
93 this.headerName = name;
131 if (this.headerName == null)
137 return this.headerName.equalsIgnoreCase(name);
  /external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
ReferencesParser.java 42 headerName(TokenTypes.REFERENCES);
JoinParser.java 46 headerName(TokenTypes.JOIN_TO);
MinSEParser.java 45 headerName(TokenTypes.MINSE_TO);
ReferredByParser.java 33 headerName(TokenTypes.REFERREDBY_TO);
SessionExpiresParser.java 41 headerName(TokenTypes.SESSIONEXPIRES_TO);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
c++allocator.h 27 * Do not attempt to use it directly. @headername{memory}
cpu_defines.h 27 * Do not attempt to use it directly. @headername{iosfwd}
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
c++allocator.h 27 * Do not attempt to use it directly. @headername{memory}
cpu_defines.h 27 * Do not attempt to use it directly. @headername{iosfwd}
  /external/icu4c/tools/genren/
genren.pl 21 $headername = 'urename.h';
47 /^-o/ && (($headername = shift (@ARGV)), next); # output file
61 #$headername = "uren".substr($ARGV[0], 6, index(".", $ARGV[0])-7).".h";
63 $HEADERDEF = uc($headername); # this is building the constant for #define
67 open HEADER, ">$headername"; # opening a header file
80 * file name: $headername
  /external/chromium/chrome/common/net/
net_resource_provider.cc 32 value.SetString("headerName",
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
SecurityClientParser.java 68 headerName(TokenTypes.SECURITY_CLIENT);

Completed in 613 milliseconds

1 2 3 4 5 6 7 8 91011>>