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

1 23 4 5 6 7 8 91011>>

  /external/quake/quake/src/WinQuake/
masterMain.cpp 74 static JNINativeMethod methods[] = { variable
84 * Register several native methods for one class.
106 * Register native methods for all classes we know about.
111 methods, sizeof(methods) / sizeof(methods[0]))) {
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaClassJSC.cpp 74 // Get the methods
75 if (jarray methods = (jarray)callJNIMethod<jobject>(aClass, "getMethods", "()[Ljava/lang/reflect/Method;")) {
76 int numMethods = env->GetArrayLength(methods);
78 jobject aJMethod = env->GetObjectArrayElement((jobjectArray)methods, i);
93 env->DeleteLocalRef(methods);
  /packages/inputmethods/LatinIME/native/jni/
jni_common.h 27 int registerNativeMethods(JNIEnv *env, const char *className, JNINativeMethod *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...]
  /external/javassist/src/main/javassist/tools/reflect/
ClassMetaobject.java 43 * The base-level methods controlled by a metaobject
52 private Method[] methods; field in class:ClassMetaobject
82 methods = null;
94 methods = null;
223 * Is invoked when <code>static</code> methods of the base-level
246 * Returns an array of the methods defined on the given reflective
250 if (methods != null)
251 return methods;
277 methods = new Method[max];
280 methods[index[i] - 1] = allmethods[i]
    [all...]
  /dalvik/vm/native/
dalvik_system_VMStack.cpp 61 * Create an array of classes for the methods on the stack, skipping the
62 * first two and all reflection methods. If "stopAtPrivileged" is set,
78 UniquePtr<const Method*[]> methods(new const Method*[depth]);
79 dvmFillStackTraceArray(fp, methods.get(), depth);
85 const Method* meth = methods[i];
116 if (dvmIsReflectionMethod(methods[i])) {
119 Object* klass = (Object *)methods[i]->clazz;
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmGenerator.java 49 /** The set of methods to stub out. */
51 /** All classes to output as-is, except if they have native methods. */
65 /** A map { FQCN => set { method names } } of methods to rewrite as delegates.
82 // Create the map/set of methods to change to delegates
91 Set<String> methods = mDelegateMethods.get(className); local
92 if (methods == null) {
93 methods = new HashSet<String>();
94 mDelegateMethods.put(className, methods);
96 methods.add(methodName);
100 Set<String> methods = mDelegateMethods.get(className) local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_common.c 604 u16 methods = 0; local
607 /* Default to enabling methods based on build configuration */
608 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
610 methods |= WPS_CONFIG_VIRT_DISPLAY;
613 methods |= WPS_CONFIG_USBA;
616 methods |= WPS_CONFIG_NFC_INTERFACE;
620 methods |= WPS_CONFIG_USBA;
622 methods |= WPS_CONFIG_ETHERNET;
624 methods |= WPS_CONFIG_LABEL;
626 methods |= WPS_CONFIG_DISPLAY
    [all...]
  /dalvik/vm/
InitRefs.cpp 359 } methods[] = { local
384 for (i = 0; methods[i].method != NULL; i++) {
385 if (!initDirectMethodReference(methods[i].method, methods[i].className,
386 methods[i].name, methods[i].descriptor)) {
421 } methods[] = { local
436 for (i = 0; methods[i].offset != NULL; i++) {
437 if (!initVirtualMethodOffset(methods[i].offset, methods[i].className
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
FramePrinter.java 48 * Prints all the methods declared in the given class.
55 * Prints all the methods declared in the given class.
58 CtMethod[] methods = clazz.getDeclaredMethods(); local
59 for (int i = 0; i < methods.length; i++) {
60 print(methods[i]);
  /frameworks/support/volley/src/com/android/volley/toolbox/
HttpClientStack.java 26 import org.apache.http.client.methods.HttpGet;
27 import org.apache.http.client.methods.HttpPost;
28 import org.apache.http.client.methods.HttpUriRequest;
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
NativeCrypto.java 561 public static String[] checkEnabledCompressionMethods(String[] methods) {
562 if (methods == null) {
563 throw new IllegalArgumentException("methods == null");
565 if (methods.length < 1
566 && !methods[methods.length-1].equals(SUPPORTED_COMPRESSION_METHOD_NULL)) {
569 for (int i = 0; i < methods.length; i++) {
570 String method = methods[i];
572 throw new IllegalArgumentException("methods[" + i + "] == null");
580 return methods;
    [all...]
  /device/generic/goldfish/power/
power_qemu.c 59 .methods = &power_qemu_module_methods,
  /external/apache-http/src/org/apache/http/client/methods/
HttpEntityEnclosingRequestBase.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpEntityEnclosingRequestBase.java $
32 package org.apache.http.client.methods;
  /external/emma/core/java12/com/vladium/jcd/cls/
AbstractClassDefVisitor.java 53 public Object visit (final IMethodCollection methods, final Object ctx)
  /external/proguard/src/proguard/classfile/editor/
ClassMemberSorter.java 44 // Sort the methods.
45 Arrays.sort(programClass.methods, 0, programClass.u2methodsCount, this);
  /external/webkit/Source/WebCore/bridge/
runtime_method.h 39 Bindings::MethodList* methods() const { return _methodList.get(); } function in class:JSC::RuntimeMethod
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 120 static JNINativeMethod methods[] = { member in namespace:android
133 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/PathMeasure", methods,
134 sizeof(methods) / sizeof(methods[0]));
  /hardware/libhardware/include/hardware/
local_time_hal.h 105 return module->methods->open(module, LOCAL_TIME_HARDWARE_INTERFACE,
nfc.h 88 return module->methods->open(module, NFC_PN544_CONTROLLER,
  /hardware/libhardware/modules/nfc/
nfc_hw_example.c 69 .methods = &nfc_module_methods,
  /hardware/libhardware/modules/power/
power.c 56 .methods = &power_module_methods,
  /hardware/qcom/gps/loc_api/libloc_api/
gps.c 65 .methods = &gps_module_methods,
  /external/proguard/examples/annotations/
examples.pro 37 native <methods>;
40 # Preserve the special static methods that are required in all enumeration
  /external/proguard/examples/
applets.pro 29 native <methods>;
32 # Preserve the special static methods that are required in all enumeration

Completed in 3696 milliseconds

1 23 4 5 6 7 8 91011>>