Searched defs:etag (Results 1 - 24 of 24) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DSIPETagParser.java47 * @param etag the header to parse
49 public SIPETagParser(String etag) { argument
50 super(etag);
H A DSIPIfMatchParser.java47 * @param etag the header to parse
49 public SIPIfMatchParser(String etag) { argument
50 super(etag);
/external/nist-sip/java/javax/sip/header/
H A DSIPETagHeader.java9 void setETag(String etag) throws ParseException; argument
H A DHeaderFactory.java150 SIPETagHeader createSIPETagHeader(String etag) throws ParseException; argument
152 SIPIfMatchHeader createSIPIfMatchHeader(String etag) throws ParseException; argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPETag.java81 * @param etag String to set
83 public void setETag(String etag) throws ParseException { argument
84 if (etag == null)
87 + "SIP-ETag, setETag(), the etag parameter is null");
88 this.entityTag = etag;
H A DSIPIfMatch.java57 public SIPIfMatch(String etag) throws ParseException { argument
59 this.setETag( etag );
80 * @param etag -- the entity tag to set.
82 public void setETag(String etag) throws ParseException { argument
83 if (etag == null)
86 + "SIP-If-Match, setETag(), the etag parameter is null");
87 this.entityTag = etag;
H A DHeaderFactoryImpl.java1304 public SIPETagHeader createSIPETagHeader(String etag) throws ParseException { argument
1305 return new SIPETag(etag);
1312 public SIPIfMatchHeader createSIPIfMatchHeader(String etag) throws ParseException { argument
1313 return new SIPIfMatch(etag);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DCacheStrategy.java120 private String etag; field in class:CacheStrategy.Factory
144 etag = value;
227 if (etag != null) {
228 conditionalRequestBuilder.header("If-None-Match", etag);
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DScanHandler.java70 public void etag(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
H A DPYXWriter.java69 public void etag(char[] buff, int offset, int length) throws SAXException { method in class:PYXWriter
H A DParser.java643 public void etag(char[] buff, int offset, int length) throws SAXException { method in class:Parser
681 // System.err.println("got etag [" + name + "]");
/external/volley/src/main/java/com/android/volley/
H A DCache.java72 public String etag; field in class:Cache.Entry
/external/volley/src/main/java/com/android/volley/toolbox/
H A DDiskBasedCache.java352 public String etag; field in class:DiskBasedCache.CacheHeader
379 this.etag = entry.etag;
400 entry.etag = readString(is);
401 if (entry.etag.equals("")) {
402 entry.etag = null;
419 e.etag = etag;
436 writeString(os, etag == null ? "" : etag);
[all...]
/external/xmlrpcpp/src/
H A DXmlRpcUtil.cpp107 std::string etag = "</"; local
108 etag += tag + 1;
109 size_t iend = xml.find(etag, istart);
112 *offset = int(iend + etag.length());
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
H A DResponseCacheTest.java795 @Test public void etag() throws Exception { method in class:ResponseCacheTest
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DCacheTest.java832 @Test public void etag() throws Exception { method in class:CacheTest
1923 + "etag: foo\n"
1956 assertEquals("foo", response.header("etag"));
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/
H A DUrlConnectionCacheTest.java701 @Test public void etag() throws Exception { method in class:UrlConnectionCacheTest
1616 + "etag: foo\n"
1649 assertEquals("foo", connection.getHeaderField("etag"));
/external/robolectric/v3/runtime/
H A Dtagsoup-1.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 446 milliseconds