HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 51 - 75 of 8284) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/test/425-invoke-super/smali/
superclass.smali 19 .method public constructor <init>()V
23 .end method
25 .method public returnInt()I
29 .end method
invokesuper.smali 20 .method public constructor <init>()V
24 .end method
27 .method public run()I
33 .end method
36 .method public returnInt()I
40 .end method
  /art/test/434-invoke-direct/smali/
invoke.smali 19 .method public constructor <init>()V
23 .end method
25 .method public run()I
30 .end method
  /art/test/551-invoke-super/smali/
superclass.smali 19 .method public constructor <init>()V
23 .end method
25 .method abstract public returnInt()I
26 .end method
invokesuper.smali 20 .method public constructor <init>()V
24 .end method
27 .method public run()I
33 .end method
36 .method public returnInt()I
40 .end method
  /art/test/594-invoke-super/smali/
invoke-super.smali 19 .method public constructor <init>()V
23 .end method
25 .method public foo()V
31 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_float/d/
T_neg_float_5.d 6 .method public <init>()V
11 .end method
13 .method public run(F)F
18 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_int/d/
T_neg_int_6.d 6 .method public <init>()V
11 .end method
13 .method public run(I)I
18 .end method
  /external/skia/tools/skiaserve/urlhandlers/
UrlHandler.h 18 virtual bool canHandle(const char* method, const char* url) = 0;
20 const char* url, const char* method,
26 bool canHandle(const char* method, const char* url) override;
28 const char* url, const char* method,
34 bool canHandle(const char* method, const char* url) override;
36 const char* url, const char* method,
42 bool canHandle(const char* method, const char* url) override;
44 const char* url, const char* method,
54 bool canHandle(const char* method, const char* url) override;
56 const char* url, const char* method,
    [all...]
  /external/testng/src/main/java/org/testng/
