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

<<11121314151617181920>>

  /external/protobuf/java/src/main/java/com/google/protobuf/
BlockingRpcChannel.java 42 * Call the given method of the remote service and blocks until it returns.
47 Descriptors.MethodDescriptor method,
RpcChannel.java 57 * Call the given method of the remote service. This method is similar to
61 * {@code request.getDescriptor() == method.getInputType()}.
64 * {@code getDescriptor() == method.getOutputType()}).
66 void callMethod(Descriptors.MethodDescriptor method,
  /external/testng/src/main/java/org/testng/
IMethodSelector.java 8 * decide whether a test method should be included in a test run.
16 * @param context The selector context. The implementation of this method
17 * can invoke setHalted(true) to indicate that no other Method Selector
21 * @param method The test method
22 * @param isTestMethod true if this is a @Test method, false if it's a
23 * configuration method
24 * @return true if this method should be included in the test run, false
28 ITestNGMethod method, boolean isTestMethod);
31 * Invoked when all the test methods are known so that the method selecto
    [all...]
  /external/testng/src/test/java/test/invokedmethodlistener/
MyListener.java 17 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
19 if (method.getTestMethod().isAfterSuiteConfiguration()) {
23 if (method.getTestMethod().isTest()) {
30 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
Dispatchable.java 18 import java.lang.reflect.Method;
21 * Dynamically dispatch a method and its argument to some object.
23 * <p>This can be used to intercept method calls and do work around them, redirect work,
28 * Dispatch the method and arguments to this object.
29 * @param method a method defined in class {@code T}
30 * @param args arguments corresponding to said {@code method}
31 * @return the object returned when invoking {@code method}
32 * @throws Throwable any exception that might have been raised while invoking the method
34 public Object dispatch(Method method, Object[] args) throws Throwable
    [all...]
InvokeDispatcher.java 22 import java.lang.reflect.Method;
37 public Object dispatch(Method method, Object[] args) {
39 return method.invoke(mTarget, args);
46 Log.wtf(TAG, "IllegalAccessException while invoking " + method, e);
49 Log.wtf(TAG, "IllegalArgumentException while invoking " + method, e);
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
BindingMethod.java 41 * @return The method to call to set the attribute value.
43 String method(); method in interface:BindingMethod
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
AbsSeekBarBindingAdapter.java 22 @BindingMethod(type = android.widget.AbsSeekBar.class, attribute = "android:thumbTint", method = "setThumbTintList"),
ActionMenuViewBindingAdapter.java 23 @BindingMethod(type = ActionMenuView.class, attribute = "android:onMenuItemClick", method = "setOnMenuItemClickListener"),
ChronometerBindingAdapter.java 23 @BindingMethod(type = Chronometer.class, attribute = "android:onChronometerTick", method = "setOnChronometerTickListener"),
FrameLayoutBindingAdapter.java 22 @BindingMethod(type = android.widget.FrameLayout.class, attribute = "android:foregroundTint", method = "setForegroundTintList"),
SpinnerBindingAdapter.java 22 @BindingMethod(type = android.widget.Spinner.class, attribute = "android:popupBackground", method = "setPopupBackgroundDrawable"),
  /external/jetty/src/java/org/eclipse/jetty/util/security/
Constraint.java 47 public static boolean validateMethod (String method)
49 if (method == null)
51 method = method.trim();
52 return (method.equals(__FORM_AUTH)
53 || method.equals(__BASIC_AUTH)
54 || method.equals (__DIGEST_AUTH)
55 || method.equals (__CERT_AUTH)
56 || method.equals(__CERT_AUTH2)
57 || method.equals(__SPNEGO_AUTH
    [all...]
  /external/libvpx/libvpx/test/
vp8_boolcoder_test.cc 59 for (int method = 0; method <= 7; ++method) { // we generate various proba
66 (method == 0) ? 0 : (method == 1) ? 255 :
67 (method == 2) ? 128 :
68 (method == 3) ? rnd.Rand8() :
69 (method == 4) ? (parity ? 0 : 255) :
71 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) :
72 (method == 6)
111 << " method: " << method; local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
OptionalMethod.java 21 import java.lang.reflect.Method;
25 * Duck-typing for methods: Represents a method that may or may not be present on an object.
27 * @param <T> the type of the object the method might be on, typically an interface or base class
31 /** The return type of the method. null means "don't care". */
39 * Creates an optional method.
42 * @param methodName the name of the method
43 * @param methodParams the method parameter types
52 * Returns true if the method exists on the supplied {@code target}.
59 * Invokes the method on {@code target} with {@code args}. If the method does not exist or is no
149 Method method = null; local
164 Method method = null; local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
ReflectionMethod.java 39 import org.jf.dexlib2.iface.Method;
49 public class ReflectionMethod extends BaseMethodReference implements Method {
50 private final java.lang.reflect.Method method; field in class:ReflectionMethod
52 public ReflectionMethod(java.lang.reflect.Method method) {
53 this.method = method;
57 final java.lang.reflect.Method method = this.method local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
vp8_boolcoder_test.cc 59 for (int method = 0; method <= 7; ++method) { // we generate various proba
66 (method == 0) ? 0 : (method == 1) ? 255 :
67 (method == 2) ? 128 :
68 (method == 3) ? rnd.Rand8() :
69 (method == 4) ? (parity ? 0 : 255) :
71 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) :
72 (method == 6)
115 << " method: " << method; local
    [all...]
  /art/runtime/entrypoints/quick/
quick_fillarray_entrypoints.cc 28 ArtMethod* method, Thread* self)
31 const uint16_t* const insns = method->GetCodeItem()->insns_;
  /art/runtime/
instrumentation.cc 97 for (ArtMethod& method : klass->GetMethods(sizeof(void*))) {
98 InstallStubsForMethod(&method);
103 static void UpdateEntrypoints(ArtMethod* method, const void* quick_code)
105 method->SetEntryPointFromQuickCompiledCode(quick_code);
108 bool Instrumentation::NeedDebugVersionForBootImageCode(ArtMethod* method, const void* code) const
112 !method->IsNative() &&
113 !method->IsProxyMethod();
116 void Instrumentation::InstallStubsForMethod(ArtMethod* method) {
117 if (!method->IsInvokable() || method->IsProxyMethod())
842 ArtMethod* method; local
1064 ArtMethod* method = instrumentation_frame.method_; local
1121 ArtMethod* method = instrumentation_frame.method_; local
    [all...]
  /art/test/973-default-multidex/smali-multidex/
iface.smali 27 .method public getTwice()Ljava/lang/String;
37 .end method
39 .method public abstract getString()Ljava/lang/String;
40 .end method
  /dalvik/dx/tests/044-dex-math-ops/
run 19 --dump-method=Blort.blort *.class
  /dalvik/dx/tests/045-dex-switch-ops/
run 19 --dump-method=Blort.switchTest'*' *.class
  /dalvik/dx/tests/046-dex-exceptions/
run 18 dx --debug --dex --no-optimize --positions=none --no-locals --dump-method=Blort.exTest'*' *.class
  /dalvik/dx/tests/047-dex-wide-args/
run 19 --dump-method=Blort.test'*' *.class
  /dalvik/dx/tests/049-dex-instanceof/
run 19 --dump-method=Blort.test *.class

Completed in 1374 milliseconds

<<11121314151617181920>>