/external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/ |
D | HttpRedirect.java | 49 if (method.equalsIgnoreCase(HttpHead.METHOD_NAME)) { in HttpRedirect() 50 this.method = HttpHead.METHOD_NAME; in HttpRedirect() 52 this.method = HttpGet.METHOD_NAME; in HttpRedirect()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
D | HighamHall54Integrator.java | 40 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()
|
D | DormandPrince54Integrator.java | 52 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()
|
D | DormandPrince853Integrator.java | 60 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()
|
D | AdamsBashforthIntegrator.java | 144 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()
|
D | AdamsMoultonIntegrator.java | 160 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()
|
/external/apache-http/src/org/apache/http/client/methods/ |
D | HttpDelete.java | 56 public final static String METHOD_NAME = "DELETE"; field in HttpDelete 78 return METHOD_NAME; in getMethod()
|
D | HttpGet.java | 64 public final static String METHOD_NAME = "GET"; field in HttpGet 85 return METHOD_NAME; in getMethod()
|
D | HttpTrace.java | 63 public final static String METHOD_NAME = "TRACE"; field in HttpTrace 84 return METHOD_NAME; in getMethod()
|
D | HttpHead.java | 64 public final static String METHOD_NAME = "HEAD"; field in HttpHead 85 return METHOD_NAME; in getMethod()
|
D | HttpPost.java | 68 public final static String METHOD_NAME = "POST"; field in HttpPost 89 return METHOD_NAME; in getMethod()
|
D | HttpPut.java | 60 public final static String METHOD_NAME = "PUT"; field in HttpPut 81 return METHOD_NAME; in getMethod()
|
D | HttpOptions.java | 69 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/ |
D | FramesTest.java | 262 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()
|
D | FramesDebuggee.java | 40 public final static String METHOD_NAME = "recursiveMethod"; field in FramesDebuggee
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/ |
D | RefTypeIDTest.java | 38 private final String METHOD_NAME = "printWord"; field in RefTypeIDTest 73 .setBreakpointAtMethodBegin(classID, METHOD_NAME); in testRefTypeID001()
|
D | BreakpointTest.java | 42 private String METHOD_NAME = "printWord"; field in BreakpointTest 64 classID, METHOD_NAME); in testClearBreakpoint001()
|
D | MethodEntryExitTest.java | 42 private String METHOD_NAME = "printWord"; field in MethodEntryExitTest 66 classID, METHOD_NAME); in testMethodEvent001()
|
/external/libtextclassifier/native/utils/java/ |
D | jni-helper.h | 48 METHOD_NAME, RETURN_TYPE, INPUT_TYPE, POST_CHECK) \ argument 50 static StatusOr<ScopedLocalRef<T>> METHOD_NAME( \ 57 reinterpret_cast<T>(env->METHOD_NAME##V(object, method_id, args)), \
|
/external/icing/icing/text_classifier/lib3/utils/java/ |
D | jni-helper.h | 46 METHOD_NAME, RETURN_TYPE, INPUT_TYPE, POST_CHECK) \ argument 48 static StatusOr<ScopedLocalRef<T>> METHOD_NAME( \ 55 reinterpret_cast<T>(env->METHOD_NAME##V(object, method_id, args)), \
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
D | CountModifierTest.java | 33 private static final String METHOD_NAME = "eventTestMethod"; field in CountModifierTest 68 getClassSignature(CountModifierDebuggee.TestClass.class), METHOD_NAME, 0); in testBreakpoint()
|
D | ThreadOnlyModifierTest.java | 34 private static final String METHOD_NAME = "eventTestMethod"; field in ThreadOnlyModifierTest 62 METHOD_NAME, 0); in testBreakpoint()
|
D | InstanceOnlyModifierTest.java | 36 private static final String METHOD_NAME = "eventTestMethod"; field in InstanceOnlyModifierTest 66 METHOD_NAME, 0); in testBreakpoint()
|
/external/robolectric-shadows/shadows/httpclient/src/test/java/org/robolectric/shadows/httpclient/ |
D | ShadowDefaultRequestDirectorTest.java | 95 FakeHttp.addHttpResponseRule(HttpGet.METHOD_NAME, "http://some.uri", in shouldPreferPendingResponses() 107 FakeHttp.addHttpResponseRule(HttpGet.METHOD_NAME, "http://some.uri", in shouldReturnRequestsByRule() 120 FakeHttp.addHttpResponseRule(HttpPost.METHOD_NAME, "http://some.uri", in shouldReturnRequestsByRule_MatchingMethod() 265 assertThat(request1.getMethod()).isEqualTo(HttpGet.METHOD_NAME); in shouldHandleMultipleInvocationsOfExecute() 269 assertThat(request2.getMethod()).isEqualTo(HttpGet.METHOD_NAME); in shouldHandleMultipleInvocationsOfExecute()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/naming/ |
D | NameCategory.java | 32 METHOD_NAME(false), enumConstant
|