Home | History | Annotate | Download | only in network

Lines Matching refs:headerName

362 static double parseDateValueInHeader(const HTTPHeaderMap& headers, const AtomicString& headerName)
364 const AtomicString& headerValue = headers.get(headerName);
380 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("date", AtomicString::ConstructFromLiteral));
381 m_date = parseDateValueInHeader(m_httpHeaderFields, headerName);
390 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("age", AtomicString::ConstructFromLiteral));
391 const AtomicString& headerValue = m_httpHeaderFields.get(headerName);
404 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("expires", AtomicString::ConstructFromLiteral));
405 m_expires = parseDateValueInHeader(m_httpHeaderFields, headerName);
414 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("last-modified", AtomicString::ConstructFromLiteral));
415 m_lastModified = parseDateValueInHeader(m_httpHeaderFields, headerName);
423 DEFINE_STATIC_LOCAL(const AtomicString, headerName, ("content-disposition", AtomicString::ConstructFromLiteral));
424 String value = m_httpHeaderFields.get(headerName);