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

1 2 3 4 56 7 8 91011>>

  /device/moto/stingray/sensors/
sensors.c 77 .methods = &sensors_module_methods,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
rule-tracer.rb 8 RuleTracer is simple debug event listener that writes the names of rule methods
  /external/apache-http/src/org/apache/http/client/
HttpClient.java 41 import org.apache.http.client.methods.HttpUriRequest;
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps.c 174 * do not set Selected Registrar Config Methods attribute properly, so
201 * Config Methods attribute properly, so it is safer to just use
287 u16 methods; local
300 methods = WPS_CONFIG_PUSHBUTTON;
302 methods = WPS_CONFIG_LABEL | WPS_CONFIG_DISPLAY |
307 wps_build_config_methods(ie, methods) ||
  /external/wpa_supplicant_8/src/ap/
authsrv.c 68 user->methods[i].vendor = eap_user->methods[i].vendor;
69 user->methods[i].method = eap_user->methods[i].method;
  /gdk/samples/quake/jni/
masterMain.cpp 203 static JNINativeMethod methods[] = { variable
214 * Register several native methods for one class.
236 * Register native methods for all classes we know about.
241 methods, sizeof(methods) / sizeof(methods[0]))) {
  /hardware/libhardware/include/hardware/
fb.h 153 return module->methods->open(module,
hardware.h 133 /** Modules methods */
134 struct hw_module_methods_t* methods; member in struct:hw_module_t
153 * followed by module specific public methods and attributes.
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
FieldGetterDetector.java 92 List methodList = classNode.methods;
182 // Validate that these getter methods are really just simple field getters
201 List methods = classNode.methods; local
204 for (Object methodObject : methods) {
  /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/dexmaker/src/main/java/com/google/dexmaker/
DexMaker.java 50 * including their member methods and fields, executable code, and debugging
136 * getParameter()}. For non-static methods the {@code this} pointer is exposed
250 if (typeDeclaration.methods.containsKey(method)) {
271 typeDeclaration.methods.put(method, methodDeclaration);
410 private final Map<MethodId, MethodDeclaration> methods field in class:DexMaker.TypeDeclaration
420 + fields.keySet() + " " + methods.keySet());
431 for (MethodDeclaration method : methods.values()) {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
ObjectStore.java 149 def.methods = localObj.methods;
159 //localObj.methods = obj.getClass().getMethods();
167 localObj.methods = methodList.toArray(new Method[methodList.size()]);
276 if (call.methodId < 0 || call.methodId >= localObj.methods.length)
280 Method method = localObj.methods[call.methodId];
  /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 ();
  /build/tools/droiddoc/templates-sdk/
class.cs 20 <?cs if:subcount(cl.methods) ?>
78 <?cs if:subcount(class.methods.public) ?>
79 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubmethods">Methods</a>
82 <?cs if:subcount(class.methods.protected) ?>
83 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a>
87 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhmethods">Inherited Methods</a>
176 <?cs def:write_method_summary(methods, included) ?>
178 <?cs each:method = methods ?>
237 <td class="jd-linkcol"><?cs each:m=attr.methods ?>
278 || subcount(class.methods.public
    [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.");

Completed in 750 milliseconds

1 2 3 4 56 7 8 91011>>