Searched refs:setMethod (Results 1 - 25 of 41) sorted by relevance

12

/external/nist-sip/java/javax/sip/header/
H A DAllowHeader.java9 void setMethod(String method) throws ParseException; method in interface:AllowHeader
H A DRAckHeader.java10 void setMethod(String method) throws ParseException; method in interface:RAckHeader
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSipRequestLine.java45 public abstract void setMethod(String method); method in interface:SipRequestLine
H A DAllow.java76 public void setMethod(String method) throws ParseException { method in class:Allow
80 + ", Allow, setMethod(), the method parameter is null.");
H A DAllowList.java109 allow.setMethod((String) it.next());
H A DCSeq.java154 * @see javax.sip.header.CSeqHeader#setMethod(java.lang.String)
156 public void setMethod(String meth) throws ParseException { method in class:CSeq
160 + ", setMethod(), the meth parameter is null");
H A DRAck.java120 public void setMethod(String method) throws ParseException { method in class:RAck
H A DRequestLine.java127 * @see gov.nist.javax.sip.header.SipRequestLine#setMethod(java.lang.String)
129 public void setMethod(String method) { method in class:RequestLine
H A DHeaderFactoryImpl.java181 allow.setMethod(method);
244 cseq.setMethod(method);
746 rack.setMethod(method);
/external/javassist/src/main/javassist/compiler/ast/
H A DCallExpr.java33 public void setMethod(MemberResolver.Method m) { method in class:CallExpr
/external/nist-sip/java/javax/sip/message/
H A DRequest.java24 void setMethod(String method) throws ParseException; method in interface:Request
/external/webkit/Source/WebCore/html/
H A DIsIndexInputType.cpp65 form->setMethod("GET");
H A DHTMLFormElement.h100 void setMethod(const String&);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAllowParser.java79 allow.setMethod(token.getTokenValue());
90 allow.setMethod(token.getTokenValue());
H A DCSeqParser.java70 c.setMethod(m);
H A DRAckParser.java87 rack.setMethod(token.getTokenValue());
H A DRequestLineParser.java57 retval.setMethod(m);
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DZipOutputStreamTest.java155 * @tests java.util.zip.ZipOutputStream#setMethod(int)
159 zos.setMethod(ZipOutputStream.STORED);
168 zos.setMethod(ZipOutputStream.DEFLATED);
200 zip.setMethod(ZipEntry.STORED);
258 zip1.setMethod(ZipOutputStream.STORED);
259 zip1.setMethod(ZipEntry.STORED);
H A DZipEntryTest.java308 * @tests java.util.zip.ZipEntry#setMethod(int)
311 // Test for method void java.util.zip.ZipEntry.setMethod(int)
313 zentry.setMethod(ZipEntry.STORED);
316 zentry.setMethod(ZipEntry.DEFLATED);
322 zentry.setMethod(error);
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPRequest.java353 requestLine.setMethod(method);
396 public void setMethod(String method) { method in class:SIPRequest
408 this.requestLine.setMethod(meth);
412 this.cSeqHeader.setMethod(meth);
776 cancel.setMethod(Request.CANCEL);
781 cancel.getCSeq().setMethod(Request.CANCEL);
821 newRequest.setMethod(Request.ACK);
853 cseq.setMethod(Request.ACK);
918 newRequest.setMethod(Request.ACK);
927 newRequest.getCSeq().setMethod(Reques
[all...]
H A DMessageFactoryImpl.java134 sipRequest.setMethod(method);
192 sipRequest.setMethod(method);
243 sipRequest.setMethod(method);
557 sipRequest.setMethod(method);
/external/apache-http/src/org/apache/http/impl/client/
H A DRequestWrapper.java105 public void setMethod(final String method) { method in class:RequestWrapper
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorOutputElem.java112 public void setMethod(org.apache.xml.utils.QName newValue) method in class:ProcessorOutputElem
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java2661 Method setMethod;
2663 setMethod = subclass.getMethod("setDelegate___AndroidMock", delegateInterface);
2669 setMethod.invoke(newObject, realMock);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DGeneratedMessage.java1050 setMethod = getMethodOrDie(builderClass, "set" + camelCaseName, type);
1061 protected final Method setMethod; field in class:GeneratedMessage.FieldAccessorTable.SingularFieldAccessor
1069 invokeOrDie(setMethod, builder, value);

Completed in 1629 milliseconds

12