HomeSort by relevance Sort by last modified time
    Searched defs:methods (Results 126 - 150 of 224) sorted by null

1 2 3 4 56 7 8 9

  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 165 // methods for getting various nested tables:
299 // was set for an interface only if the interface declared methods
375 // descriptor separators (this is done for methods only, not for fields)
377 final IMethodCollection methods = getMethods (); local
380 final ConstructorDescriptor [] cds = new ConstructorDescriptor [methods.size ()];
387 final Method_info method = methods.get (i);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java 36 * <li>calls some of the authentication methods (e.g., {@link #authenticateWithPublicKey(String, File, String) authenticateWithPublicKey()}).</li>
153 * the remaining possible methods).
171 * methods, this method is just a wrapper for it and will
233 * the remaining possible methods).
287 * the remaining possible methods).
337 * Note 2: no matter which one of the authenticateWithXXX() methods
340 * authentication methods by the server. Please read RFC 4252 for the
347 * the remaining possible methods).
397 * the remaining possible methods).
1021 String methods[] = getRemainingAuthMethods(user); local
    [all...]
  /frameworks/base/core/jni/
android_opengl_GLES11.cpp 2453 static JNINativeMethod methods[] = { variable
    [all...]
com_google_android_gles_jni_EGLImpl.cpp 536 static JNINativeMethod methods[] = { member in namespace:android
573 android::classPathName, android::methods, NELEM(android::methods));
android_util_Process.cpp 982 static const JNINativeMethod methods[] = { variable
1019 methods, NELEM(methods));
  /libcore/luni/src/main/java/java/lang/
Class.java 693 * Returns an array containing {@code Method} objects for all methods
695 * methods or if this {@code Class} represents an array class, a primitive
698 * @return an array with the methods declared in the class represented by
707 * Returns the list of methods without performing any security checks
708 * first. If no methods exist, an empty array is returned.
937 List<Method> methods = new ArrayList<Method>(); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidClassTest.java 141 Method[] methods = ArrayList.class.getMethods(); local
144 for (Method method : methods) {
173 // Check if we also reflect methods from interfaces
175 Method[] methods = MyInterface.class.getMethods(); local
176 assertTrue(hasMethod(methods, ".foo("));
178 methods = MyOtherInterface.class.getMethods();
179 assertTrue(hasMethod(methods, ".foo("));
180 assertTrue(hasMethod(methods, ".bar("));
182 methods = MyClass.class.getMethods();
183 assertTrue(hasMethod(methods, ".foo("))
    [all...]
ReflectionTest.java 261 Method[] methods = ExtendsImplementsDefinesMember.class.getMethods(); local
262 assertTrue(names(methods).contains("method"));
266 Method[] methods = ImplementsExtendsDefinesMember.class.getMethods(); local
267 assertTrue(names(methods).contains("method"));
271 Method[] methods = ExtendsAndImplementsDefinesMember.class.getMethods(); local
272 assertEquals(1, count(names(methods), "method"));
350 private List<String> names(Member[] methods) {
352 for (Member method : methods) {
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
MethodTest.java 509 assertEquals("Methods with same name did not return same hashCode.",
522 Method[] methods = null; local
547 // Test same method. but this time pull it from the list of methods
549 methods = cl.getDeclaredMethods();
552 for (i = 0; i < methods.length; i++)
553 if (methods[i].getName().equals("parmTest")) {
554 mth = methods[i];
555 i = methods.length + 1;
557 if (i < methods.length) {
707 Method methods[] = cl.getMethods() local
    [all...]
  /cts/tests/SignatureTest/src/android/tests/sigtest/
JDiffClassDescription.java 439 * methods.
451 * Checks to ensure that the modifiers value for two methods are
538 * Checks if the two types of methods are the same.
542 * @return true, if both methods are the same
545 // If the method names aren't equal, the methods can't match.
551 // Next, compare the return types of the two methods. If
552 // they aren't equal, the methods can't match.
556 // different number of parameters, the two methods
560 // methods can't match.
566 // We've passed all the tests, the methods d
583 Method[] methods = mClass.getDeclaredMethods(); local
    [all...]
  /cts/tools/utils/
DescriptionGenerator.java 520 * Get all the TestMethod from a ClassDoc, including inherited methods.
526 Collection<MethodDoc> methods = getAllMethods(clazz); local
529 Iterator<MethodDoc> iterator = methods.iterator();
584 * Get all MethodDoc of a ClassDoc, including inherited methods.
590 ArrayList<MethodDoc> methods = new ArrayList<MethodDoc>(); local
592 for (MethodDoc method : clazz.methods()) {
593 methods.add(method);
598 for (MethodDoc method : superClass.methods()) {
599 methods.add(method);
605 return methods;
    [all...]
  /external/android-mock/tests/com/google/android/testing/mocking/
AndroidMockTest.java 74 List<CtMethod> methods = local
77 for (CtMethod method : Arrays.asList(methods.toArray(new CtMethod[0]))) {
80 methods.remove(method);
83 return methods.toArray(new CtMethod[0]);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ClassFile.java 29 * consists of a constant pool, methods, fields, and attributes.
41 ArrayList methods; field in class:ClassFile
134 methods = new ArrayList();
168 ArrayList list = methods;
233 ArrayList list = methods;
370 ArrayList list = methods;
412 list = methods;
449 ArrayList list = methods;
476 ArrayList list = methods;
597 * Returns all the methods declared in the class
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
config.c 947 struct eap_method_type *methods = NULL, *tmp; local
965 tmp = methods;
966 methods = os_realloc(methods,
967 (num_methods + 1) * sizeof(*methods));
968 if (methods == NULL) {
973 methods[num_methods].method = eap_peer_get_type(
974 start, &methods[num_methods].vendor);
975 if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
976 methods[num_methods].method == EAP_TYPE_NONE)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap.c 752 struct eap_sm *sm, int id, const struct eap_method *methods,
770 for (m = methods; m; m = m->next) {
786 wpa_printf(MSG_DEBUG, "EAP: no more allowed methods");
804 const struct eap_method *methods, *m; local
809 methods = eap_peer_get_methods(&count);
810 if (methods == NULL)
813 return eap_sm_build_expanded_nak(sm, id, methods, count);
823 for (m = methods; m; m = m->next) {
839 wpa_hexdump(MSG_DEBUG, "EAP: allowed methods", start, found);
1662 const struct eap_method *methods, *m; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_registrar.c 296 u16 methods; local
299 methods = reg->wps->config_methods & ~WPS_CONFIG_PUSHBUTTON;
301 methods |= WPS_CONFIG_PUSHBUTTON;
303 methods = reg->sel_reg_config_methods_override;
304 wpa_printf(MSG_DEBUG, "WPS: * Selected Registrar Config Methods (%x)",
305 methods);
308 wpabuf_put_be16(msg, methods);
316 u16 methods; local
317 methods = 0;
318 wpa_printf(MSG_DEBUG, "WPS: * Config Methods (%x)", methods)
329 u16 methods; local
686 u16 methods; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap.c 756 struct eap_sm *sm, int id, const struct eap_method *methods,
774 for (m = methods; m; m = m->next) {
790 wpa_printf(MSG_DEBUG, "EAP: no more allowed methods");
808 const struct eap_method *methods, *m; local
813 methods = eap_peer_get_methods(&count);
814 if (methods == NULL)
817 return eap_sm_build_expanded_nak(sm, id, methods, count);
827 for (m = methods; m; m = m->next) {
843 wpa_hexdump(MSG_DEBUG, "EAP: allowed methods", start, found);
1778 const struct eap_method *methods, *m; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 1250 * (MAC addr, UUID-E, pri dev type, config methods,
1624 int methods = var.toInt(); local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 785 static JNINativeMethod methods[] = { member in namespace:android
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 724 * ETC1 methods.
1052 JNINativeMethod* methods; member in struct:android::_ClassRegistrationInfo
1070 cri->classPath, cri->methods, cri->methodCount);
  /frameworks/base/test-runner/src/android/test/
TestRunner.java 332 Method[] methods = getAllTestMethods(clazz); local
333 for (Method m : methods) {
607 Method[] methods = getAllTestMethods(clazz); local
609 String[] onScreenTestNames = new String[methods.length];
611 for (Method m : methods) {
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTest.java 53 List<Method> methods = Arrays.asList(AnnotatedClass.class.getDeclaredMethods()); local
56 for (Method m : methods) {
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 434 if (line.equals("*methods")) {
552 // Sort the methods into decreasing inclusive time
554 MethodData[] methods; local
555 methods = mv.toArray(new MethodData[mv.size()]);
556 Arrays.sort(methods, new Comparator<MethodData>() {
567 // Count the number of methods with non-zero inclusive time
569 for (MethodData md : methods) {
575 // Copy the methods with non-zero time
578 for (MethodData md : methods) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 369 // methods
370 Set<SigMethod> methods = Collections.emptySet(); local
404 methods = convertMethods(dexClass.getMethods());
411 methods = convertMethods(dexClass.getMethods());
414 for (SigMethod method : methods) {
417 sigClass.setMethods(new HashSet<IMethod>(methods));
451 private void addAnnotationsToAnnotationFields(List<DexMethod> methods,
461 for (DexMethod method : methods) {
555 * {@link IConstructor}. This method ignores methods which are not
558 * @param methods
    [all...]

Completed in 5877 milliseconds

1 2 3 4 56 7 8 9