HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 151 - 175 of 778) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/vm/
Profile.h 18 * Android's method call profiling goodies.
35 * Method trace state. This is currently global. In theory we could make
83 * Start/stop method tracing.
111 * Call these when a method enters or exits.
135 void dvmMethodTraceAdd(struct Thread* self, const Method* method, int action);
136 void dvmEmitEmulatorTrace(const Method* method, int action);
143 extern "C" void dvmFastMethodTraceEnter(const Method* method, struct Thread* self)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
GrammarRuleAttribute.cs 38 [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
GrammarRuleAttribute.cs 39 [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 19 import java.lang.reflect.Method;
47 public MethodSerializationWrapper(Method m) {
60 public Method getMethod() throws ClassNotFoundException,
77 Method m = clazz.getMethod(methodName, parameterTypes);
  /external/junit/src/org/junit/internal/runners/
MethodValidator.java 4 import java.lang.reflect.Method;
37 List<Method> methods= fTestClass.getAnnotatedMethods(Test.class);
69 List<Method> methods= fTestClass.getAnnotatedMethods(annotation);
71 for (Method each : methods) {
74 fErrors.add(new Exception("Method " + each.getName() + "() "
81 fErrors.add(new Exception("Method " + each.getName()
84 fErrors.add(new Exception("Method " + each.getName()
87 fErrors.add(new Exception("Method " + each.getName()
  /external/proguard/src/proguard/classfile/attribute/annotation/
RuntimeInvisibleParameterAnnotationsAttribute.java 58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
60 attributeVisitor.visitRuntimeInvisibleParameterAnnotationsAttribute(clazz, method, this);
RuntimeVisibleParameterAnnotationsAttribute.java 58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor)
60 attributeVisitor.visitRuntimeVisibleParameterAnnotationsAttribute(clazz, method, this);
  /external/proguard/src/proguard/classfile/attribute/visitor/
AllExceptionInfoVisitor.java 51 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
53 codeAttribute.exceptionsAccept(clazz, method, exceptionInfoVisitor);
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionCounter.java 52 Method method,
  /external/proguard/src/proguard/optimize/info/
SideEffectMethodMarker.java 91 // Look further if the method hasn't been marked yet.
98 // Mark the method depending on the return value.
114 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
117 hasSideEffects = hasSideEffects(clazz, method, codeAttribute);
127 Method method,
142 method,
159 private static void markSideEffects(Method method)
    [all...]
VariableUsageMarker.java 58 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
75 codeAttribute.instructionsAccept(clazz, method, this);
81 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
84 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
  /external/webkit/Source/WebCore/bridge/c/
c_runtime.h 51 class CMethod : public Method
  /frameworks/testing/uiautomator/library/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());
106 protected void addSingleTestMethod(Class<?> clazz, String method) {
    [all...]
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConfigurationException.java 26 import java.lang.reflect.Method;
144 Method m = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
156 Method m1 = this.getClass().getMethod("getCause", new Class[] {});
162 Method m2 = this.getClass().getMethod("initCause", new Class[] {Throwable.class});
  /dalvik/vm/mterp/portable/
entry.cpp 15 const Method* curMethod; // method we're interpreting
22 /* method call setup */
23 const Method* methodToCall;
30 curMethod = self->interpSave.method;
51 methodToCall = (const Method*) -1;
  /dalvik/vm/native/
java_lang_Object.cpp 64 const Method* method, Thread* self)
76 const Method* method, Thread* self)
88 const Method* method, Thread* self)
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MediaButtonHelper.java 8 import java.lang.reflect.Method;
21 static Method sMethodRegisterMediaButtonEventReceiver;
22 static Method sMethodUnregisterMediaButtonEventReceiver;
RemoteControlHelper.java 22 import java.lang.reflect.Method;
34 private static Method sRegisterRemoteControlClientMethod;
35 private static Method sUnregisterRemoteControlClientMethod;
  /external/guava/guava/src/com/google/common/eventbus/
EventHandler.java 21 import java.lang.reflect.Method;
24 * Wraps a single-argument 'handler' method on a specific object.
26 * <p>This class only verifies the suitability of the method and event type if
29 * <p>Two EventHandlers are equivalent when they refer to the same method on the
31 * method is registered more than once.
37 /** Object sporting the handler method. */
39 /** Handler method. */
40 private final Method method; field in class:EventHandler
43 * Creates a new EventHandler to wrap {@code method} on @{code target}
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SetHashCodeTester.java 24 import java.lang.reflect.Method;
63 * Returns the {@link Method} instances for the test methods in this class
68 public static Method[] getHashCodeMethods() {
69 return new Method[]{
  /external/junit/src/org/junit/runners/model/
NoGenericTypeParametersValidator.java 4 import java.lang.reflect.Method;
12 private final Method fMethod;
14 NoGenericTypeParametersValidator(Method method) {
15 this.fMethod = method;
25 errors.add(new Exception("Method " + fMethod.getName()
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AllAnnotationVisitor.java 67 public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute)
70 runtimeVisibleAnnotationsAttribute.annotationsAccept(clazz, method, annotationVisitor);
88 public void visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute)
91 runtimeInvisibleAnnotationsAttribute.annotationsAccept(clazz, method, annotationVisitor);
95 public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotationsAttribute parameterAnnotationsAttribute)
98 parameterAnnotationsAttribute.annotationsAccept(clazz, method, annotationVisitor);
  /external/proguard/src/proguard/classfile/attribute/preverification/
ObjectType.java 63 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor)
65 verificationTypeVisitor.visitObjectType(clazz, method, codeAttribute, instructionOffset, this);
69 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor)
71 verificationTypeVisitor.visitStackObjectType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
75 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor)
77 verificationTypeVisitor.visitVariablesObjectType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
UninitializedType.java 62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor)
64 verificationTypeVisitor.visitUninitializedType(clazz, method, codeAttribute, instructionOffset, this);
68 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor)
70 verificationTypeVisitor.visitStackUninitializedType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
74 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor)
76 verificationTypeVisitor.visitVariablesUninitializedType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
  /external/proguard/src/proguard/classfile/editor/
VariableSizeUpdater.java 53 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
57 // method.getName(clazz).equals("abc");
61 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
62 method.getAccessFlags());
66 System.out.println("VariableSizeUpdater: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
71 codeAttribute.instructionsAccept(clazz, method, this);
77 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {
    [all...]

Completed in 944 milliseconds

1 2 3 4 5 67 8 91011>>