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

1 23 4 5 6 7 8 91011>>

  /external/skia/tools/skiaserve/urlhandlers/
UrlHandler.h 16 virtual bool canHandle(const char* method, const char* url) = 0;
18 const char* url, const char* method,
24 bool canHandle(const char* method, const char* url) override;
26 const char* url, const char* method,
32 bool canHandle(const char* method, const char* url) override;
34 const char* url, const char* method,
40 bool canHandle(const char* method, const char* url) override;
42 const char* url, const char* method,
54 bool canHandle(const char* method, const char* url) override;
56 const char* url, const char* method,
    [all...]
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,
  /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
  /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"),
ProgressBarBindingAdapter.java 22 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:indeterminateTint", method = "setIndeterminateTintList"),
23 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:progressTint", method = "setProgressTintList"),
24 @BindingMethod(type = android.widget.ProgressBar.class, attribute = "android:secondaryProgressTint", method = "setSecondaryProgressTintList"),
  /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/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/dbus/test/name-test/
test-pending-call-dispatch.c 21 DBusMessage *method; local
26 method = dbus_message_new_method_call ("org.freedesktop.DBus.TestSuiteEchoService",
31 dbus_message_append_args (method, DBUS_TYPE_STRING, &echo, NULL);
32 dbus_connection_send_with_reply (conn, method, &echo_pending, -1);
33 dbus_message_unref (method);
36 method = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
41 dbus_connection_send_with_reply (conn, method, &dbus_pending, -1);
42 dbus_message_unref (method);
81 DBusMessage *method; local
115 method = dbus_message_new_method_call ("org.freedesktop.TestSuiteEchoService"
    [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/org/mockito/internal/stubbing/answers/
MethodInfo.java 10 import java.lang.reflect.Method;
17 private Method method; field in class:MethodInfo
20 this.method = theInvocation.getMethod();
24 Class<?>[] exceptions = method.getExceptionTypes();
36 if (method.getReturnType().isPrimitive() || clazz.isPrimitive()) {
37 return Primitives.primitiveTypeOf(clazz) == Primitives.primitiveTypeOf(method.getReturnType());
39 return method.getReturnType().isAssignableFrom(clazz);
44 return this.method.getReturnType() == Void.TYPE;
48 return method.getReturnType().getSimpleName()
    [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/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/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/reflect/
Method.java 24 /** Provides information about, and access to, a single method on a class or interface.
26 public final class Method {
28 private final com.badlogic.gwtref.client.Method method; field in class:Method
30 Method (com.badlogic.gwtref.client.Method method) {
31 this.method = method;
34 /** Returns the name of the method. */
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
MethodAnnotationStruct.java 26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method,
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
MethodAnnotationStruct.java 26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method,
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MethodAnnotationStruct.java 26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method,
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
    [all...]
  /external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
InvocationHandlerAdapter.java 21 import java.lang.reflect.Method;
30 * Handles proxy method invocations to dexmaker's InvocationHandler by calling
41 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
42 if (objectMethodsGuru.isEqualsMethod(method)) {
44 } else if (objectMethodsGuru.isHashCodeMethod(method)) {
48 ProxiedMethod proxiedMethod = new ProxiedMethod(method);
62 private final Method method; field in class:InvocationHandlerAdapter.ProxiedMethod
64 public ProxiedMethod(Method method)
    [all...]

Completed in 1588 milliseconds

1 23 4 5 6 7 8 91011>>