OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:apimethod
(Results
1 - 8
of
8
) 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()) {
/external/chromium_org/chrome/renderer/resources/extensions/
ad_view.js
173
// this.browserPluginNode_[
apiMethod
] are not necessarily defined immediately
176
$Array.forEach(AD_VIEW_API_METHODS, function(
apiMethod
) {
177
self.adviewNode_[
apiMethod
] = function(var_args) {
178
return $Function.apply(self.browserPluginNode_[
apiMethod
],
/cts/tests/SignatureTest/src/android/tests/sigtest/
JDiffClassDescription.java
457
* - synchronized is allowed to be removed from an
apiMethod
461
* @param
apiMethod
the method read from the api file.
464
private boolean areMethodModifiedCompatibile(JDiffMethod
apiMethod
,
467
// If the
apiMethod
isn't synchronized
468
if (((
apiMethod
.mModifier & Modifier.SYNCHRONIZED) == 0) &&
478
int mod2 =
apiMethod
.mModifier & ~(Modifier.NATIVE | Modifier.SYNCHRONIZED);
[
all
...]
Completed in 200 milliseconds