HomeSort by relevance Sort by last modified time
    Searched refs:methodName (Results 26 - 50 of 1925) sorted by null

12 3 4 5 6 7 8 91011>>

  /art/test/674-hotness-compiled/src/
Main.java 44 public static native int getHotnessCounter(Class<?> cls, String methodName);
45 public static native boolean isAotCompiled(Class<?> cls, String methodName);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/ast/
MethodLocator.java 35 private final String methodName;
39 public MethodLocator(TypeLocator typeLocator, String methodName, List<String> parameterTypes) {
41 this.methodName = methodName;
55 && methodDeclaration.getName().getFullyQualifiedName().equals(methodName)
71 if (methodDeclaration.getName().getFullyQualifiedName().equals(methodName)) {
86 return typeLocator.getStringFormTarget() + "#" + methodName
94 ", methodName='" + methodName + '\'' +
  /external/robolectric-shadows/shadowapi/src/main/java/org/robolectric/shadow/api/
Shadow.java 50 public static <R> R directlyOn(Object shadowedObject, String clazzName, String methodName, ClassParameter... paramValues) {
51 return SHADOW_IMPL.directlyOn(shadowedObject, clazzName, methodName, paramValues);
55 public static <R, T> R directlyOn(T shadowedObject, Class<T> clazz, String methodName, ClassParameter... paramValues) {
56 return SHADOW_IMPL.directlyOn(shadowedObject, clazz, methodName, paramValues);
60 public static <R, T> R directlyOn(Class<T> clazz, String methodName, ClassParameter... paramValues) {
61 return SHADOW_IMPL.directlyOn(clazz, methodName, paramValues);
68 public static String directMethodName(String methodName) {
69 return SHADOW_IMPL.directMethodName(methodName);
  /libcore/jsr166-tests/src/test/java/jsr166/
CollectionTest.java 22 CollectionTest(CollectionImplementation impl, String methodName) {
23 super(methodName);
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
CallCriterion.java 10 private final String methodName;
13 public CallCriterion(String methodName, RelativeLocation loc) {
14 this.methodName = methodName;
39 MethodCallScanner.getMethodCallIndex(methodName, loc.offset);
58 return "CallCriterion: in method: " + methodName + " location: " + loc;
MemberReferenceCriterion.java 10 private final String methodName;
13 public MemberReferenceCriterion(String methodName, RelativeLocation loc) {
14 this.methodName = methodName;
40 MemberReferenceScanner.getMemberReferenceIndex(methodName,
60 return "MemberReferenceCriterion: in method: " + methodName + " location: " + loc;
ParamCriterion.java 13 private final String methodName;
16 public ParamCriterion(String methodName, Integer pos) {
17 this.methodName = methodName.substring(0, methodName.indexOf(")") + 1);
68 return "ParamCriterion for method: " + methodName + " at position: " +
ReceiverCriterion.java 9 private final String methodName; // no return type
12 public ReceiverCriterion(String methodName) {
13 this.methodName = methodName;
14 isSigMethodCriterion = Criteria.isSigMethod(methodName);
78 return "ReceiverCriterion for method: " + methodName;
TypeArgumentCriterion.java 12 private final String methodName;
15 public TypeArgumentCriterion(String methodName, RelativeLocation loc) {
16 this.methodName = methodName;
59 return "TypeArgumentCriterion: in method: " + methodName
Criteria.java 193 public boolean isOnMethod(String methodname) {
196 if (((InMethodCriterion) c).name.equals(methodname)) {
461 public final static Criterion receiver(String methodName) {
462 return new ReceiverCriterion(methodName);
465 public final static Criterion returnType(String className, String methodName) {
466 return new ReturnTypeCriterion(className, methodName);
469 public final static Criterion isSigMethod(String methodName) {
470 return new IsSigMethodCriterion(methodName);
474 public final static Criterion param(String methodName, Integer pos) {
475 return new ParamCriterion(methodName, pos)
    [all...]
  /external/proguard/src/proguard/
GetAnnotationChecker.java 63 String methodName = methodrefConstant.getName(clazz);
65 if (methodName.equals(ClassConstants.METHOD_NAME_GET_ANNOTATION) ||
66 methodName.equals(ClassConstants.METHOD_NAME_GET_ANNOTATIONS) ||
67 methodName.equals(ClassConstants.METHOD_NAME_GET_DECLARED_ANNOTATIONS) ||
68 methodName.equals(ClassConstants.METHOD_NAME_GET_PARAMETER_ANNOTATIONS))
76 methodName + "'");
  /external/annotation-tools/scene-lib/src/annotations/el/
AMethod.java 33 public final String methodName;
35 AMethod(String methodName) {
36 super("method: " + methodName);
37 this.methodName = methodName;
38 this.body = new ABlock(methodName);
39 returnType = new ATypeElement("return type of " + methodName);
40 receiver = new AField("receiver parameter type of " + methodName);
44 super("method: " + method.methodName, method);
45 methodName = method.methodName
    [all...]
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 128 String methodName = getMethodName(opcode);
129 if (methodName != null) {
149 int methodref = cp.addMethodrefInfo(mi, methodName, signature);
166 String methodName = null;
169 methodName = names.objectRead();
172 methodName = names.byteOrBooleanRead();
175 methodName = names.charRead();
178 methodName = names.doubleRead();
181 methodName = names.floatRead();
184 methodName = names.intRead()
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/invocation/
SerializableMethod.java 20 private final String methodName;
32 methodName = method.getName();
41 return methodName;
69 method = declaringClass.getDeclaredMethod(methodName, parameterTypes);
74 "Please report this as a defect with an example of how to reproduce it.", declaringClass, methodName);
79 "Please report this as a defect with an example of how to reproduce it.", declaringClass, methodName);
103 if (methodName == null) {
104 if (other.methodName != null)
106 } else if (!methodName.equals(other.methodName))
    [all...]
  /external/annotation-tools/annotation-file-utilities/src/annotator/scanner/
CastScanner.java 71 * methodName. This method must be called with monotonically increasing
74 * @param methodName the name of the method
77 public static void addCastToMethod(String methodName, Integer offset) {
78 List< Integer> offsetList = methodNameToCastOffsets.get(methodName);
81 methodNameToCastOffsets.put(methodName, offsetList);
83 if (methodName.equals(prevMethodName) && offset-prevOffset == 3) {
92 prevMethodName = methodName;
102 * @param methodName the name of the method
107 public static Integer getMethodCastIndex(String methodName, Integer offset) {
108 List<Integer> offsetList = methodNameToCastOffsets.get(methodName);
    [all...]
InstanceOfScanner.java 71 * methodName. This method must be called with monotonically increasing
74 * @param methodName the name of the method
77 public static void addInstanceOfToMethod(String methodName, Integer offset) {
78 List< Integer> offsetList = methodNameToInstanceOfOffsets.get(methodName);
81 methodNameToInstanceOfOffsets.put(methodName, offsetList);
92 * @param methodName the name of the method
97 public static Integer getMethodInstanceOfIndex(String methodName, Integer offset) {
98 List< Integer> offsetList = methodNameToInstanceOfOffsets.get(methodName);
LambdaScanner.java 73 * offsets for methodName. This method must be called with
76 * @param methodName the name of the method
79 public static void addLambdaExpressionToMethod(String methodName, Integer offset) {
81 methodNameToLambdaExpressionOffsets.get(methodName);
84 methodNameToLambdaExpressionOffsets.put(methodName, offsetList);
94 * @param methodName the name of the method
100 getMethodLambdaExpressionIndex(String methodName, Integer offset) {
102 methodNameToLambdaExpressionOffsets.get(methodName);
MemberReferenceScanner.java 66 * offsets for methodName. This method must be called with
69 * @param methodName the name of the method
72 public static void addMemberReferenceToMethod(String methodName, Integer offset) {
74 methodNameToMemberReferenceOffsets.get(methodName);
77 methodNameToMemberReferenceOffsets.put(methodName, offsetList);
87 * @param methodName the name of the method
93 getMemberReferenceIndex(String methodName, Integer offset) {
95 methodNameToMemberReferenceOffsets.get(methodName);
MethodCallScanner.java 66 * offsets for methodName. This method must be called with
69 * @param methodName the name of the method
72 public static void addMethodCallToMethod(String methodName, Integer offset) {
74 methodNameToMethodCallOffsets.get(methodName);
77 methodNameToMethodCallOffsets.put(methodName, offsetList);
87 * @param methodName the name of the method
93 getMethodCallIndex(String methodName, Integer offset) {
95 methodNameToMethodCallOffsets.get(methodName);
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
BusinessLogicHostTestBase.java 58 String methodName = mTestCase.getMethodName();
60 + "remote configuration.", methodName), mCanReadBusinessLogic);
61 if (methodName.contains(PARAM_START)) {
63 methodName = methodName.substring(0, methodName.lastIndexOf(PARAM_START));
65 String testName = String.format("%s#%s", this.getClass().getName(), methodName);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
OptionalMethod.java 34 private final String methodName;
42 * @param methodName the name of the method
45 public OptionalMethod(Class<?> returnType, String methodName, Class... methodParams) {
47 this.methodName = methodName;
109 throw new AssertionError("Method " + methodName + " not supported for object " + target);
150 if (methodName != null) {
151 method = getPublicMethod(clazz, methodName, methodParams);
163 private static Method getPublicMethod(Class<?> clazz, String methodName, Class[] parameterTypes) {
166 method = clazz.getMethod(methodName, parameterTypes)
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/
RunMethodInstrumentation.java 49 private String methodName;
60 methodName = arguments.getString("method");
64 Log.d(TAG, "Running " + className + "." + methodName);
81 if (className == null || methodName == null) {
98 invokeMethod(args, className, methodName);
108 private void invokeMethod(Bundle args, String className, String methodName) throws
127 method = clazz.getMethod(methodName, Context.class, Bundle.class);
138 method = clazz.getMethod(methodName, Context.class);
148 method = clazz.getMethod(methodName);
  /external/testng/src/test/java/test/invokedmethodlistener/
InvokedMethodNameListener.java 23 String methodName = method.getTestMethod().getMethodName();
26 testMethods.add(methodName);
29 configurationMethods.add(methodName);
32 testMethodsFromTM.add(methodName);
42 configurationMethodsFromTM.add(methodName);
  /external/annotation-tools/scene-lib/src/annotations/io/
ASTRecord.java 35 public final String methodName;
48 String methodName, String varName, ASTPath astPath) {
51 this.methodName = methodName;
56 } else if (methodName != null) {
70 return new ASTRecord(ast, className, methodName, varName,
75 return new ASTRecord(ast, className, methodName, varName, newPath);
98 d = methodName == null
99 ? rec.methodName == null ? 0 : -1
100 : rec.methodName == null ? 1 : methodName.compareTo(rec.methodName)
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/stacks/
JavaStackFrameSnapshot.java 33 public String methodName;
47 this.methodName = that.methodName;

Completed in 767 milliseconds

12 3 4 5 6 7 8 91011>>