HomeSort by relevance Sort by last modified time
    Searched defs:method (Results 351 - 375 of 1414) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 64 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
68 // method.getName(clazz).equals("abc");
72 // Catch any unexpected exceptions from the actual visiting method.
76 visitCodeAttribute0(clazz, method, codeAttribute);
82 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
87 method.accept(clazz, new ClassPrinter());
95 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/
RobolectricTestRunner.java 9 import java.lang.reflect.Method;
94 * into "do nothing" classes which proxy all method calls to shadow classes, just like it does
313 @Override protected Statement methodBlock(final FrameworkMethod method) {
314 setupI18nStrictState(method.getMethod(), robolectricConfig);
315 lookForLocaleAnnotation( method.getMethod(), robolectricConfig );
321 delegate.internalBeforeTest(method.getMethod());
323 final Statement statement = super.methodBlock(method);
330 delegate.internalAfterTest(method.getMethod());
340 * Called before each test method is run. Sets up the simulation of the Android runtime environment.
342 @Override public void internalBeforeTest(final Method method)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DumpVtables.java 40 import org.jf.dexlib2.iface.Method;
115 List<Method> methods = classProto.getVtable();
119 Method method = methods.get(i); local
121 String methodString = i + ":" + method.getDefiningClass() + "->" + method.getName() + "(";
122 for (CharSequence parameter: method.getParameterTypes()) {
125 methodString += ")" + method.getReturnType() + "\n";
MethodAnalyzer.java 65 * there's no need to perform the verification multiple times, so we wait until the method is fully analyzed and then
68 * Before calling the analyze() method, you must have initialized the ClassPath by calling
72 @Nonnull private final Method method; field in class:MethodAnalyzer
95 public MethodAnalyzer(@Nonnull ClassPath classPath, @Nonnull Method method,
100 this.method = method;
102 MethodImplementation methodImpl = method.getImplementation();
104 throw new IllegalArgumentException("The method has no implementation")
141 Method method = this.method; local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DebugInfo.java 109 DexBackedMethod method = methodImpl.method; local
115 new ParameterIterator(method.getParameterTypes(),
116 method.getParameterAnnotations(),
122 if (!AccessFlags.STATIC.isSet(methodImpl.method.getAccessFlags())) {
126 @Override public String getType() { return methodImpl.method.getDefiningClass(); }
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
CommandLine.java 46 options.put("--method=", Boolean.FALSE); // output method
61 Main method. Processes specified files or standard input.
219 x.setOutputProperty(XMLWriter.METHOD, "html");
222 if (hasOption(options, "--method=")) {
223 String method = (String)options.get("--method="); local
224 if (method != null) {
225 x.setOutputProperty(XMLWriter.METHOD, method);
    [all...]
  /external/vogar/src/vogar/target/junit/
Junit3.java 21 import java.lang.reflect.Method;
38 private static final Method setUp;
39 private static final Method tearDown;
40 private static final Method runTest;
61 Method suiteMethod = testClass.getMethod("suite");
68 for (Method m : testClass.getMethods()) {
93 * @param args if non-empty, this is the list of test method names.
120 for (Method m : testClass.getMethods()) {
147 Method suiteMethod = testClass.getMethod("suite");
211 protected final Method method field in class:Junit3.VogarJUnitTest
294 super(testCase.getClass(), method); local
    [all...]
  /external/webp/src/enc/
webpenc.c 72 // Method | 0 | 1 | 2 | 3 |(4)| 5 | 6 |
95 const int method = config->method; local
97 enc->method_ = method;
98 enc->rd_opt_level_ = (method >= 6) ? RD_OPT_TRELLIS_ALL
99 : (method >= 5) ? RD_OPT_TRELLIS
100 : (method >= 3) ? RD_OPT_BASIC
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 234 * @eap_type: EAP method used in Phase 1 (EAP_TYPE_TLS/PEAP/TTLS/FAST)
333 * @eap_type: EAP method used in Phase 1 (EAP_TYPE_TLS/PEAP/TTLS/FAST)
338 * (client/server random and method type).
629 * tls_connection_established() returns 1, EAP method specific decrypting of
791 * for continuation of EAP method processing. The caller is responsible for
977 * eap_peer_select_phase2_methods - Select phase 2 EAP method
984 * This function is used to parse EAP method list and select allowed methods
994 u32 method; local
1020 method = eap_get_phase2_type(start, &vendor);
1021 if (vendor == EAP_VENDOR_IETF && method == EAP_TYPE_NONE)
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_pd.c 99 prov->method = config_methods;
378 u32 session_id, u16 method,
394 tmp->method = method;
616 u16 method = p2p->p2ps_prov->method; local
629 * our method is consistent with original
632 if (method & WPS_CONFIG_DISPLAY)
633 method = WPS_CONFIG_KEYPAD;
634 else if (method & WPS_CONFIG_KEYPAD
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.c 237 const char *method; local
239 method = dbus_message_get_member(message);
269 if (os_strncmp(WPA_DBUS_PROPERTIES_GET, method,
286 const char *method; local
288 method = dbus_message_get_member(message);
291 if (!os_strncmp(WPA_DBUS_PROPERTIES_GET, method,
293 !os_strncmp(WPA_DBUS_PROPERTIES_SET, method,
295 !os_strncmp(WPA_DBUS_PROPERTIES_GETALL, method,
306 if (!os_strncmp(WPA_DBUS_PROPERTIES_GETALL, method,
324 const char *method; local
377 const char *method; local
    [all...]
dbus_old.c 143 const char *method = dbus_message_get_member(message); local
150 if (!strcmp(method, "set"))
152 else if (!strcmp(method, "enable"))
154 else if (!strcmp(method, "disable"))
184 /* Dispatch the method call against the scanned bssid */
207 const char *method = dbus_message_get_member(message); local
220 msg_interface, method, path,
240 /* A method for one of this interface's configured networks */
249 /* A method for one of this interface's scanned BSSIDs */
252 /* A method for an interface only. *
325 const char *method; local
    [all...]
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 28 import java.lang.reflect.Method;
41 * Injects instrumentation into this test case. This method is
51 * Injects instrumentation into this test case. This method is
73 * Utility method for launching an activity.
101 * Utility method for launching an activity with a specific Intent.
127 * Note, in most cases it is simpler to annotate the test method with
128 * {@link android.test.UiThreadTest}, which will run the entire test method on the UI thread.
129 * Use this method if you need to switch in and out of the UI thread to perform your test.
131 * @param r runnable containing test code in the {@link Runnable#run()} method
157 Method method = null local
    [all...]
  /frameworks/base/core/java/android/text/method/
ArrowKeyMovementMethod.java 17 package android.text.method;
30 * A movement method that provides cursor movement and selection.
LinkMovementMethod.java 17 package android.text.method;
30 * A movement method that traverses links in the text buffer and scrolls if necessary.
MetaKeyKeyListener.java 17 package android.text.method;
170 * is stored into the text buffer. This method retrieves the meta state
268 * Call this method after you handle a keypress so that the meta
305 * Call this if you are a method that ignores the locked meta state
429 * Call this if you are a method that ignores the locked meta state
512 * Call this method after you handle a keypress so that the meta
MultiTapKeyListener.java 17 package android.text.method;
24 import android.text.method.TextKeyListener.Capitalize;
221 for (Object method : methods) {
222 content.removeSpan(method);
PasswordTransformationMethod.java 17 package android.text.method;
TextKeyListener.java 17 package android.text.method;
Touch.java 17 package android.text.method;
  /frameworks/base/core/java/android/view/
ViewDebug.java 46 import java.lang.reflect.Method;
85 @Target({ ElementType.FIELD, ElementType.METHOD })
89 * When resolveId is true, and if the annotated field/method return value
270 @Target({ ElementType.FIELD, ElementType.METHOD })
312 private static HashMap<Class<?>, Method[]> mCapturedViewMethodsForClasses = null;
328 private static HashMap<Class<?>, Method[]> sMethodsForClasses;
382 * @deprecated This method is now unused and invoking it is a no-op
390 * @deprecated This method is now unused and invoking it is a no-op
398 * @deprecated This method is now unused and invoking it is a no-op
406 * @deprecated This method is now unused and invoking it is a no-o
1168 final Method method = methods[i]; local
1495 final Method method = methods[i]; local
1522 final Method method = methods[i]; local
    [all...]
  /frameworks/base/libs/androidfw/
Asset.cpp 191 int method; local
214 scanResult = ZipUtils::examineGzip(fp, &method, &uncompressedLen,
225 result = pAsset->openChunk(fd, offset, method, uncompressedLen,
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessMethodAdapters.java 85 if (element.getKind() != ElementKind.METHOD ||
161 L.e("@BindingAdapter %s is applied to a method that has two parameters, the " +
170 L.e("@BindingAdapter %s is applied to a method that doesn't take a View subclass as the " +
197 final String method = bindingMethod.method(); local
205 store.addRenamedMethod(attribute, type, method, (TypeElement) element);
214 if (element.getKind() != ElementKind.METHOD ||
225 "@BindingConversion method should have one parameter: " + element);
230 "@BindingConversion method must return a value: " + element);
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTest.java 18 import java.lang.reflect.Method;
168 Method method = File.class.getMethod("toURI", (Class<?>) null); local
169 Object uri = method.invoke(tempFile, (Class<?>) null);
275 * This method is called when a mutation is reported for a document that
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ProxyTest.java 26 import java.lang.reflect.Method;
36 * When multiple interfaces define the same method, the list of thrown
38 * other method:
51 public float method(float _number0, float _number1); method in interface:ProxyTest.Broken1
55 public Object invoke(Object proxy, Method method, Object[] args)
104 public Object invoke(Object proxy, Method method, Object[] args)
122 public Object invoke(Object proxy, Method method, Object[] args
    [all...]

Completed in 442 milliseconds

<<11121314151617181920>>