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

1 23 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/editor/
ClassEditor.java 193 Method[] methods = targetClass.methods; local
196 if (methods.length <= methodsCount)
198 targetClass.methods = new ProgramMethod[methodsCount+1];
199 System.arraycopy(methods, 0,
200 targetClass.methods, 0,
202 methods = targetClass.methods;
211 methods[targetClass.u2methodsCount++] = method;
222 Method[] methods = targetClass.methods local
243 Method[] methods = targetClass.methods; local
    [all...]
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
TestCaseCollector.java 88 Method[] methods = clazz.getMethods(); local
89 for (Method method : methods) {
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 146 static JNINativeMethod methods[] = { member in namespace:android
159 return RegisterMethodsOrDie(env, "android/graphics/PathMeasure", methods, NELEM(methods));
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java 132 Map<String, Method> methods = Maps.newHashMap(); local
137 if (!methods.containsKey(signature)) {
139 methods.put(signature, method);
147 if (!methods.containsKey(signature)) {
149 methods.put(signature, method);
154 return methods;
192 * we can find even protected/private methods. Can return <code>null</code> if no method with
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ConnectReqTestCase.java 50 Method[] methods = WifiP2pManager.class.getMethods(); local
51 for (int i = 0; i < methods.length; i++) {
52 if (methods[i].getName().equals("deletePersistentGroup")) {
55 methods[i].invoke(mP2pMgr, mChannel, netid, null);
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_InstanceNonce.c 309 static JNINativeMethod methods[] = { variable
352 methods, sizeof(methods) / sizeof(JNINativeMethod));
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 168 * Returns the methods with {@code memberNameIndex} declared by {@code
174 Set<Integer> methods = new HashSet<Integer>(); local
179 methods.add(methodIndex);
183 return methods;
  /dalvik/dx/src/com/android/multidex/
MainDexListBuilder.java 170 MethodList methods = clazz.getMethods(); local
171 for (int i = 0; i<methods.size(); i++) {
172 if (hasRuntimeVisibleAnnotation(methods.get(i))) {
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpRequestBase.java $
32 package org.apache.http.client.methods;
  /external/emma/core/java12/com/vladium/emma/data/
ClassDescriptor.java 31 final MethodDescriptor [] methods)
37 if (methods == null)
38 throw new IllegalArgumentException ("null input: methods");
42 for (int m = 0; m < methods.length; ++ m)
44 $assert.ASSERT (methods [m] != null, "methods [" + m + "] = null (length = " + methods.length + ")");
52 m_methods = methods; // TODO: defensive copy?
57 final MethodDescriptor method = methods [m];
180 final MethodDescriptor [] methods = new MethodDescriptor [length] local
207 final MethodDescriptor [] methods = cls.m_methods; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
ReportDataModel.java 104 final MethodDescriptor [] methods = cls.getMethods (); local
106 // TODO: handle edge case when all methods of a class have METHOD_NO_BLOCK_DATA set
107 for (int m = 0; m < methods.length; ++ m)
109 final MethodDescriptor method = methods [m];
  /external/javassist/src/main/javassist/
SerialVersionUID.java 85 CtMethod[] methods = clazz.getDeclaredMethods(); local
90 if (methods.length > 0)
156 // methods.
157 Arrays.sort(methods, new Comparator() {
170 for (int i = 0; i < methods.length; i++) {
171 CtMethod method = methods[i];
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 108 CtMethod methods[] = clazz.getDeclaredMethods(); local
109 if (methods.length > 0) {
113 for (int i = 0; i < methods.length; i++) {
114 CtClass returnType = methods[i].getReturnType();
115 addMemberValue(methods[i].getName(),
  /external/javassist/src/main/javassist/tools/reflect/
Metaobject.java 48 protected Method[] methods; field in class:Metaobject
62 methods = classmetaobject.getReflectiveMethods();
73 methods = null;
85 methods = classmetaobject.getReflectiveMethods();
112 methods = classmetaobject.getReflectiveMethods();
123 String mname = methods[identifier].getName();
140 return methods[identifier].getParameterTypes();
148 return methods[identifier].getReturnType();
227 return methods[identifier].invoke(getObject(), args);
  /external/junit/src/org/junit/runners/
ParentRunner.java 46 * {@code @BeforeClass} and {@code @AfterClass} methods,
128 List<FrameworkMethod> methods= getTestClass().getAnnotatedMethods(annotation); local
130 for (FrameworkMethod eachTestMethod : methods)
143 * <li>ALWAYS run all non-overridden {@code @BeforeClass} methods on this class
146 * <li>ALWAYS run all non-overridden {@code @AfterClass} methods on this class
147 * and superclasses before any of the previous steps; all AfterClass methods are
149 * necessary, with exceptions from AfterClass methods into a
164 * Returns a {@link Statement}: run all non-overridden {@code @BeforeClass} methods on this class
176 * Returns a {@link Statement}: run all non-overridden {@code @AfterClass} methods on this class
177 * and superclasses before executing {@code statement}; all AfterClass methods ar
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
InterfaceMaker.java 58 * since interface methods are by definition abstract and public.
67 * Add all the public methods in the specified class.
68 * Methods from superclasses are included, except for methods declared in the base
70 * @param class the class containing the methods to add to the interface
73 Method[] methods = clazz.getMethods(); local
74 for (int i = 0; i < methods.length; i++) {
75 Method m = methods[i];
MixinEmitter.java 63 Method[] methods = getMethods(classes[i]); local
64 for (int j = 0; j < methods.length; j++) {
65 if (unique.add(MethodWrapper.create(methods[j]))) {
66 MethodInfo method = ReflectUtils.getMethodInfo(methods[j]);
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers_wps.c 401 * wpas_dbus_getter_config_methods - Get current WPS configuration methods
415 char *methods = wpa_s->conf->config_methods; local
417 if (methods == NULL)
418 methods = "";
420 &methods, error);
425 * wpas_dbus_setter_config_methods - Set WPS configuration methods
431 * Setter for "ConfigMethods" property. Sets the methods string, apply such
439 char *methods, *new_methods; local
442 &methods))
445 new_methods = os_strdup(methods);
    [all...]
  /frameworks/base/cmds/ime/src/com/android/commands/ime/
Ime.java 105 List<InputMethodInfo> methods; local
108 methods = mImm.getEnabledInputMethodList();
116 methods = mImm.getInputMethodList();
124 if (methods != null) {
126 for (int i=0; i<methods.size(); i++) {
127 InputMethodInfo imi = methods.get(i);
238 System.err.println("The list command prints all enabled input methods. Use");
239 System.err.println("the -a option to see all input methods. Use");
  /frameworks/base/core/jni/
android_opengl_EGLExt.cpp 152 static JNINativeMethod methods[] = { variable
160 err = android::AndroidRuntime::registerNativeMethods(_env, classPathName, methods, NELEM(methods));
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 30 * Tests that native delegate classes implement all the required methods.
33 * have their native methods reimplemented through a delegate.
35 * Since the reimplemented methods are not native anymore, we look for the annotation
57 final String[] methods = CreateInfo.DELEGATE_METHODS; local
59 for (String methodName : methods) {
87 // loop on the methods of the original class, and for the ones that are annotated
93 // look for methods that are delegated: they have the LayoutlibDelegate annotation
126 // check the return type of the methods match.
164 // This looks for all methods in the delegate class, and if they have the
171 // look for methods that are delegates: they have the LayoutlibDelegate annotatio
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmGenerator.java 51 /** The set of methods to stub out. */
53 /** All classes to output as-is, except if they have native methods. */
71 /** A map { FQCN => set { method names } } of methods to rewrite as delegates.
77 /** Methods to inject. FQCN of class in which method should be injected => runnable that does
112 // Create the map/set of methods to change to delegates
118 Set<String> methods = mDelegateMethods.get(className); local
119 if (methods == null) {
120 methods = new HashSet<String>();
121 mDelegateMethods.put(className, methods);
123 methods.add(DelegateClassAdapter.ALL_NATIVES)
    [all...]
  /hardware/libhardware/include/hardware/
hardware.h 141 /** Modules methods */
142 struct hw_module_methods_t* methods; member in struct:hw_module_t
165 * followed by module specific public methods and attributes.
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
methodobject.h 11 not Python methods in user-defined classes. See classobject.h
61 the construction of methods for a class. These cannot be used for
74 PyMethodDef *methods; /* Methods of this type */ member in struct:PyMethodChain
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
methodobject.h 11 not Python methods in user-defined classes. See classobject.h
61 the construction of methods for a class. These cannot be used for
74 PyMethodDef *methods; /* Methods of this type */ member in struct:PyMethodChain

Completed in 814 milliseconds

1 23 4 5 6 7 8 91011>>