HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 76 - 100 of 9148) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/testng/src/main/java/org/testng/
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"),
  /frameworks/support/webkit-codegen/src/test/resources/codegen/
WebKitTypeAsMethodReturn.java 20 public WebViewClient method() { method in class:WebKitTypeAsMethodReturn
  /art/test/425-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/551-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/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/664-aget-verifier/
aget-verifier.cc 32 jobject method) {
33 CHECK(method != nullptr);
35 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(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/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
InvocationHandlerAdapter.java 26 import java.lang.reflect.Method;
31 * Handles proxy method invocations to dexmaker's InvocationHandler by calling
42 public Object invoke(final Object proxy, final Method method, final Object[] rawArgs)
44 // args can be null if the method invoked has no arguments, but Mockito expects a non-null array
46 if (isEqualsMethod(method)) {
48 } else if (isHashCodeMethod(method)) {
53 withSettings().build(proxy.getClass().getSuperclass()), method,
57 return ProxyBuilder.callSuper(proxy, method, rawArgs);
70 private static boolean isEqualsMethod(Method method)
    [all...]
  /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...]
  /external/proguard/src/proguard/optimize/info/
BackwardBranchMarker.java 41 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
44 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
46 markBackwardBranch(method, branchInstruction.branchOffset);
50 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction)
52 markBackwardBranch(method, switchInstruction.defaultOffset);
56 markBackwardBranch(method, switchInstruction.jumpOffsets[index]);
64 * Marks the given method if the given branch offset is negative
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
BlockingService.java 51 Message callBlockingMethod(Descriptors.MethodDescriptor method,
58 Message getRequestPrototype(Descriptors.MethodDescriptor method);
63 Message getResponsePrototype(Descriptors.MethodDescriptor method);
Service.java 55 * <p>Call a method of the service specified by MethodDescriptor. This is
61 * <li>{@code method.getService() == getDescriptorForType()}
63 * {@code getRequestPrototype(method)}.
73 * <li>{@code done} will be called when the method is complete. This may be
78 * {@code getResponsePrototype(method)}.
84 void callMethod(Descriptors.MethodDescriptor method,
92 * gets the default instances of this type for a given method. You can then
99 * MethodDescriptor method =
102 * stub.getRequestPrototype(method).newBuilderForType()
104 * service.callMethod(method, request, callback)
    [all...]
  /external/skia/tools/skiaserve/urlhandlers/
QuitHandler.cpp 16 bool QuitHandler::canHandle(const char* method, const char* url) {
18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
23 const char* url, const char* method,
RootHandler.cpp 16 bool RootHandler::canHandle(const char* method, const char* url) {
17 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
22 const char* url, const char* method,

Completed in 273 milliseconds

1 2 34 5 6 7 8 91011>>