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

<<11121314151617181920>>

  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 32 import org.apache.http.client.methods.HttpRequestBase;
  /external/wpa_supplicant_8/src/ap/
ap_config.c 592 wsc_enrollee.methods[0].method = eap_server_get_type(
593 "WSC", &wsc_enrollee.methods[0].vendor);
601 wsc_registrar.methods[0].method = eap_server_get_type(
602 "WSC", &wsc_registrar.methods[0].vendor);
  /frameworks/base/core/jni/android/graphics/
Matrix.cpp 361 static JNINativeMethod methods[] = { member in namespace:android
408 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/Matrix", methods,
409 sizeof(methods) / sizeof(methods[0]));
Path.cpp 267 static JNINativeMethod methods[] = { member in namespace:android
308 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/Path", methods,
309 sizeof(methods) / sizeof(methods[0]));
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
BandwidthTestUtil.java 28 import org.apache.http.client.methods.HttpPost;
  /hardware/libhardware/include/hardware/
audio.h 418 return module->methods->open(module, AUDIO_HARDWARE_INTERFACE,
  /hardware/msm7k/libgralloc-qsd8k/
gralloc.cpp 161 methods: &gralloc_module_methods
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ApiDetector.java 248 List methodList = classNode.methods;
312 // No need to check methods in this local class; we know they
376 * methods (for anonymous inner classes) or outer classes (for inner classes)
393 List methods = classNode.methods; local
394 for (Object m : methods) {
MathDetector.java 43 * Looks for usages of {@link java.lang.Math} methods which can be replaced with
44 * {@code android.util.FloatMath} methods to avoid casting.
56 "android.util.FloatMath class instead of java.lang.Math since you can call methods " +
86 List methodList = classNode.methods;
151 /** Methods on java.lang.Math that we want to find and suggest replacements for */
  /external/wpa_supplicant_8/src/eap_peer/
eap.c 756 struct eap_sm *sm, int id, const struct eap_method *methods,
774 for (m = methods; m; m = m->next) {
790 wpa_printf(MSG_DEBUG, "EAP: no more allowed methods");
808 const struct eap_method *methods, *m; local
813 methods = eap_peer_get_methods(&count);
814 if (methods == NULL)
817 return eap_sm_build_expanded_nak(sm, id, methods, count);
827 for (m = methods; m; m = m->next) {
843 wpa_hexdump(MSG_DEBUG, "EAP: allowed methods", start, found);
1778 const struct eap_method *methods, *m; local
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
loggrouper.js 15 // TODO(eroman): document these methods!
  /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/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ClassDefinition.java 291 writer.write("# direct methods\n");
307 writer.write("# virtual methods\n");
311 private void writeMethods(IndentingWriter writer, ClassDataItem.EncodedMethod[] methods) throws IOException {
313 for (ClassDataItem.EncodedMethod method: methods) {
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeisequalnode14.js 82 Note the localName for an Attr created with DOM Level 1 methods is null.
  /packages/apps/Mms/src/com/android/mms/transaction/
HttpUtils.java 25 import org.apache.http.client.methods.HttpGet;
26 import org.apache.http.client.methods.HttpPost;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
AST.stg 54 @genericParser.methods() ::= <<
55 /* AST genericParser.methods */
56 <@super.methods()>
85 /** Declaration of additional tree support methods - go in interface of parserHeaderFile() */
98 /** Definition of addition tree support methods - go in implementation of genericParser() */
139 /** the implementation of returnScope methods */
140 @returnScopeImplementation.methods() ::= <<
141 /* AST returnScope.methods */
  /external/chromium/chrome/browser/password_manager/
native_backend_gnome_x.cc 241 // should be posted to the UI thread to call one of its action methods, and then
251 // Action methods. These call gnome_keyring_* functions. Call from UI thread.
614 // methods against it because the caller waits for those methods to run.
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 822 assertEquals("Incorrect number of methods", 10,
824 assertEquals("Incorrect number of methods", 11,
828 Method[] methods = Cls2.class.getMethods(); local
829 for (Method method : methods) {
836 fail("getMethods() did not return all methods");
841 methods = Cls3.class.getMethods();
842 for (Method method : methods) {
849 fail("getMethods() did not return all methods");
854 methods = Cls3.class.getMethods();
855 for (Method method : methods) {
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 1366 private MethodDescriptor[] methods; field in class:Descriptors.ServiceDescriptor
    [all...]
  /external/smali/smali/src/main/antlr3/org/jf/smali/
smaliTreeWalker.g 151 : ^(I_CLASS_DEF header methods fields annotations)
157 if ( $methods.methodAnnotations != null ||
158 $methods.parameterAnnotations != null ||
165 $methods.methodAnnotations,
166 $methods.parameterAnnotations);
170 $methods.directMethods.size() != 0 || $methods.virtualMethods.size()!= 0) {
172 $methods.directMethods, $methods.virtualMethods);
278 methods returns[List<ClassDataItem.EncodedMethod> directMethods
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectStreamClass.java 498 * Normally constructors come before methods (because <init> <
548 Method[] methods = cl.getDeclaredMethods(); local
549 if (methods.length > 1) {
562 Arrays.sort(methods, methodComparator);
566 for (int i = 0; i < methods.length; i++) {
567 Method method = methods[i];
    [all...]
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 86 * a map. key: fully qualified class name, value: a list of test methods for
155 // then E, then VFE test methods.
261 System.out.println("collected " + testMethodsCnt + " test methods in " +
281 List<String> methods = entry.getValue();
282 Collections.sort(methods, new Comparator<String>() {
288 for (String method : methods) {
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 165 // methods for getting various nested tables:
299 // was set for an interface only if the interface declared methods
375 // descriptor separators (this is done for methods only, not for fields)
377 final IMethodCollection methods = getMethods (); local
380 final ConstructorDescriptor [] cds = new ConstructorDescriptor [methods.size ()];
387 final Method_info method = methods.get (i);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java 36 * <li>calls some of the authentication methods (e.g., {@link #authenticateWithPublicKey(String, File, String) authenticateWithPublicKey()}).</li>
153 * the remaining possible methods).
171 * methods, this method is just a wrapper for it and will
233 * the remaining possible methods).
287 * the remaining possible methods).
337 * Note 2: no matter which one of the authenticateWithXXX() methods
340 * authentication methods by the server. Please read RFC 4252 for the
347 * the remaining possible methods).
397 * the remaining possible methods).
1021 String methods[] = getRemainingAuthMethods(user); local
    [all...]
  /external/jhead/
main.c 725 static JNINativeMethod methods[] = { variable
734 * Register several native methods for one class.
756 * Register native methods for all classes we know about.
761 methods, NELEM(methods));

Completed in 1618 milliseconds

<<11121314151617181920>>