HomeSort by relevance Sort by last modified time
    Searched refs:methods (Results 101 - 125 of 407) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/wpa_supplicant_8/src/ap/
authsrv.c 77 user->methods[i].vendor = eap_user->methods[i].vendor;
78 user->methods[i].method = eap_user->methods[i].method;
  /hardware/libhardware/include/hardware/
fb.h 153 return module->methods->open(module,
  /sdk/monkeyrunner/test/com/android/monkeyrunner/
JythonUtilsTest.java 229 * Base class to test overridden methods.
249 Set<String> methods = JythonUtils.getMethodNames(PythonMethodsClass.class); local
250 assertEquals(2, methods.size());
251 assertTrue(methods.contains("firstMethod"));
252 assertTrue(methods.contains("secondMethod"));
  /dalvik/vm/oo/
Object.cpp 387 Method* methods; local
392 methods = clazz->virtualMethods;
395 methods = clazz->directMethods;
400 Method* method = &methods[i];
492 Method* methods = clazz->virtualMethods; local
497 if (strcmp(methods[i].name, methodName) == 0)
498 return &methods[i];
603 * is only appropriate for static methods, but will work for all direct
604 * methods.
667 * For "direct" methods (private / constructor), we just return th
    [all...]
  /external/doclava/src/com/google/doclava/
ClassInfo.java 112 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods,
122 mAllSelfMethods = methods;
132 // after providing new methods and new superclass info,clear any cached
133 // lists of self + superclass methods, ctors, etc.
404 public ArrayList<MethodInfo> methods() { method in class:ClassInfo
411 for (MethodInfo method : iface.methods()) {
419 for (MethodInfo method : superclass.methods()) {
509 private void gatherMethods(ClassInfo owner, ClassInfo cl, HashMap<String, MethodInfo> methods) {
512 methods.put(m.name() + m.signature(), m.cloneForClass(owner));
519 HashMap<String, MethodInfo> methods = new HashMap<String, MethodInfo>() local
726 ArrayList<MethodInfo> methods = selfMethods(); local
866 ArrayList<MethodInfo> methods = selfMethods(); local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps.c 203 * do not set Selected Registrar Config Methods attribute properly, so
230 * Config Methods attribute properly, so it is safer to just use
446 u16 methods = 0; local
454 methods |= WPS_CONFIG_PUSHBUTTON;
460 methods |= WPS_CONFIG_VIRT_PUSHBUTTON;
468 methods |= WPS_CONFIG_DISPLAY |
474 methods |= WPS_CONFIG_USBA;
477 methods |= WPS_CONFIG_NFC_INTERFACE;
482 wps_build_config_methods(ie, methods) ||
  /external/protobuf/python/google/protobuf/
descriptor.py 31 # TODO(robinson): We probably need to provide deep-copy methods for
490 methods: (list of MethodDescriptor) List of methods provided by this
497 def __init__(self, name, full_name, index, methods, options=None, file=None,
504 self.methods = methods
506 for method in self.methods:
511 for method in self.methods:
service_reflection.py 46 Implementations for all methods described in the Service class are added here
153 for method in self.descriptor.methods:
206 """Generates and returns a method that can be set for a service methods.
219 """The body of all methods in the generated service class.
262 for method in self.descriptor.methods:
271 """The body of all service methods in the generated stub class.
  /external/android-mock/src/com/google/android/testing/mocking/
AndroidMockGenerator.java 63 * subclass. The interface and subclass both define the same methods which
64 * comprise all of the mockable methods of the provided class. At present, for
183 "Cannot specify final or static methods in an interface");
329 Method[] methods = getAllMethods(originalClass); local
330 for (Method method : methods) {
347 Method[] methods = getAllMethods(superClass); local
352 for (Method method : methods) {
363 throw new RuntimeException("Internal Error while creating subclass methods for "
380 List<Method> methods = new ArrayList<Method>(Arrays.asList(clazz.getDeclaredMethods())); local
381 for (Method method : methods) {
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 159 row ("total methods:" + m_separator + item.getAggregate (IItem.TOTAL_METHOD_COUNT));
282 addTitleRow ("class [" + cls.getName () + "] methods", 0, 0);
286 for (Iterator methods = cls.getChildren (order2); methods.hasNext (); )
288 final MethodItem method = (MethodItem) methods.next ();
318 for (Iterator methods = item.getChildren (order); methods.hasNext (); )
320 final IItem method = (IItem) methods.next ();
  /frameworks/base/core/java/android/view/
ViewDebug.java 156 * This annotation can be used to mark fields and methods to be dumped by
157 * the view server. Only non-void methods with no arguments can be annotated
325 * This annotation can be used to mark fields and methods to be dumped when
326 * the view is captured. Methods with this annotation must have no arguments
333 * When retrieveReturn is true, we need to retrieve second level methods
337 * @return true if we need the second level methods
430 * and obtain the traces. Both methods must be invoked on the
619 startSection("methods", out);
1414 Method[] methods = map.get(klass); local
1461 final Method[] methods = getExportedPropertyMethods(klass); local
1780 Method[] methods = map.get(klass); local
1813 final Method[] methods = capturedViewGetPropertyMethods(klass); local
    [all...]
  /external/doclava/res/assets/templates/
class.cs 14 <?cs if:subcount(cl.methods) ?>
72 <?cs if:subcount(class.methods.public) ?>
73 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubmethods">Methods</a>
76 <?cs if:subcount(class.methods.protected) ?>
77 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a>
81 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhmethods">Inherited Methods</a>
170 <?cs def:write_method_summary(methods, included) ?>
172 <?cs each:method = methods ?>
231 <td class="jd-linkcol"><?cs each:m=attr.methods ?>
272 || subcount(class.methods.public
    [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...]
  /dalvik/dexlist/
Android.mk 16 # dexlist -- list all concrete methods found in a DEX file
  /external/bluetooth/bluez/gdbus/
object.c 48 const GDBusMethodTable *methods; member in struct:interface_data
127 for (method = iface->methods; method && method->name; method++) {
433 for (method = iface->methods; method &&
500 const GDBusMethodTable *methods,
510 iface->methods = methods;
674 const GDBusMethodTable *methods,
691 add_interface(data, name, methods, signals,
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
reentrant-error.js 1 description("Tests that reentrant calls to Geolocation methods from the error callback are OK.");
reentrant-success.js 1 description("Tests that reentrant calls to Geolocation methods from the success callback are OK.");
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/
hisser2.m 14 % compute counts (two methods; the first works better and is operational)
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/
hisser2.m 14 % compute counts (two methods; the first works better and is operational)
  /frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java 29 import org.apache.http.client.methods.HttpGet;
30 import org.apache.http.client.methods.HttpUriRequest;
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLServerSocketImpl.java 141 * This method enables the compression methods listed by
144 * @param suites the names of all the compression methods to enable
148 public void setEnabledCompressionMethods(String[] methods) {
149 enabledCompressionMethods = NativeCrypto.checkEnabledCompressionMethods(methods);
  /sdk/traceview/src/com/android/traceview/
ColorController.java 91 public static void assignMethodColors(Display display, MethodData[] methods) {
93 for (MethodData md : methods) {
  /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/android-mock/tests/com/google/android/testing/mocking/
ClassTypeTests.java 101 private List<String> getMethodNames(CtMethod[] methods) {
103 for (CtMethod method : methods) {
109 private List<String> getMethodNames(Method[] methods, String[] exclusions) {
111 for (Method method : methods) {
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap.h 36 } methods[EAP_MAX_METHODS]; member in struct:eap_user

Completed in 626 milliseconds

1 2 3 45 6 7 8 91011>>