IInvokedMethodListener2.java 11 * To be implemented if the method needs a handle to contextual information.
13 void beforeInvocation(IInvokedMethod method, ITestResult testResult,
17 * To be implemented if the method needs a handle to contextual information.
19 void afterInvocation(IInvokedMethod method, ITestResult testResult,
TestNGUtils.java 5 import java.lang.reflect.Method;
10 * Create an ITestNGMethod for @code{method} based on @code{existingMethod}, which needs
13 public static ITestNGMethod createITestNGMethod(ITestNGMethod existingMethod, Method method) {
14 return new ClonedMethod(existingMethod, method);
  /art/test/972-iface-super-multidex/smali/
concreteclass.smali 34 .method public constructor <init>()V
38 .end method
40 .method public runConflict()Ljava/lang/String;
46 .end method
50 .method public runReal()Ljava/lang/String;
56 .end method
58 .method public runDefault()Ljava/lang/String;
62 .end method
  /external/clang/test/SemaCXX/
pr25181-crash-on-invalid.cpp 6 void Foo<T>::method(T *) const throw() {} // expected-error {{nested name specifier 'Foo<T>::' for declaration does not refer into a class, class template or class template partial specialization}} function in class:Foo::Foo
  /external/doclava/src/com/google/doclava/
Linter.java 21 public void lintMethod(MethodInfo method);
22 public void lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position,
32 public void lintMethod(MethodInfo method) {
36 public void lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position,
  /external/v8/tools/clang/blink_gc_plugin/
CollectVisitor.cpp 28 bool CollectVisitor::VisitCXXMethodDecl(CXXMethodDecl* method) {
29 if (method->isThisDeclarationADefinition() && Config::IsTraceMethod(method))
30 trace_decls_.push_back(method);
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestCaseFilter.java 21 import java.lang.reflect.Method;
31 public boolean accept(Method method) {
32 return ((method.getParameterTypes().length == 0) &&
33 (method.getName().startsWith("test")) &&
34 (method.getReturnType().getSimpleName().equals("void")));
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
ExpandableListViewBindingAdapter.java 23 @BindingMethod(type = ExpandableListView.class, attribute = "android:onChildClick", method = "setOnChildClickListener"),
24 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupClick", method = "setOnGroupClickListener"),
25 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupCollapse", method = "setOnGroupCollapseListener"),
26 @BindingMethod(type = ExpandableListView.class, attribute = "android:onGroupExpand", method = "setOnGroupExpandListener"),
TabWidgetBindingAdapter.java 22 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:divider", method = "setDividerDrawable"),
23 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripEnabled", method = "setStripEnabled"),
24 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripLeft", method = "setLeftStripDrawable"),
25 @BindingMethod(type = android.widget.TabWidget.class, attribute = "android:tabStripRight", method = "setRightStripDrawable"),
VideoViewBindingAdapter.java 24 @BindingMethod(type = VideoView.class, attribute = "android:onCompletion", method = "setOnCompletionListener"),
25 @BindingMethod(type = VideoView.class, attribute = "android:onError", method = "setOnErrorListener"),
26 @BindingMethod(type = VideoView.class, attribute = "android:onInfo", method = "setOnInfoListener"),
27 @BindingMethod(type = VideoView.class, attribute = "android:onPrepared", method = "setOnPreparedListener"),
  /art/test/552-invoke-non-existent-super/smali/
invokesuper.smali 20 .method public constructor <init>()V
24 .end method
27 .method public run()I
33 .end method
36 .method public returnInt()I
40 .end method
  /art/test/553-invoke-super/smali/
invokesuper.smali 20 .method public constructor <init>()V
24 .end method
27 .method public run()I
33 .end method
36 .method public $noinline$returnInt()I
40 .end method
  /art/test/556-invoke-super/smali/
invokesuper.smali 20 .method public constructor <init>()V
24 .end method
27 .method public run()I
33 .end method
36 .method public returnInt()I
40 .end method
  /art/test/973-default-multidex/smali/
concreteclass.smali 30 .method public constructor <init>()V
34 .end method
36 .method public getString()Ljava/lang/String;
40 .end method
42 .method public callMethod()Ljava/lang/String;
47 .end method
  /external/guava/guava/src/com/google/common/eventbus/
EventSubscriber.java 24 import java.lang.reflect.Method;
29 * Wraps a single-argument subscriber method on a specific object.
31 * <p>This class only verifies the suitability of the method and event type if
34 * <p>Two EventSubscribers are equivalent when they refer to the same method on the
36 * method is registered more than once.
42 /** Object sporting the subscriber method. */
44 /** Subscriber method. */
45 private final Method method; field in class:EventSubscriber
48 * Creates a new EventSubscriber to wrap {@code method} on @{code target}
    [all...]
  /external/mockito/src/test/java/org/mockito/internal/stubbing/answers/
ReturnsTest.java 17 assertThat(new Returns("value").answer(new InvocationBuilder().method("oneArg").arg("A").toInvocation())).isEqualTo("value");
22 new Returns("one").validateFor(new InvocationBuilder().method("voidMethod").toInvocation());
28 new Returns(false).validateFor(new InvocationBuilder().method("booleanReturningMethod").toInvocation());
29 new Returns(TRUE).validateFor(new InvocationBuilder().method("booleanObjectReturningMethod").toInvocation());
30 new Returns(1).validateFor(new InvocationBuilder().method("integerReturningMethod").toInvocation());
31 new Returns(1L).validateFor(new InvocationBuilder().method("longReturningMethod").toInvocation());
32 new Returns(1L).validateFor(new InvocationBuilder().method("longObjectReturningMethod").toInvocation());
33 new Returns(null).validateFor(new InvocationBuilder().method("objectReturningMethodNoArgs").toInvocation());
34 new Returns(1).validateFor(new InvocationBuilder().method("objectReturningMethodNoArgs").toInvocation());
39 new Returns("String").validateFor(new InvocationBuilder().method("booleanReturningMethod").toInvocation())
    [all...]

Completed in 1230 milliseconds

1 23 4 5 6 7 8 91011>>