HomeSort by relevance Sort by last modified time
    Searched defs:setAttribute (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/http/protocol/
SyncBasicHttpContext.java 53 public synchronized void setAttribute(final String id, final Object obj) {
54 super.setAttribute(id, obj);
DefaultedHttpContext.java 71 public void setAttribute(final String id, final Object obj) {
72 this.local.setAttribute(id, obj);
HttpContext.java 54 void setAttribute(String id, Object obj);
BasicHttpContext.java 74 public void setAttribute(final String id, final Object obj) {
HttpRequestExecutor.java 199 context.setAttribute(ExecutionContext.HTTP_REQ_SENT, Boolean.FALSE);
241 context.setAttribute(ExecutionContext.HTTP_REQ_SENT, Boolean.TRUE);
  /external/webkit/WebCore/bindings/generic/
BindingElement.h 46 static void setAttribute(State<Binding>*, Element*, const AtomicString&, const AtomicString&, ExceptionCode&);
55 void BindingElement<Binding>::setAttribute(State<Binding>* state, Element* element, const AtomicString& name, const AtomicString& value, ExceptionCode& ec)
62 element->setAttribute(name, value, ec);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Element.java 149 public void setAttribute(String name, String type, String value) {
150 theType.setAttribute(theAtts, name, type, value);
ElementType.java 189 public void setAttribute(AttributesImpl atts, String name, String type, String value) {
206 atts.setAttribute(i, namespace, localName, name, type, value);
244 public void setAttribute(String name, String type, String value) {
245 setAttribute(theAtts, name, type, value);
  /external/apache-http/src/org/apache/http/client/protocol/
ClientContextConfigurer.java 53 this.context.setAttribute(COOKIESPEC_REGISTRY, registry);
57 this.context.setAttribute(AUTHSCHEME_REGISTRY, registry);
61 this.context.setAttribute(COOKIE_STORE, store);
65 this.context.setAttribute(CREDS_PROVIDER, provider);
69 this.context.setAttribute(AUTH_SCHEME_PREF, list);
RequestAddCookies.java 188 context.setAttribute(ClientContext.COOKIE_SPEC, cookieSpec);
189 context.setAttribute(ClientContext.COOKIE_ORIGIN, cookieOrigin);