/external/okhttp/src/main/java/com/squareup/okhttp/ |
D | OkAuthenticator.java | 89 private final String headerValue; field in OkAuthenticator.Credential 91 private Credential(String headerValue) { in Credential() argument 92 this.headerValue = headerValue; in Credential() 108 return headerValue; in getHeaderValue() 112 return o instanceof Credential && ((Credential) o).headerValue.equals(headerValue); in equals() 116 return headerValue.hashCode(); in hashCode() 120 return headerValue; in toString()
|
D | Response.java | 96 public String headerValue(int index) { in headerValue() method in Response
|
D | Request.java | 85 public String headerValue(int index) { in headerValue() method in Request
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
D | WebSocketExtensionDispatcher.cpp | 98 bool WebSocketExtensionDispatcher::processHeaderValue(const String& headerValue) in processHeaderValue() argument 100 if (!headerValue.length()) in processHeaderValue() 105 …nse must not include 'Sec-WebSocket-Extensions' header if not present in request: " + headerValue); in processHeaderValue() 109 const CString headerValueData = headerValue.utf8(); in processHeaderValue()
|
/external/webrtc/src/system_wrappers/source/ |
D | aligned_malloc.cc | 96 uintptr_t headerValue = (uintptr_t)returnValue; in AlignedMalloc() local 97 memcpy(headerPtr,&headerValue,sizeof(uintptr_t)); in AlignedMalloc()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | CookieParser.js | 111 _initialize: function(headerValue) argument 113 this._input = headerValue; 114 if (typeof headerValue !== "string")
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
D | VTTParser.cpp | 294 String headerValue = line.substring(colonPosition + 1); in collectMetadataHeader() local 296 createNewRegion(headerValue); in collectMetadataHeader() 449 void VTTParser::createNewRegion(const String& headerValue) in createNewRegion() argument 451 if (headerValue.isEmpty()) in createNewRegion() 456 region->setRegionSettings(headerValue); in createNewRegion()
|
D | VTTParser.h | 134 void createNewRegion(const String& headerValue);
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
D | CrossOriginAccessControl.cpp | 190 void parseAccessControlExposeHeadersAllowList(const String& headerValue, HTTPHeaderSet& headerSet) in parseAccessControlExposeHeadersAllowList() argument 193 headerValue.split(',', false, headers); in parseAccessControlExposeHeadersAllowList()
|
D | CrossOriginAccessControl.h | 58 void parseAccessControlExposeHeadersAllowList(const String& headerValue, HTTPHeaderSet&);
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
D | ResourceResponse.cpp | 419 const AtomicString& headerValue = headers.get(headerName); in parseDateValueInHeader() local 420 if (headerValue.isEmpty()) in parseDateValueInHeader() 426 double dateInMilliseconds = parseDate(headerValue); in parseDateValueInHeader() 446 const AtomicString& headerValue = m_httpHeaderFields.get(headerName); in age() local 448 m_age = headerValue.toDouble(&ok); in age()
|
/external/okhttp/src/test/java/com/squareup/okhttp/internal/ |
D | RecordedResponse.java | 52 actualHeaders.add(response.headerName(i) + ": " + response.headerValue(i)); in assertContainsHeaders()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | Lexer.java | 81 String headerValue = null; in getHeaderValue() 84 headerValue = line.substring(begin + 1); in getHeaderValue() 88 return headerValue; in getHeaderValue()
|
D | ParserFactory.java | 287 String headerValue = Lexer.getHeaderValue(line); in createParser() local 288 if (headerName == null || headerValue == null) in createParser()
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | Job.java | 56 connection.addRequestProperty(request.headerName(i), request.headerValue(i)); in sendRequest()
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | XSSAuditor.cpp | 274 … const AtomicString& headerValue = documentLoader->response().httpHeaderField(XSSProtectionHeader); in init() local 281 …ReflectedXSSDisposition xssProtectionHeader = parseXSSProtectionHeader(headerValue, errorDetails, … in init() 292 …Source, ErrorMessageLevel, "Error parsing header X-XSS-Protection: " + headerValue + ": " + error… in init()
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | AssociatedURLLoaderTest.cpp | 213 void CheckHeaderFails(const char* headerField, const char* headerValue) in CheckHeaderFails() argument 218 … request.setHTTPHeaderField(WebString::fromUTF8(headerField), WebString::fromUTF8(headerValue)); in CheckHeaderFails()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | HeaderFactoryImpl.java | 1203 String headerValue) in createHeader() argument 1211 .append(headerValue) in createHeader()
|