Home
last modified time | relevance | path

Searched refs:METHOD_NAME (Results 1 – 25 of 25) sorted by relevance

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DHttpRedirect.java51 if (method.equalsIgnoreCase(HttpHead.METHOD_NAME)) { in HttpRedirect()
52 this.method = HttpHead.METHOD_NAME; in HttpRedirect()
54 this.method = HttpGet.METHOD_NAME; in HttpRedirect()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DHighamHall54Integrator.java40 private static final String METHOD_NAME = "Higham-Hall 5(4)"; field in HighamHall54Integrator
79 super(METHOD_NAME, false, STATIC_C, STATIC_A, STATIC_B, new HighamHall54StepInterpolator(), in HighamHall54Integrator()
95 super(METHOD_NAME, false, STATIC_C, STATIC_A, STATIC_B, new HighamHall54StepInterpolator(), in HighamHall54Integrator()
DDormandPrince54Integrator.java52 private static final String METHOD_NAME = "Dormand-Prince 5(4)"; field in DormandPrince54Integrator
106 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B, new DormandPrince54StepInterpolator(), in DormandPrince54Integrator()
122 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B, new DormandPrince54StepInterpolator(), in DormandPrince54Integrator()
DDormandPrince853Integrator.java60 private static final String METHOD_NAME = "Dormand-Prince 8 (5, 3)"; field in DormandPrince853Integrator
218 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B, in DormandPrince853Integrator()
235 super(METHOD_NAME, true, STATIC_C, STATIC_A, STATIC_B, in DormandPrince853Integrator()
DAdamsBashforthIntegrator.java144 private static final String METHOD_NAME = "Adams-Bashforth"; field in AdamsBashforthIntegrator
162 super(METHOD_NAME, nSteps, nSteps, minStep, maxStep, in AdamsBashforthIntegrator()
182 super(METHOD_NAME, nSteps, nSteps, minStep, maxStep, in AdamsBashforthIntegrator()
DAdamsMoultonIntegrator.java160 private static final String METHOD_NAME = "Adams-Moulton"; field in AdamsMoultonIntegrator
178 super(METHOD_NAME, nSteps, nSteps + 1, minStep, maxStep, in AdamsMoultonIntegrator()
198 super(METHOD_NAME, nSteps, nSteps + 1, minStep, maxStep, in AdamsMoultonIntegrator()
DGraggBulirschStoerIntegrator.java98 private static final String METHOD_NAME = "Gragg-Bulirsch-Stoer"; field in GraggBulirschStoerIntegrator
168 super(METHOD_NAME, minStep, maxStep, in GraggBulirschStoerIntegrator()
190 super(METHOD_NAME, minStep, maxStep, in GraggBulirschStoerIntegrator()
/external/apache-http/src/org/apache/http/client/methods/
DHttpHead.java64 public final static String METHOD_NAME = "HEAD"; field in HttpHead
85 return METHOD_NAME; in getMethod()
DHttpPut.java60 public final static String METHOD_NAME = "PUT"; field in HttpPut
81 return METHOD_NAME; in getMethod()
DHttpGet.java64 public final static String METHOD_NAME = "GET"; field in HttpGet
85 return METHOD_NAME; in getMethod()
DHttpDelete.java56 public final static String METHOD_NAME = "DELETE"; field in HttpDelete
78 return METHOD_NAME; in getMethod()
DHttpPost.java68 public final static String METHOD_NAME = "POST"; field in HttpPost
89 return METHOD_NAME; in getMethod()
DHttpTrace.java63 public final static String METHOD_NAME = "TRACE"; field in HttpTrace
84 return METHOD_NAME; in getMethod()
DHttpOptions.java69 public final static String METHOD_NAME = "OPTIONS"; field in HttpOptions
90 return METHOD_NAME; in getMethod()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DFramesTest.java262 if (frameNumber < 0 && FramesDebuggee.METHOD_NAME.equals(methodName)) { in testFrames002()
293 if (methodName.equals(FramesDebuggee.METHOD_NAME)) { in testFrames002()
302 … logWriter.printError(depthError = ("Number of " + FramesDebuggee.METHOD_NAME + " in frames " in testFrames002()
357 if (frameNumber < 0 && FramesDebuggee.METHOD_NAME.equals(methodName)) { in testFrames001()
390 && !methodName.equals(FramesDebuggee.METHOD_NAME)); in testFrames001()
397 if (methodName.equals(FramesDebuggee.METHOD_NAME)) { in testFrames001()
403 … logWriter.printError(depthError = ("Number of " + FramesDebuggee.METHOD_NAME + " in frames " in testFrames001()
DFramesDebuggee.java40 public final static String METHOD_NAME = "recursiveMethod"; field in FramesDebuggee
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
DRefTypeIDTest.java40 private final String METHOD_NAME = "printWord"; field in RefTypeIDTest
75 .setBreakpointAtMethodBegin(classID, METHOD_NAME); in testRefTypeID001()
DBreakpointTest.java44 private String METHOD_NAME = "printWord"; field in BreakpointTest
66 classID, METHOD_NAME); in testClearBreakpoint001()
DMethodEntryExitTest.java44 private String METHOD_NAME = "printWord"; field in MethodEntryExitTest
70 classID, METHOD_NAME); in testMethodEvent001()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DDefaultRequestDirectorTest.java77 Robolectric.addHttpResponseRule(HttpGet.METHOD_NAME, "http://some.uri", in shouldPreferPendingResponses()
89 Robolectric.addHttpResponseRule(HttpGet.METHOD_NAME, "http://some.uri", in shouldReturnRequestsByRule()
102 Robolectric.addHttpResponseRule(HttpPost.METHOD_NAME, "http://some.uri", in shouldReturnRequestsByRule_MatchingMethod()
241 assertThat(request1.getMethod(), equalTo(HttpGet.METHOD_NAME)); in shouldHandleMultipleInvocationsOfExecute()
245 assertThat(request2.getMethod(), equalTo(HttpGet.METHOD_NAME)); in shouldHandleMultipleInvocationsOfExecute()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
DCountModifierTest.java42 private static final String METHOD_NAME = "eventTestMethod"; field in CountModifierTest
77 METHOD_NAME, 0); in testBreakpoint()
DThreadOnlyModifierTest.java42 private static final String METHOD_NAME = "eventTestMethod"; field in ThreadOnlyModifierTest
69 METHOD_NAME, 0); in testBreakpoint()
DInstanceOnlyModifierTest.java44 private static final String METHOD_NAME = "eventTestMethod"; field in InstanceOnlyModifierTest
73 METHOD_NAME, 0); in testBreakpoint()
/external/volley/src/main/java/com/android/volley/toolbox/
DHttpClientStack.java169 public final static String METHOD_NAME = "PATCH"; field in HttpClientStack.HttpPatch
190 return METHOD_NAME; in getMethod()
/external/apache-http/api/
Dapache-http-legacy-current.txt1486 field public static final java.lang.String METHOD_NAME = "DELETE";
1501 field public static final java.lang.String METHOD_NAME = "GET";
1509 field public static final java.lang.String METHOD_NAME = "HEAD";
1518 field public static final java.lang.String METHOD_NAME = "OPTIONS";
1526 field public static final java.lang.String METHOD_NAME = "POST";
1534 field public static final java.lang.String METHOD_NAME = "PUT";
1556 field public static final java.lang.String METHOD_NAME = "TRACE";