HomeSort by relevance Sort by last modified time
    Searched full:apimethod (Results 1 - 7 of 7) sorted by null

  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiMethod.java 24 class ApiMethod implements Comparable<ApiMethod> {
36 ApiMethod(String name, List<String> parameterTypes, String returnType, boolean deprecated) {
44 public int compareTo(ApiMethod another) {
ApiClass.java 35 private final List<ApiMethod> mApiMethods = new ArrayList<ApiMethod>();
78 public void addMethod(ApiMethod method) {
82 public ApiMethod getMethod(String name, List<String> parameterTypes, String returnType) {
83 for (ApiMethod method : mApiMethods) {
93 public Collection<ApiMethod> getMethods() {
104 for (ApiMethod method : mApiMethods) {
DexDepsXmlHandler.java 87 ApiMethod apiMethod = apiClass.getMethod(mCurrentMethodName,
89 if (apiMethod != null) {
90 apiMethod.setCovered(true);
CurrentXmlHandler.java 113 ApiMethod apiMethod = new ApiMethod(mCurrentMethodName, mCurrentParameterTypes,
117 apiClass.addMethod(apiMethod);
TextReport.java 64 List<ApiMethod> methods = new ArrayList<ApiMethod>(apiClass.getMethods());
66 for (ApiMethod method : methods) {
103 private static void printMethod(ApiMethod method, PrintStream out) {
XmlReport.java 103 for (ApiMethod method : apiClass.getMethods()) {
  /cts/tests/SignatureTest/src/android/tests/sigtest/
JDiffClassDescription.java 455 * - synchronized is allowed to be removed from an apiMethod
459 * @param apiMethod the method read from the api file.
462 private boolean areMethodModifiedCompatibile(JDiffMethod apiMethod ,
465 // If the apiMethod isn't synchronized
466 if (((apiMethod.mModifier & Modifier.SYNCHRONIZED) == 0) &&
476 int mod2 = apiMethod.mModifier & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED);
    [all...]

Completed in 188 milliseconds