Home
last modified time | relevance | path

Searched refs:StringEntity (Results 1 – 3 of 3) sorted by relevance

/external/apache-http/src/org/apache/http/entity/
DStringEntity.java51 public class StringEntity extends AbstractHttpEntity implements Cloneable { class
55 public StringEntity(final String s, String charset) in StringEntity() method in StringEntity
68 public StringEntity(final String s) in StringEntity() method in StringEntity
/external/apache-http/src/org/apache/http/client/entity/
DUrlEncodedFormEntity.java37 import org.apache.http.entity.StringEntity;
44 public class UrlEncodedFormEntity extends StringEntity {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
DFakeHttpLayerTest.java8 import org.apache.http.entity.StringEntity;
87 match.setEntity(new StringEntity(expectedText)); in matches__shouldMatchPostBody()
90 noMatch.setEntity(new StringEntity("some text that does not match")); in matches__shouldMatchPostBody()