/external/proguard/src/proguard/classfile/attribute/preverification/visitor/ |
D | VerificationTypeVisitor.java | 36 …public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitIntegerType() 37 …public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitFloatType() 38 …public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitLongType() 39 …public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitDoubleType() 40 …public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitTopType() 41 …public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitObjectType() 42 …public void visitNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitNullType() 43 …public void visitUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitUninitializedType() 44 …public void visitUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, in… in visitUninitializedThisType() 46 …public void visitStackIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribut… in visitStackIntegerType() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/ |
D | ReflectionClassDef.java | 44 import org.jf.dexlib2.iface.Method; 166 @Nonnull @Override public Iterable<? extends Method> getDirectMethods() { 167 return new Iterable<Method>() { 168 @Nonnull @Override public Iterator<Method> iterator() { 169 Iterator<Method> constructorIterator = 171 new Function<Constructor, Method>() { 172 … @Nullable @Override public Method apply(@Nullable Constructor input) { 177 Iterator<java.lang.reflect.Method> directMethods = Iterators.filter( 179 new Predicate<java.lang.reflect.Method>() { 180 … @Override public boolean apply(@Nullable java.lang.reflect.Method input) { [all …]
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
D | AttributeVisitor.java | 49 …public void visitDeprecatedAttribute( Clazz clazz, Method method, DeprecatedAttribute d… in visitDeprecatedAttribute() 53 …public void visitSyntheticAttribute( Clazz clazz, Method method, SyntheticAttribute s… in visitSyntheticAttribute() 57 …public void visitSignatureAttribute( Clazz clazz, Method method, SignatureAttribute s… in visitSignatureAttribute() 65 …public void visitMethodParametersAttribute( Clazz clazz, Method method, MethodParametersAttri… in visitMethodParametersAttribute() 66 …public void visitExceptionsAttribute( Clazz clazz, Method method, ExceptionsAttribute … in visitExceptionsAttribute() 67 …public void visitCodeAttribute( Clazz clazz, Method method, CodeAttribute … in visitCodeAttribute() 71 …public void visitStackMapAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitStackMapAttribute() 72 …public void visitStackMapTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitStackMapTableAttribute() 73 …public void visitLineNumberTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitLineNumberTableAttribute() 74 …public void visitLocalVariableTableAttribute( Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTableAttribute() [all …]
|
D | RequiredAttributeFilter.java | 148 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute() 175 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute() 202 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttrib… in visitSignatureAttribute() 220 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute e… in visitMethodParametersAttribute() 229 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute() 238 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute() 247 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute() 256 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute() 265 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute() 274 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute() [all …]
|
D | NonEmptyAttributeFilter.java | 108 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute() 126 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute() 144 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttrib… in visitSignatureAttribute() 156 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute e… in visitMethodParametersAttribute() 165 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute() 174 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute() 180 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute() 189 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute() 198 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute() 207 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute() [all …]
|
/external/junit/src/main/java/org/junit/internal/ |
D | MethodSorter.java | 3 import java.lang.reflect.Method; 13 public static final Comparator<Method> DEFAULT = new Comparator<Method>() { 14 public int compare(Method m1, Method m2) { 27 public static final Comparator<Method> NAME_ASCENDING = new Comparator<Method>() { 28 public int compare(Method m1, Method m2) { 51 public static Method[] getDeclaredMethods(Class<?> clazz) { in getDeclaredMethods() 52 Comparator<Method> comparator = getSorter(clazz.getAnnotation(FixMethodOrder.class)); in getDeclaredMethods() 54 Method[] methods = clazz.getDeclaredMethods(); in getDeclaredMethods() 65 private static Comparator<Method> getSorter(FixMethodOrder fixMethodOrder) { in getSorter()
|
/external/proguard/src/proguard/classfile/util/ |
D | SimplifiedVisitor.java | 295 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute() 322 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute() 349 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttrib… in visitSignatureAttribute() 361 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute m… in visitMethodParametersAttribute() 367 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute() 373 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute() 379 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute() 385 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute() 391 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute() 397 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute() [all …]
|
/external/protobuf/src/google/protobuf/ |
D | api.pb.h | 43 class Method; variable 119 const ::google::protobuf::Method& methods(int index) const; 120 ::google::protobuf::Method* mutable_methods(int index); 121 ::google::protobuf::Method* add_methods(); 122 ::google::protobuf::RepeatedPtrField< ::google::protobuf::Method >* 124 const ::google::protobuf::RepeatedPtrField< ::google::protobuf::Method >& 183 ::google::protobuf::RepeatedPtrField< ::google::protobuf::Method > methods_; 199 class LIBPROTOBUF_EXPORT Method : public ::google::protobuf::Message { 201 Method(); 202 virtual ~Method(); [all …]
|
D | api.pb.cc | 67 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Method, name_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 68 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Method, request_type_url_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 69 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Method, request_streaming_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 70 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Method, response_type_url_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 71 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Method, response_streaming_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 72 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Method, options_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 73 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Method, syntax_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 78 Method::default_instance_, in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 83 sizeof(Method), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() 84 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Method, _internal_metadata_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto() [all …]
|
/external/junit/src/main/java/org/junit/internal/runners/ |
D | TestClass.java | 5 import java.lang.reflect.Method; 30 public List<Method> getTestMethods() { in getTestMethods() 34 List<Method> getBefores() { in getBefores() 38 List<Method> getAfters() { in getAfters() 42 public List<Method> getAnnotatedMethods(Class<? extends Annotation> annotationClass) { in getAnnotatedMethods() 43 List<Method> results = new ArrayList<Method>(); in getAnnotatedMethods() 45 Method[] methods = MethodSorter.getDeclaredMethods(eachClass); in getAnnotatedMethods() 46 for (Method eachMethod : methods) { in getAnnotatedMethods() 63 private boolean isShadowed(Method method, List<Method> results) { in isShadowed() 64 for (Method each : results) { in isShadowed() [all …]
|
D | JUnit4ClassRunner.java | 5 import java.lang.reflect.Method; 29 private final List<Method> testMethods; 38 protected List<Method> getTestMethods() { in getTestMethods() 58 for (Method method : testMethods) { in runMethods() 66 List<Method> testMethods = this.testMethods; in getDescription() 67 for (Method method : testMethods) { in getDescription() 85 protected void invokeTestMethod(Method method, RunNotifier notifier) { in invokeTestMethod() 108 protected TestMethod wrapMethod(Method method) { in wrapMethod() 112 protected String testName(Method method) { in testName() 116 protected Description methodDescription(Method method) { in methodDescription() [all …]
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-generated-function-mockers.h | 343 #define GMOCK_MOCKER_(arity, constness, Method) \ argument 344 GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__) 347 #define GMOCK_METHOD0_(tn, constness, ct, Method, F) \ argument 348 GMOCK_RESULT_(tn, F) ct Method() constness { \ 352 GMOCK_MOCKER_(0, constness, Method).SetOwnerAndName(this, #Method); \ 353 return GMOCK_MOCKER_(0, constness, Method).Invoke(); \ 356 gmock_##Method() constness { \ 357 GMOCK_MOCKER_(0, constness, Method).RegisterOwner(this); \ 358 return GMOCK_MOCKER_(0, constness, Method).With(); \ 360 mutable ::testing::FunctionMocker<F> GMOCK_MOCKER_(0, constness, Method) [all …]
|
/external/guava/guava-tests/test/com/google/common/eventbus/ |
D | EventSubscriberTest.java | 24 import java.lang.reflect.Method; 51 Method method = getRecordingMethod(); in testBasicMethodCall() 63 Method method = getExceptionThrowingMethod(); in testExceptionWrapping() 76 Method method = getErrorThrowingMethod(); in testErrorPassthrough() 88 Method charAt = String.class.getMethod("charAt", int.class); in testEquals() 89 Method concat = String.class.getMethod("concat", String.class); in testEquals() 107 private Method getRecordingMethod() { in getRecordingMethod() 108 Method method; in getRecordingMethod() 130 private Method getExceptionThrowingMethod() { in getExceptionThrowingMethod() 131 Method method; in getExceptionThrowingMethod() [all …]
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-generated-function-mockers.h | 352 #define GMOCK_MOCKER_(arity, constness, Method) \ argument 353 GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__) 356 #define GMOCK_METHOD0_(tn, constness, ct, Method, ...) \ argument 357 GMOCK_RESULT_(tn, __VA_ARGS__) ct Method( \ 363 GMOCK_MOCKER_(0, constness, Method).SetOwnerAndName(this, #Method); \ 364 return GMOCK_MOCKER_(0, constness, Method).Invoke(); \ 367 gmock_##Method() constness { \ 368 GMOCK_MOCKER_(0, constness, Method).RegisterOwner(this); \ 369 return GMOCK_MOCKER_(0, constness, Method).With(); \ 372 Method) [all …]
|
/external/v8/testing/gmock/include/gmock/ |
D | gmock-generated-function-mockers.h | 352 #define GMOCK_MOCKER_(arity, constness, Method) \ argument 353 GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__) 356 #define GMOCK_METHOD0_(tn, constness, ct, Method, ...) \ argument 357 GMOCK_RESULT_(tn, __VA_ARGS__) ct Method( \ 363 GMOCK_MOCKER_(0, constness, Method).SetOwnerAndName(this, #Method); \ 364 return GMOCK_MOCKER_(0, constness, Method).Invoke(); \ 367 gmock_##Method() constness { \ 368 GMOCK_MOCKER_(0, constness, Method).RegisterOwner(this); \ 369 return GMOCK_MOCKER_(0, constness, Method).With(); \ 372 Method) [all …]
|
/external/pdfium/testing/resources/javascript/ |
D | document_methods.in | 115 // Method is present. 118 // Method takes exactly two arguments. 131 // Method is present. 139 // Method is present. 142 // Method needs two arguments. 151 // Method is present. 158 // Method is present. 161 // Method needs at least one argument. 168 // Method is present. 171 // Method needs exactly one argument. [all …]
|
/external/proguard/src/proguard/optimize/ |
D | ChangedCodePrinter.java | 122 …public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAtt… in visitDeprecatedAttribute() 128 …public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttrib… in visitSyntheticAttribute() 134 …public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttrib… in visitSignatureAttribute() 146 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute e… in visitMethodParametersAttribute() 152 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute() 158 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute() 164 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute() 170 …public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute,… in visitLineNumberTableAttribute() 176 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute() 182 …public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTypeTableAttribute() [all …]
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/ |
D | DisplayNames.properties | 14 DisplayName.Bengali = Bengali Input Method 15 DisplayName.Devanagari = Devanagari Input Method 16 DisplayName.Gujarati = Gujarati Input Method 17 DisplayName.Gurmukhi = Gurmukhi Input Method 18 DisplayName.Kannada = Kannada Input Method 19 DisplayName.Malayalam = Malayalam Input Method 20 DisplayName.Oriya = Oriya Input Method 21 DisplayName.Tamil = Tamil Input Method 22 DisplayName.Telugu = Telugu Input Method
|
/external/proguard/src/proguard/classfile/visitor/ |
D | ClassCleaner.java | 130 …public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute m… in visitMethodParametersAttribute() 138 …public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAtt… in visitExceptionsAttribute() 146 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) in visitCodeAttribute() 155 …public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackM… in visitStackMapAttribute() 163 …public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, S… in visitStackMapTableAttribute() 171 …public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribu… in visitLocalVariableTableAttribute() 179 …public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAtt… in visitLocalVariableTypeTableAttribute() 195 …public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotations… in visitAnyParameterAnnotationsAttribute() 211 …public void visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute… in visitAnnotationDefaultAttribute() 237 …public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionI… in visitExceptionInfo() [all …]
|
/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 148 Selector Sel, const ObjCMethodDecl *Method) { in validateBoxingMethod() argument 149 if (!Method) { in validateBoxingMethod() 156 QualType ReturnType = Method->getReturnType(); in validateBoxingMethod() 160 S.Diag(Method->getLocation(), diag::note_objc_literal_method_return) in validateBoxingMethod() 282 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel); in getNSNumberFactoryMethod() local 283 if (!Method && S.getLangOpts().DebuggerObjCLiteral) { in getNSNumberFactoryMethod() 286 Method = in getNSNumberFactoryMethod() 294 ParmVarDecl *value = ParmVarDecl::Create(S.Context, Method, in getNSNumberFactoryMethod() 299 Method->setMethodParams(S.Context, value, None); in getNSNumberFactoryMethod() 302 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method)) in getNSNumberFactoryMethod() [all …]
|
/external/javassist/src/main/javassist/util/proxy/ |
D | RuntimeSupport.java | 18 import java.lang.reflect.Method; 33 public Object invoke(Object self, Method m, in invoke() 34 Method proceed, Object[] args) in invoke() 50 String desc, java.lang.reflect.Method[] methods) in find2Methods() 67 public static Method findMethod(Object self, String name, String desc) { in findMethod() 68 Method m = findMethod2(self.getClass(), name, desc); in findMethod() 81 public static Method findSuperMethod(Object self, String name, String desc) { in findSuperMethod() 83 Method m = findSuperMethod2(clazz.getSuperclass(), name, desc); in findSuperMethod() 98 private static Method findSuperMethod2(Class clazz, String name, String desc) { in findSuperMethod2() 99 Method m = findMethod2(clazz, name, desc); in findSuperMethod2() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | InlineMethodResolver.java | 35 import org.jf.dexlib2.iface.Method; 67 private static Method inlineMethod(int accessFlags, @Nonnull String cls, @Nonnull String name, in inlineMethod() 73 @Nonnull public abstract Method resolveExecuteInline(@Nonnull AnalyzedInstruction instruction); in resolveExecuteInline() 77 private final Method[] inlineMethods; 80 inlineMethods = new Method[] { in InlineMethodResolver_version35() 100 public Method resolveExecuteInline(@Nonnull AnalyzedInstruction analyzedInstruction) { in resolveExecuteInline() 113 private final Method[] inlineMethods; 114 private final Method indexOfIMethod; 115 private final Method indexOfIIMethod; 116 private final Method fastIndexOfMethod; [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
D | MethodUtil.java | 36 import org.jf.dexlib2.iface.Method; 48 public static Predicate<Method> METHOD_IS_DIRECT = new Predicate<Method>() { 49 @Override public boolean apply(@Nullable Method input) { 54 public static Predicate<Method> METHOD_IS_VIRTUAL = new Predicate<Method>() { 55 @Override public boolean apply(@Nullable Method input) { 60 public static boolean isDirect(@Nonnull Method method) { in isDirect() 64 public static boolean isStatic(@Nonnull Method method) { in isStatic() 72 public static boolean isPackagePrivate(@Nonnull Method method) { in isPackagePrivate() 78 public static int getParameterRegisterCount(@Nonnull Method method) { in getParameterRegisterCount()
|
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/ |
D | DexMakerTest.java | 28 import java.lang.reflect.Method; 139 Method method = generatedClass.getMethod("call"); in testVoidNoArgMemberMethod() 171 TypeId<Method> methodType = TypeId.get(Method.class); in testCreateLocalMethodAsNull() 173 Local<Method> localMethod = code.newLocal(methodType); in testCreateLocalMethodAsNull() 181 Method method = generatedClass.getMethod("call", int.class); in testCreateLocalMethodAsNull() 248 Method method = generatedClass.getMethod("call", generatedClass); in testInvokeDirect() 282 Method method = generatedClass.getMethod("superHashCode"); in testInvokeSuper() 505 Method method = generatedClass.getMethod("call"); in testReturnType() 512 Method lt = branchingMethod(Comparison.LT); in testBranching() 517 Method le = branchingMethod(Comparison.LE); in testBranching() [all …]
|
/external/volley/src/test/java/com/android/volley/toolbox/ |
D | HurlStackTest.java | 19 import com.android.volley.Request.Method; 41 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST); in connectionForDeprecatedGetRequest() 50 assertEquals(request.getMethod(), Method.DEPRECATED_GET_OR_POST); in connectionForDeprecatedPostRequest() 59 assertEquals(request.getMethod(), Method.GET); in connectionForGetRequest() 68 assertEquals(request.getMethod(), Method.POST); in connectionForPostRequest() 77 assertEquals(request.getMethod(), Method.POST); in connectionForPostWithBodyRequest() 86 assertEquals(request.getMethod(), Method.PUT); in connectionForPutRequest() 95 assertEquals(request.getMethod(), Method.PUT); in connectionForPutWithBodyRequest() 104 assertEquals(request.getMethod(), Method.DELETE); in connectionForDeleteRequest() 113 assertEquals(request.getMethod(), Method.HEAD); in connectionForHeadRequest() [all …]
|