HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 326 - 350 of 5138) sorted by null

<<11121314151617181920>>

  /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...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int/d/
T_rsub_int_1.d 20 .method public <init>()V
25 .end method
27 .method public run(I)I
32 .end method
34 .method public run1(I)I
39 .end method
41 .method public run2(I)I
46 .end method
48 .method public run3(I)I
53 .end method
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int_lit8/d/
T_rsub_int_lit8_1.d 20 .method public <init>()V
25 .end method
27 .method public run(I)I
32 .end method
34 .method public run1(I)I
39 .end method
41 .method public run2(I)I
46 .end method
48 .method public run3(I)I
53 .end method
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
CSeq.java 59 * method field
61 protected String method; field in class:CSeq
71 * Constructor given the sequence number and method.
74 * @param method is the method string.
76 public CSeq(long seqno, String method) {
79 this.method = SIPRequest.getCannonicalName(method);
116 return buffer.append(seqno).append(SP).append(method.toUpperCase());
120 * Get the method
    [all...]
RequestLine.java 53 /** method field.
55 protected String method; field in class:RequestLine
77 if (method != null) {
78 buffer.append(method);
97 /** Constructor given the request URI and the method.
99 public RequestLine(GenericURI requestURI, String method) {
101 this.method = method;
109 return method;
129 public void setMethod(String method) {
    [all...]
  /external/proguard/src/proguard/optimize/info/
SuperInvocationMarker.java 47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
60 setInvokesSuperMethods(method);
78 private static void setInvokesSuperMethods(Method method)
80 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
88 public static boolean invokesSuperMethods(Method method)
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiClass.java 78 public void addMethod(ApiMethod method) {
79 mApiMethods.add(method);
83 for (ApiMethod method : mApiMethods) {
84 if (name.equals(method.getName())
85 && parameterTypes.equals(method.getParameterTypes())
86 && returnType.equals(method.getReturnType())) {
87 return method;
104 for (ApiMethod method : mApiMethods) {
105 if (method.isCovered()) {
  /external/proguard/src/proguard/optimize/
ParameterShrinker.java 77 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
80 int oldParameterSize = ParameterUsageMarker.getParameterSize(method);
84 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
85 method.getAccessFlags());
94 System.out.println("ParameterShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
109 if (ParameterUsageMarker.isParameterUsed(method, parameterIndex))
125 // Visit the method, if required.
128 method.accept(clazz, extraVariableMemberVisitor)
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
VariableShrinker.java 79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
81 if ((method.getAccessFlags() & ClassConstants.INTERNAL_ACC_ABSTRACT) == 0)
85 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
86 method.getAccessFlags());
93 System.out.println("VariableShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
99 variableUsageMarker.visitCodeAttribute(clazz, method, codeAttribute);
117 // Visit the method, if required.
120 method.accept(clazz, extraVariableMemberVisitor)
    [all...]
  /external/chromium_org/ppapi/host/
dispatch_host_message.h 22 template <class ObjT, class Method>
23 inline int32_t DispatchResourceCall(ObjT* obj, Method method,
26 return (obj->*method)(context);
29 template <class ObjT, class Method, class A>
30 inline int32_t DispatchResourceCall(ObjT* obj, Method method,
33 return (obj->*method)(context, arg.a);
36 template<class ObjT, class Method, class A, class B>
37 inline int32_t DispatchResourceCall(ObjT* obj, Method method
    [all...]
  /external/chromium_org/third_party/leveldatabase/
env_chromium_unittest.cc 17 MethodID method; local
20 ParseMethodAndError(s.ToString().c_str(), &method, &error));
21 EXPECT_EQ(in_method, method);
30 MethodID method; local
33 ParseMethodAndError(s.ToString().c_str(), &method, &error));
34 EXPECT_EQ(in_method, method);
43 MethodID method; local
46 ParseMethodAndError(s.ToString().c_str(), &method, &error));
47 EXPECT_EQ(in_method, method);
53 MethodID method = kRandomAccessFileRead local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_enum.c 87 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method,
93 for(enam = method->usr_data; enam->lname; enam++) {
96 return i2s_ASN1_ENUMERATED(method, e);
  /external/easymock/src/org/easymock/internal/
LegacyMatcherProvider.java 20 import java.lang.reflect.Method;
36 private transient Map<Method, ArgumentsMatcher> matchers = new HashMap<Method, ArgumentsMatcher>();
38 public ArgumentsMatcher getMatcher(Method method) {
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) {
81 Method method = entry.getKey().getMethod(); local
    [all...]
  /external/openssl/crypto/x509v3/
v3_enum.c 87 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method,
93 for(enam = method->usr_data; enam->lname; enam++) {
96 return i2s_ASN1_ENUMERATED(method, e);
  /external/proguard/src/proguard/classfile/editor/
VariableRemapper.java 63 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
69 codeAttribute.instructionsAccept(clazz, method, this);
72 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
75 codeAttribute.attributesAccept(clazz, method, this);
79 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
82 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
91 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute
    [all...]
  /external/proguard/src/proguard/classfile/instruction/visitor/
MultiInstructionVisitor.java 84 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
88 instructionVisitors[index].visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
92 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
96 instructionVisitors[index].visitVariableInstruction(clazz, method, codeAttribute, offset, variableInstruction);
100 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
104 instructionVisitors[index].visitConstantInstruction(clazz, method, codeAttribute, offset, constantInstruction);
108 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction
    [all...]
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 47 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
70 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
120 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
176 * Visits any type of method RefConstant of the given class.
215 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
270 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
272 visitDeprecatedAttribute(clazz, (Member)method, deprecatedAttribute);
297 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute
    [all...]
  /external/proguard/src/proguard/evaluation/
InvocationUnit.java 29 * This interface sets up the variables for entering a method,
37 * Sets up the given variables for entering the given method.
40 Method method,
45 * Exits the given method with the given return value.
48 Method method,
54 * field or method reference instruction.
57 Method method,
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
ReferenceType.java 38 method(2), enum constant in enum:ReferenceType
55 case method:
68 return method;
  /external/chromium_org/ppapi/proxy/
dispatch_reply_message.h 23 template <class ObjT, class Method>
24 inline void DispatchResourceReply(ObjT* obj, Method method,
27 (obj->*method)(params);
30 template <class ObjT, class Method, class A>
31 inline void DispatchResourceReply(ObjT* obj, Method method,
34 (obj->*method)(params, arg.a);
37 template<class ObjT, class Method, class A, class B>
38 inline void DispatchResourceReply(ObjT* obj, Method method
    [all...]
  /cts/tests/tests/jni/libjnitest/
macroized_tests.c 23 * This file also defines a static method called runAllTests(), which
50 * how to call a method: (virtual, direct, static) x (standard, array of
132 * Looks up a static method on StaticFromNative.
140 *errorMsg = failure("could not find static test method %s:%s",
148 * Looks up an instance method on InstanceFromNative.
155 *errorMsg = failure("could not find instance test method %s:%s",
163 * Looks up either an instance method on InstanceFromNative or a
164 * static method on StaticFromNative, depending on the given
191 jmethodID method = findAppropriateMethod(env, &msg, ct, local
194 if (method == NULL)
294 jmethodID method = findAppropriateMethod(env, &msg, ct, local
397 jmethodID method = findAppropriateMethod(env, &msg, ct, local
500 jmethodID method = findAppropriateMethod(env, &msg, ct, local
603 jmethodID method = findAppropriateMethod(env, &msg, ct, local
706 jmethodID method = findAppropriateMethod(env, &msg, ct, local
809 jmethodID method = findAppropriateMethod(env, &msg, ct, local
912 jmethodID method = findAppropriateMethod(env, &msg, ct, local
1015 jmethodID method = findAppropriateMethod(env, &msg, ct, local
1118 jmethodID method = findAppropriateMethod(env, &msg, ct, local
1239 jmethodID method = findAppropriateMethod(env, &msg, ct, local
1359 jmethodID method = findAppropriateMethod(env, &msg, ct, local
    [all...]
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 6 public void method() { throw new RuntimeException("Stub!"); } method in class:InterfaceEnum
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/b/
B.java 23 Parent method(Parent p) { method in class:B
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static/d/
T_invoke_static_14.d 19 .method static public <clinit>()V
25 .end method
27 .method static public test()V
29 .end method
36 .method public <init>()V
41 .end method
43 .method public run()V
48 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_static_range/d/
T_invoke_static_range_14.d 19 .method static public <clinit>()V
25 .end method
27 .method static public test()V
29 .end method
36 .method public <init>()V
41 .end method
43 .method public run()V
48 .end method

Completed in 624 milliseconds

<<11121314151617181920>>