HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 526 - 550 of 7000) sorted by null

<<21222324252627282930>>

  /dalvik/dx/tests/084-dex-high-register-moves/
run 19 --dump-method=Blort.test'*' *.class
  /dalvik/dx/tests/090-dex-unify-arrays/
run 19 --dump-method=Blort.test'*' Blort.class
  /dalvik/dx/tests/095-dex-const-string-jumbo/
run 41 --dump-method=Blort.test *.class
  /dalvik/dx/tests/096-dex-giant-catch/
run 40 --dump-method=Zorch.test Zorch.class | grep 'try\|catch'
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
output_text.properties 21 # Specify defaults when method="text".
25 method=text
33 # <xsl:output method="html" encoding="UTF-8"
  /external/emma/core/java12/com/vladium/jcd/cls/
IMethodCollection.java 32 * @param offset method offset [must be in [0, size()) range; input not checked]
45 * @param name method name [null or empty will result in no matches]
46 * @return array of method offsets in no particular order [never null; could be empty]
69 * that all data referenced in 'method' will eventually appear in the
72 * @param method new method descriptor [may not be null]
74 int add (Method_info method);
78 * checks are made. No method type compatibility checks are made. It is
80 * in 'method' will eventually appear in the constant pool.
82 * @param offset method offset [must be in [0, size()) range; input not checked
    [all...]
  /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/editor/
BridgeMethodFixer.java 37 * versions of JDK 1.6, complain if they can't find the method with the same
72 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
74 // Go over the instructions of the bridge method.
75 codeAttribute.instructionsAccept(clazz, method, this);
81 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
84 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
92 // Get the name of the bridged method
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/internal/
RobolectricTestRunnerInterface.java 6 import java.lang.reflect.Method;
11 void internalBeforeTest(Method method);
13 void internalAfterTest(Method method);
  /external/skia/src/core/
SkBitmapScaler.h 34 * specified resize-method and write the results into the pixels pointed to by dst.
36 static bool Resize(const SkPixmap& dst, const SkPixmap& src, ResizeMethod method);
42 static bool Resize(SkBitmap* result, const SkPixmap& src, ResizeMethod method,
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
FacadeManager.java 30 import java.lang.reflect.Method;
60 public Object invoke(Class<? extends RpcReceiver> clazz, Method method, Object[] args)
63 if (method.isAnnotationPresent(RpcDeprecated.class)) {
64 String replacedBy = method.getAnnotation(RpcDeprecated.class).value();
65 String title = method.getName() + " is deprecated";
67 } else if (method.isAnnotationPresent(RpcMinSdk.class)) {
68 int requiredSdkLevel = method.getAnnotation(RpcMinSdk.class).value();
71 method.getName(), requiredSdkLevel, mSdkLevel));
74 return super.invoke(clazz, method, args)
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyBooleanValue.java 39 public LazyBooleanValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyByteValue.java 39 public LazyByteValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyCharValue.java 39 public LazyCharValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyDoubleValue.java 39 public LazyDoubleValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyFloatValue.java 39 public LazyFloatValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyIntegerValue.java 39 public LazyIntegerValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyLongValue.java 39 public LazyLongValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyShortValue.java 39 public LazyShortValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyStringReference.java 39 public LazyStringReference(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
LazyVoidValue.java 39 public LazyVoidValue(SmaliMethod method, Project project, int registerNumber, String type) {
40 super(method, project, registerNumber, type);
  /external/testng/src/main/java/org/testng/
IResultMap.java 9 public void addResult(ITestResult result, ITestNGMethod method);
11 public Set<ITestResult> getResults(ITestNGMethod method);
  /external/testng/src/main/java/org/testng/internal/
ExpectedExceptionsHolder.java 15 protected final ITestNGMethod method; field in class:ExpectedExceptionsHolder
19 protected ExpectedExceptionsHolder(IAnnotationFinder finder, ITestNGMethod method, IExpectedExceptionsHolder holder) {
21 this.method = method;
22 expectedClasses = findExpectedClasses(finder, method);
26 private static Class<?>[] findExpectedClasses(IAnnotationFinder finder, ITestNGMethod method) {
28 finder.findAnnotation(method, IExpectedExceptionsAnnotation.class);
35 ITestAnnotation testAnnotation = finder.findAnnotation(method, ITestAnnotation.class);
88 return new TestException("Method " + testMethod + " should have thrown an exception of "

Completed in 1701 milliseconds

<<21222324252627282930>>