OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:apimethod
(Results
1 - 6
of
6
) sorted by null
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiMethod.java
24
class
ApiMethod
implements Comparable<
ApiMethod
> {
44
ApiMethod
(
64
public int compareTo(
ApiMethod
another) {
ApiClass.java
37
private final List<
ApiMethod
> mApiMethods = new ArrayList<
ApiMethod
>();
93
public void addMethod(
ApiMethod
method) {
116
ApiMethod
apiMethod
= getMethod(name, parameterTypes, returnType);
117
if (
apiMethod
!= null) {
118
apiMethod
.setCovered(true);
122
public Collection<
ApiMethod
> getMethods() {
133
for (
ApiMethod
method : mApiMethods) {
159
private
ApiMethod
getMethod(String name, List<String> parameterTypes, String returnType)
[
all
...]
CurrentXmlHandler.java
121
ApiMethod
apiMethod
= new
ApiMethod
(
132
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
102
for (
ApiMethod
method : apiClass.getMethods()) {
/cts/tests/signature/src/android/signature/cts/
JDiffClassDescription.java
458
* - synchronized is allowed to be removed from an
apiMethod
462
* @param
apiMethod
the method read from the api file.
465
private boolean areMethodModifiedCompatibile(JDiffMethod
apiMethod
,
468
// If the
apiMethod
isn't synchronized
469
if (((
apiMethod
.mModifier & Modifier.SYNCHRONIZED) == 0) &&
479
int mod2 =
apiMethod
.mModifier & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED);
[
all
...]
Completed in 2699 milliseconds