HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 1051 - 1075 of 8284) sorted by null

<<41424344454647484950>>

  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainUtil.java 21 import java.lang.reflect.Method;
30 Method[] methods = main.getClass().getMethods();
32 Method method = methods[i]; local
33 if (method.getName().equals(command)) {
37 method.invoke(main, bindParameters(method, remaining));
56 private static Object[] bindParameters(Method method, String[] args) {
58 Class[] parameterTypes = method.getParameterTypes()
    [all...]
  /external/junit/src/main/java/org/junit/experimental/theories/internal/
SpecificDataPointsSupplier.java 63 for (FrameworkMethod method : methods) {
64 String[] methodNames = method.getAnnotation(DataPoint.class).value();
66 methodsWithMatchingNames.add(method);
80 for (FrameworkMethod method : methods) {
81 String[] methodNames = method.getAnnotation(DataPoints.class).value();
83 methodsWithMatchingNames.add(method);
  /external/proguard/src/proguard/classfile/attribute/preverification/
FullFrame.java 83 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor)
87 variables[index].variablesAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor);
95 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VerificationTypeVisitor verificationTypeVisitor)
99 stack[index].stackAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor);
112 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor)
114 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, offset, this);
  /external/proguard/src/proguard/shrink/
LocalVariableTypeUsageMarker.java 71 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
75 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
87 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute)
91 localVariableTypeTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
105 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo)
126 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo
    [all...]
  /external/vogar/src/vogar/target/junit/
VogarBlockJUnit4ClassRunner.java 20 import java.lang.reflect.Method;
70 // found. If they cannot be found then add a fake one that will report the method as
74 // have parameters so there can only be one method in a class with each name.
76 for (FrameworkMethod method : methods) {
77 map.put(method.getName(), method); local
82 FrameworkMethod method = map.get(name); local
83 if (method == null) {
84 // The method could not be found so add one that when invoked will report the
85 // method as missing
    [all...]
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
TestCaseCollector.java 21 import java.lang.reflect.Method;
46 * The class name may be in "<class name>#<method name>" format
60 * The class name may be in "<class name>#<method name>" format
76 * Adds class to test by providing class name and method name in separate strings
88 Method[] methods = clazz.getMethods();
89 for (Method method : methods) {
90 if (mFilter.accept(method)) {
91 addSingleTestMethod(clazz, method.getName());
105 protected void addSingleTestMethod(Class<?> clazz, String method) {
    [all...]
  /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...]
  /system/tools/hidl/
generateCppImpl.cpp 22 #include "Method.h"
51 const Method *method) const {
54 if (method->isHidlReserved()) {
58 method->generateCppSignature(out, className, false /* specifyNamespaces */);
65 const TypedVar *elidedReturn = method->canElideCallback();
132 const Method *method = tuple.method(); local
133 for(const auto & arg : method->args())
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/options/
CommandLineParser.java 36 import java.lang.reflect.Method;
106 * Annotates a field or method in an options class to signify that parsed values should be
110 @Target({ElementType.FIELD, ElementType.METHOD})
120 * Annotates a single method in an options class to receive any "leftover" arguments. The method
121 * must accept {@code ImmutableList<String>} or a supertype. The method will be invoked even if
125 @Target({ElementType.FIELD, ElementType.METHOD})
206 Method leftoverMethod = null;
219 for (Method method : injectedClass.getDeclaredMethods())
310 private Method method; field in class:CommandLineParser.MethodOption
    [all...]
  /art/runtime/jit/
jit_code_cache.cc 68 // With 'perf', we want a 1-1 mapping between an address and a method.
71 // We need to have 32 bit offsets from method headers in code cache which point to things
182 bool JitCodeCache::ContainsMethod(ArtMethod* method) {
185 if (it.second == method) {
218 ArtMethod* method,
233 method,
251 method,
381 // TODO: Do not use IsMarked for j.l.Class, and adjust once we move this method
441 // We do not check if a code cache GC is in progress, as this method comes
516 // this method has already ensured the inline cache will not be deleted
1086 ArtMethod* method = it.second; local
1140 ArtMethod* method = it.second; local
1282 ArtMethod* method = info->GetMethod(); local
    [all...]
  /art/compiler/jit/
jit_compiler.h 39 bool CompileMethod(Thread* self, ArtMethod* method, bool osr)
58 // This is in the compiler since the runtime doesn't have access to the compiled method
60 bool AddToCodeCache(ArtMethod* method, const CompiledMethod* compiled_method)
  /art/runtime/arch/arm/
jni_entrypoints_arm.S 37 cbz r0, 1f @ is method code null?
45 bx r12 @ if non-null, tail call to method's code
  /art/runtime/interpreter/mterp/x86_64/
op_check_cast.S 10 call SYMBOL(MterpCheckCast) # (index, &obj, method, self)
  /art/test/044-proxy/src/
NativeProxy.java 22 import java.lang.reflect.Method;
28 * Test invoking a proxy method from native code.
54 final Method method,
56 System.out.println(method.getName());
  /art/test/124-missing-classes/src/
Main.java 42 MissingClass method() { method in class:Main.ClassWithMissingMethodReturnType
57 void method(MissingClass arg) {} method in class:Main.ClassWithMissingMethodParameterType
  /art/test/134-reg-promotion/smali/
Test.smali 20 .method public static run()V
38 .end method
40 .method public static run2()V
63 .end method
  /art/test/435-new-instance/src/
Main.java 18 import java.lang.reflect.Method;
33 private static void $opt$NewInstance(String method, String errorName) throws Throwable {
36 Method m = c.getMethod(method);
  /art/test/954-invoke-polymorphic-verifier/smali/
Subclass.smali 21 .method public constructor <init>()V
39 .end method
41 .method public static getMethodHandleSubclassInstance()Ljava/lang/invoke/MethodHandleImpl;
45 .end method
  /build/make/tools/droiddoc/test/stubs/expected/com/android/stubs/
Parent.java 7 public void method(); method in interface:Parent.Interface
11 public int method(boolean b, char c, int i, long l, float f, double d) { throw new RuntimeException("Stub!"); } method in class:Parent
  /cts/tools/vm-tests-tf/src/dot/junit/format/f1/d/
T_f1_1.d 19 .method public <init>()V
24 .end method
26 .method public run()V
36 .end method
T_f1_10.d 19 .method public <init>()V
24 .end method
26 .method public run()V
36 .end method
T_f1_11.d 19 .method public <init>()V
24 .end method
26 .method public run()V
36 .end method
T_f1_12.d 19 .method public <init>()V
24 .end method
26 .method public run()V
36 .end method
T_f1_2.d 19 .method public <init>()V
24 .end method
26 .method public run()V
36 .end method
T_f1_3.d 19 .method public <init>()V
24 .end method
26 .method public run()V
36 .end method

Completed in 1575 milliseconds

<<41424344454647484950>>