/cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/ |
ForceEphemeralUsersTest.java | 23 import java.lang.reflect.Method; 38 Method setForceEphemeralUsersMethod = DevicePolicyManager.class.getDeclaredMethod( 42 Method getForceEphemeralUsersMethod = DevicePolicyManager.class.getDeclaredMethod( 53 Method setForceEphemeralUsersMethod = DevicePolicyManager.class.getDeclaredMethod(
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
Method.java | 24 public interface Method 28 * Get the <i>effective</i> method descriptor, which includes, if 31 * @return {@code non-null;} the effective method descriptor
|
/external/conscrypt/src/openjdk/java/dalvik/system/ |
CloseGuard.java | 19 import java.lang.reflect.Method;
|
/external/conscrypt/src/stub/java/dalvik/system/ |
BlockGuard.java | 19 import java.lang.reflect.Method;
|
CloseGuard.java | 19 import java.lang.reflect.Method;
|
/external/junit/src/org/junit/internal/runners/ |
JUnit4ClassRunner.java | 5 import java.lang.reflect.Method; 31 private final List<Method> fTestMethods; 40 protected List<Method> getTestMethods() { 60 for (Method method : fTestMethods) 61 invokeTestMethod(method, notifier); 67 List<Method> testMethods= fTestMethods; 68 for (Method method : testMethods) 69 spec.addChild(methodDescription(method)); 126 Method method= iter.next(); local [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
MethodInterceptor.java | 27 * All generated proxied methods call this method instead of the original method. 28 * The original method may either be invoked by normal reflection using the Method object, 31 * @param method intercepted Method 33 * @param proxy used to invoke super (non-intercepted method); may be called 35 * @throws Throwable any exception may be thrown; if so, super method will not be invoked 36 * @return any value compatible with the signature of the proxied method. Method returning void will ignore this value [all...] |
/external/objenesis/main/src/org/objenesis/instantiator/android/ |
AndroidSerializationInstantiator.java | 23 import java.lang.reflect.Method; 35 private final Method newInstanceMethod; 58 private static Method getNewInstanceMethod() { 60 Method newInstanceMethod = ObjectStreamClass.class.getDeclaredMethod(
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
ExceptionInfoVisitor.java | 36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo);
|
LineNumberInfoVisitor.java | 37 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo);
|
LocalVariableInfoVisitor.java | 37 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo);
|
LocalVariableTypeInfoVisitor.java | 37 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo);
|
ParameterInfoVisitor.java | 27 * This interface specifies the method for a visitor of 36 public void visitParameterInfo(Clazz clazz, Method method, int parameterIndex, ParameterInfo parameterInfo);
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
DeprecatedFieldTest.java | 38 import java.lang.reflect.Method; 61 Method method = deprecatedFields.getMethod(name); local 62 assertTrue("Method " + name + " should be deprecated", 63 isDeprecated(method)); 66 Method method = deprecatedFieldsBuilder.getMethod(name); local 67 assertTrue("Method " + name + " should be deprecated", 68 isDeprecated(method)); 71 Method method = deprecatedFieldsBuilder.getMethod(name, int.class) local [all...] |
/external/testng/src/main/java/org/testng/internal/annotations/ |
IAnnotationFinder.java | 4 import java.lang.reflect.Method; 29 * @return The annotation on the method. 33 public <A extends IAnnotation> A findAnnotation(Method m, Class<A> annotationClass); 39 * @return The annotation on the method. 46 * @return true if the ith parameter of the given method has the annotation @TestInstance. 48 public boolean hasTestInstance(Method method, int i); 51 * @return the @Optional values of this method's parameters (<code>null</code> 54 public String[] findOptionalValues(Method method); [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
ViewCompatUtils.java | 21 import java.lang.reflect.Method; 29 private static final Method METHOD_getPaddingEnd = CompatUtils.getMethod( 31 private static final Method METHOD_setPaddingRelative = CompatUtils.getMethod( 35 private static final Method METHOD_setTextAlignment = CompatUtils.getMethod(
|
/prebuilts/misc/common/swig/include/2.0.11/lua/ |
factory.i | 16 %define %factory(Method,Types...) 17 %typemap(out) Method {
|
/prebuilts/misc/common/swig/include/2.0.11/typemaps/ |
factory.swg | 16 // Factory method for all the Geometry objects 32 // Factory method for all the Geometry objects 44 You can use the %factory with the Geometry::create method as follows: 81 %define %factory(Method,Types...) 82 %typemap(out) Method {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
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) { 61 return (method.getAccessFlags() & directMask) != 0 [all...] |
/art/test/138-duplicate-classes-check2/src/ |
Main.java | 18 import java.lang.reflect.Method; 37 Method test = testEx.getDeclaredMethod("test");
|
/art/test/434-invoke-direct/src/ |
Main.java | 18 import java.lang.reflect.Method; 29 Method m = c.getMethod("run");
|
/art/test/467-regalloc-pair/src/ |
Main.java | 17 import java.lang.reflect.Method; 30 Method m = c.getMethod("testCase", byte[].class, Main.class);
|
/art/test/501-null-constant-dce/src/ |
Main.java | 17 import java.lang.reflect.Method; 24 Method m = c.getMethod("method", int[].class);
|
/art/test/501-regression-packed-switch/src/ |
Main.java | 17 import java.lang.reflect.Method; 27 Method m = c.getMethod("EmptyPackedSwitch", new Class[] { int.class });
|
/art/test/504-regression-baseline-entry/src/ |
Main.java | 17 import java.lang.reflect.Method; 27 Method m = c.getMethod("SingleGotoStart", (Class[]) null);
|