/external/guava/guava-tests/test/com/google/common/collect/ |
FauxveridesTest.java | 31 import java.lang.reflect.Method; 142 for (Method method : clazz.getDeclaredMethods()) { 143 int modifiers = method.getModifiers(); 145 publicStaticMethods.add(new MethodSignature(method)); 166 * Not really a signature -- just the parts that affect whether one method is 167 * a fauxveride of a method from an ancestor class. 177 MethodSignature(Method method) { 178 name = method.getName() [all...] |
/external/guava/guava-tests/test/com/google/common/io/ |
ByteSourceTester.java | 35 import java.lang.reflect.Method; 49 private static final ImmutableList<Method> testMethods 77 for (Method method : testMethods) { 78 suite.addTest(new ByteSourceTester(factory, bytes, name, desc, method)); 99 String suiteName, String caseDesc, Method method) { 100 super(factory, bytes, suiteName, caseDesc, method);
|
CharSourceTester.java | 30 import java.lang.reflect.Method; 43 private static final ImmutableList<Method> testMethods 57 for (Method method : testMethods) { 58 suite.addTest(new CharSourceTester(factory, string, name, desc, method)); 68 String suiteName, String caseDesc, Method method) { 69 super(factory, string, suiteName, caseDesc, method);
|
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/ |
CheckedProviderMethodsModule.java | 37 import java.lang.reflect.Method; 43 * and binding annotations on the provider method to configure the binding. 79 for (Method method : c.getDeclaredMethods()) { 80 CheckedProvides checkedProvides = method.getAnnotation(CheckedProvides.class); 82 result.add(createProviderMethod(binder, method, checkedProvides)); 89 <T> CheckedProviderMethod<T> createProviderMethod(Binder binder, final Method method, 93 binder = binder.withSource(method); 94 Errors errors = new Errors(method); [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
7zUpdate.h | 88 const CCompressionMethodMode *Method;
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
TypeAnnotationsAttribute.java | 85 * Applies the given visitor to all method annotations. 87 public void typeAnnotationsAccept(Clazz clazz, Method method, TypeAnnotationVisitor typeAnnotationVisitor) 95 typeAnnotationVisitor.visitTypeAnnotation(clazz, method, annotations[index]);
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
AllAttributeVisitor.java | 113 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 115 codeAttribute.attributesAccept(clazz, method, attributeVisitor);
|
/external/proguard/src/proguard/classfile/editor/ |
AttributeSorter.java | 71 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
|
VariableEditor.java | 97 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 125 variableRemapper.visitCodeAttribute(clazz, method, codeAttribute);
|
/external/proguard/src/proguard/classfile/visitor/ |
MethodImplementationTraveler.java | 48 * @param visitSuperMethods specifies whether to visit the method in 50 * @param visitInterfaceMethods specifies whether to visit the method in 52 * @param visitOverridingMethods specifies whether to visit the method in 121 private boolean isSpecial(Clazz clazz, Method method) 123 return (method.getAccessFlags() & 126 method.getName(clazz).equals(ClassConstants.METHOD_NAME_INIT);
|
/external/proguard/src/proguard/obfuscate/ |
AttributeShrinker.java | 86 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
|
MemberNameFilter.java | 102 * Returns whether the given method has a new name. 104 private boolean hasName(Clazz clazz, Method method) 107 hasName(method) || 109 method.getName(clazz).equals(ClassConstants.METHOD_NAME_INIT));
|
/external/proguard/src/proguard/optimize/ |
MethodDescriptorShrinker.java | 93 // Append a code, if the method isn't a class instance initializer. 127 // Visit the method, if required. 141 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute) 150 String newSignature = shrinkDescriptor(method, signature); 160 shrinkReferencedClasses(method, 172 public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotationsAttribute parameterAnnotationsAttribute) 180 (method.getAccessFlags() & ClassConstants.ACC_STATIC) != 0 ? 187 String descriptor = method.getDescriptor(clazz) [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
PeepholeOptimizer.java | 86 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 91 branchTargetFinder.visitCodeAttribute(clazz, method, codeAttribute); 98 codeAttribute.instructionsAccept(clazz, method, instructionVisitor); 101 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
ImmutableClassDef.java | 39 import org.jf.dexlib2.iface.Method; 71 @Nullable Iterable<? extends Method> methods) { 99 @Nullable Iterable<? extends Method> directMethods, 100 @Nullable Iterable<? extends Method> virtualMethods) {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/ |
Rewriters.java | 47 @Nonnull Rewriter<Method> getMethodRewriter();
|
/external/testng/src/main/java/org/testng/internal/ |
TestNGMethodFinder.java | 4 import java.lang.reflect.Method; 104 Set<Method> methods = ClassHelper.getAvailableMethods(clazz); 106 for (Method m : methods) { 202 Method method, 215 if(method.getDeclaringClass().isAssignableFrom(clazz)) { 216 ITestNGMethod confMethod = new ConfigurationMethod(new ConstructorOrMethod(method),
|
/frameworks/base/packages/Osu/src/com/android/anqp/eap/ |
EAPMethod.java | 17 * An EAP Method, part of the NAI Realm ANQP element, specified in 26 throw new ProtocolException("Runt EAP Method: " + payload.remaining()); 51 throw new ProtocolException("Bad auth method length: " + len); 122 return AuthMatch.Method; 137 return paramCount > 0 ? AuthMatch.None : AuthMatch.Method; 143 return AuthMatch.Method; 145 return AuthMatch.Method; 183 sb.append("EAP Method ").append(mEAPMethodID).append('\n');
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/ |
EAPMethod.java | 18 * An EAP Method, part of the NAI Realm ANQP element, specified in 27 throw new ProtocolException("Runt EAP Method: " + payload.remaining()); 52 throw new ProtocolException("Bad auth method length: " + len); 123 return AuthMatch.Method; 138 return paramCount > 0 ? AuthMatch.None : AuthMatch.Method; 144 return AuthMatch.Method; 146 return AuthMatch.Method; 184 sb.append("EAP Method ").append(mEAPMethodID).append('\n');
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
UT_single_source_alloc.java | 23 import java.lang.reflect.Method;
|
/frameworks/volley/src/main/java/com/android/volley/toolbox/ |
JsonArrayRequest.java | 42 super(Method.GET, url, null, listener, errorListener); 47 * @param method the HTTP method to use 54 public JsonArrayRequest(int method, String url, JSONArray jsonRequest, 56 super(method, url, (jsonRequest == null) ? null : jsonRequest.toString(), listener,
|
JsonRequest.java | 53 this(Method.DEPRECATED_GET_OR_POST, url, requestBody, listener, errorListener); 56 public JsonRequest(int method, String url, String requestBody, Listener<T> listener, 58 super(method, url, errorListener);
|
StringRequest.java | 34 * Creates a new request with the given method. 36 * @param method the request {@link Method} to use 41 public StringRequest(int method, String url, Listener<String> listener, 43 super(method, url, errorListener); 55 this(Method.GET, url, listener, errorListener);
|
/frameworks/volley/src/test/java/com/android/volley/mock/ |
WaitableQueue.java | 55 super(Request.Method.GET, "", null);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
ObjectStreamClassTest.java | 28 import java.lang.reflect.Method; 201 // Test for method java.io.ObjectStreamClass 224 Method getConstructorId = ObjectStreamClass.class.getDeclaredMethod( 231 Method newInstance = ObjectStreamClass.class.getDeclaredMethod("newInstance", 240 // Class without <clinit> method 243 // Class without <clinit> method 247 // Class with <clinit> method 249 // This field will trigger creation of <clinit> method for this class 255 // Class without <clinit> but with parent that has <clinit> method 261 Method hasStaticInitializer [all...] |