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

<<21222324252627282930>>

  /external/wpa_supplicant_8/src/eap_peer/
eap_methods.h 2 * EAP peer: Method registration
14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method);
18 EapType method, const char *name);
19 int eap_peer_method_register(struct eap_method *method);
68 int eap_peer_method_unload(struct eap_method *method);
77 static inline int eap_peer_method_unload(struct eap_method *method)
84 /* EAP peer method registration calls for statically linked in methods */
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
CoverageBuilderTest.java 46 final MethodCoverageImpl method = new MethodCoverageImpl("doit", "()V", local
48 method.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 6);
49 method.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 7);
50 method.increment(CounterImpl.COUNTER_1_0, CounterImpl.COUNTER_0_0, 8);
51 method.incrementMethodCounter();
52 addClass(123L, false, "Sample", null, method);
78 final MethodCoverageImpl method = new MethodCoverageImpl("doit", "()V", local
80 method.increment(CounterImpl.COUNTER_0_1, CounterImpl.COUNTER_0_0, 6);
81 method.increment(CounterImpl.COUNTER_0_1, CounterImpl.COUNTER_0_0, 7);
82 method.increment(CounterImpl.COUNTER_0_1, CounterImpl.COUNTER_0_0, 8)
110 final MethodCoverageImpl method = new MethodCoverageImpl("doit", "()V", local
120 MethodCoverageImpl method = new MethodCoverageImpl("doit", "()V", null); local
132 MethodCoverageImpl method = new MethodCoverageImpl("doit", "()V", null); local
    [all...]
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
ViewBindingAdapter.java 31 @BindingMethod(type = View.class, attribute = "android:backgroundTint", method = "setBackgroundTintList"),
32 @BindingMethod(type = View.class, attribute = "android:fadeScrollbars", method = "setScrollbarFadingEnabled"),
33 @BindingMethod(type = View.class, attribute = "android:getOutline", method = "setOutlineProvider"),
34 @BindingMethod(type = View.class, attribute = "android:nextFocusForward", method = "setNextFocusForwardId"),
35 @BindingMethod(type = View.class, attribute = "android:nextFocusLeft", method = "setNextFocusLeftId"),
36 @BindingMethod(type = View.class, attribute = "android:nextFocusRight", method = "setNextFocusRightId"),
37 @BindingMethod(type = View.class, attribute = "android:nextFocusUp", method = "setNextFocusUpId"),
38 @BindingMethod(type = View.class, attribute = "android:nextFocusDown", method = "setNextFocusDownId"),
39 @BindingMethod(type = View.class, attribute = "android:requiresFadingEdge", method = "setVerticalFadingEdgeEnabled"),
40 @BindingMethod(type = View.class, attribute = "android:scrollbarDefaultDelayBeforeFade", method = "setScrollBarDefaultDelayBeforeFade")
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 41 import java.lang.reflect.Method;
87 * Ignore {@code method} in the tests that follow. Returns this object.
91 public NullPointerTester ignore(Method method) {
92 ignoredMembers.add(checkNotNull(method));
117 * Runs {@link #testMethod} on every static method of class {@code c} that has
122 for (Method method : minimalVisibility.getStaticMethods(c)) {
123 if (!isIgnored(method)) {
124 testMethod(null, method);
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolShrinker.java 201 // Mark the bootstrap method entries.
255 public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute methodParametersAttribute)
260 methodParametersAttribute.parametersAccept(clazz, method, this);
264 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
273 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
279 codeAttribute.instructionsAccept(clazz, method, this);
280 codeAttribute.exceptionsAccept(clazz, method, this)
    [all...]
  /art/tools/dmtracedump/
tracedump.cc 99 "<th>Method</th>\n"
110 "<th>Method</th>\n"
142 struct MethodEntry* method; member in struct:TimedMethod
161 * Entry from the method list.
179 int32_t graphState; /* used when graphing to see if this method has been visited before */
198 MethodEntry* method; member in struct:StackEntry
296 void initMethodEntry(MethodEntry* method, int64_t methodId, const char* className,
299 method->methodId = methodId;
300 method->className = className;
301 method->methodName = methodName
1099 MethodEntry* method = lookupMethod(pKeys, methodId); local
1312 MethodEntry* method = pStack->calls[ii].method; local
1383 MethodEntry* method = pMethods[ii]; local
1516 MethodEntry* method = pMethods[ii]; local
1696 MethodEntry* method = pClass->methods[jj]; local
1772 MethodEntry* method = pClass->methods[jj]; local
1905 MethodEntry* method = pUnique->methods[jj]; local
1982 MethodEntry* method = pUnique->methods[jj]; local
2078 MethodEntry* method = lookupMethod(dataKeys, methodId); local
2183 MethodEntry* method = pStack->calls[ii].method; local
2265 MethodEntry* method = methods[i]; local
    [all...]
  /art/runtime/native/
java_lang_reflect_Constructor.cc 24 #include "mirror/method.h"
36 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); local
37 if (method->IsProxyMethod()) {
42 method->GetDexFile()->GetAnnotationForMethod(method, klass));
48 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); local
49 if (method->IsProxyMethod()) {
61 method->GetDexFile()->GetAnnotationsForMethod(method));
67 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod local
89 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); local
102 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, javaMethod); local
    [all...]
  /art/runtime/
reflection_test.cc 84 void ReflectionTestMakeExecutable(ArtMethod** method,
110 *method = is_static ? c->FindDirectMethod(method_name, method_signature, sizeof(void*))
112 CHECK(method != nullptr);
133 ArtMethod* method; local
135 ReflectionTestMakeExecutable(&method, &receiver, is_static, "nop", "()V");
137 InvokeWithJValues(soa, receiver_ref.get(), soa.EncodeMethod(method), nullptr);
142 ArtMethod* method; local
144 ReflectionTestMakeExecutable(&method, &receiver, is_static, "identity", "(B)B");
149 JValue result = InvokeWithJValues(soa, receiver_ref.get(), soa.EncodeMethod(method), args);
153 result = InvokeWithJValues(soa, receiver_ref.get(), soa.EncodeMethod(method), args)
168 ArtMethod* method; local
193 ArtMethod* method; local
218 ArtMethod* method; local
247 ArtMethod* method; local
286 ArtMethod* method; local
330 ArtMethod* method; local
379 ArtMethod* method; local
413 ArtMethod* method; local
440 ArtMethod* method; local
470 ArtMethod* method; local
520 ArtMethod* method = klass->FindDirectMethod("main", "([Ljava\/lang\/String;)V", sizeof(void*)); local
    [all...]
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviderMethodsModule.java 37 import java.lang.reflect.Method;
43 * and binding annotations on the provider method to configure the binding.
79 for (Method method : c.getDeclaredMethods()) {
80 CheckedProvides checkedProvides = method.getAnnotation(CheckedProvides.class);
82 result.add(createProviderMethod(binder, method, checkedProvides));
89 <T> CheckedProviderMethod<T> createProviderMethod(Binder binder, final Method method,
93 binder = binder.withSource(method);
94 Errors errors = new Errors(method);
    [all...]
  /art/runtime/mirror/
method.cc 17 #include "method.h"
27 GcRoot<Class> Method::static_class_;
28 GcRoot<Class> Method::array_class_;
32 void Method::SetClass(Class* klass) {
38 void Method::ResetClass() {
43 void Method::SetArrayClass(Class* klass) {
49 void Method::ResetArrayClass() {
55 Method* Method::CreateFromArtMethod(Thread* self, ArtMethod* method) {
    [all...]
  /art/test/510-checker-try-catch/src/
Main.java 17 import java.lang.reflect.Method;
40 public static void testMethod(String method) throws Exception {
42 Method m = c.getMethod(method, new Class[] { boolean.class, boolean.class });
49 throw new Error("Method: \"" + method + "\", path: " + path + ", " +
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/iget/d/
T_iget_2.d 21 .method <clinit>()V
24 .end method
26 .method public <init>()V
35 .end method
37 .method public run()F
42 .end method
T_iget_9.d 21 .method <clinit>()V
24 .end method
26 .method public <init>()V
31 .end method
33 .method public run()F
39 .end method
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct/d/
T_invoke_direct_10.d 20 .method public <init>()V
25 .end method
27 .method private getInt()I
32 .end method
34 .method public run()I
41 .end method
T_invoke_direct_11.d 20 .method public <init>()V
25 .end method
27 .method public run()I
33 .end method
36 .method private static toInt()I
40 .end method
T_invoke_direct_15.d 20 .method public <init>()V
25 .end method
27 .method private getInt()I
32 .end method
34 .method public run()I
40 .end method
T_invoke_direct_16.d 20 .method public <init>()V
24 .end method
26 .method public run()I
33 .end method
36 .method private toInt()I
40 .end method
T_invoke_direct_2.d 20 .method public <init>()V
25 .end method
27 .method private getInt()I
32 .end method
34 .method public run()I
40 .end method
T_invoke_direct_25.d 20 .method public <init>()V
25 .end method
27 .method private test()V
29 .end method
31 .method public run()I
40 .end method
T_invoke_direct_27.d 20 .method public <init>()V
25 .end method
27 .method private test()V
29 .end method
31 .method public static run()V
39 .end method
T_invoke_direct_3.d 20 .method public <init>()V
25 .end method
27 .method private getInt()I
32 .end method
34 .method public run()I
40 .end method
T_invoke_direct_4.d 19 .method static <clinit>()V
21 .end method
23 .method public <init>()V
27 .end method
29 .method public run()V
32 .end method
T_invoke_direct_5.d 20 .method public <init>()V
25 .end method
27 .method private getInt()I
32 .end method
34 .method public run()I
40 .end method
T_invoke_direct_8.d 20 .method public <init>()V
25 .end method
27 .method public run()I
35 .end method
38 .method private toInt()I
42 .end method
T_invoke_direct_9.d 20 .method public <init>()V
25 .end method
27 .method public run()I
34 .end method
37 .method private native toInt()I
38 .end method

Completed in 1260 milliseconds

<<21222324252627282930>>