HomeSort by relevance Sort by last modified time
    Searched defs:method (Results 301 - 325 of 2092) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/text/src/android/text/method/cts/
DateKeyListenerTest.java 17 package android.text.method.cts;
21 import android.text.method.DateKeyListener;
25 * Test {@link android.text.method.DateKeyListener}.
112 * A mocked {@link android.text.method.DateKeyListener} for testing purposes.
115 * {@link android.text.method.DateKeyListener#getAcceptedChars()}.
DateTimeKeyListenerTest.java 17 package android.text.method.cts;
21 import android.text.method.DateTimeKeyListener;
26 * Test {@link android.text.method.DateTimeKeyListener}.
131 * A mocked {@link android.text.method.DateTimeKeyListener} for testing purposes.
134 * {@link android.text.method.DateTimeKeyListener#getAcceptedChars()}.
DialerKeyListenerTest.java 17 package android.text.method.cts;
22 import android.text.method.DialerKeyListener;
26 * Test {@link android.text.method.DialerKeyListener}.
79 * A mocked {@link android.text.method.DialerKeyListener} for testing purposes.
82 * {@link android.text.method.DialerKeyListener#getAcceptedChars()} and
83 * {@link android.text.method.DialerKeyListener#lookup(KeyEvent, Spannable)}.
EditorState.java 17 package android.text.method.cts;
QwertyKeyListenerTest.java 17 package android.text.method.cts;
23 import android.text.method.QwertyKeyListener;
24 import android.text.method.TextKeyListener.Capitalize;
TimeKeyListenerTest.java 17 package android.text.method.cts;
21 import android.text.method.TimeKeyListener;
125 * A mocked {@link android.text.method.TimeKeyListener} for testing purposes.
128 * {@link android.text.method.TimeKeyListener#getAcceptedChars()}.
TouchTest.java 17 package android.text.method.cts;
26 import android.text.method.Touch;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedMethod.java 31 * Class that representats a method of a class.
35 /** {@code non-null;} constant for the method */
36 private final CstMethodRef method; field in class:EncodedMethod
39 * {@code null-ok;} code for the method, if the method is neither
47 * @param method {@code non-null;} constant for the method
49 * @param code {@code null-ok;} code for the method, if it is neither
54 public EncodedMethod(CstMethodRef method, int accessFlags,
58 if (method == null)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 25 import com.android.dx.cf.iface.Method;
34 * Container for all the giblets that make up a concrete Java bytecode method.
35 * It implements {@link Method}, so it provides all the original access
37 * stuff extracted from the method's {@code Code} attribute.
39 public final class ConcreteMethod implements Method {
40 /** {@code non-null;} method being wrapped */
41 private final Method method; field in class:ConcreteMethod
50 * whether the class that this method is part of is defined with
67 * @param method {@code non-null;} the method to be based o
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedMethod.java 30 * Class that representats a method of a class.
34 /** {@code non-null;} constant for the method */
35 private final CstMethodRef method; field in class:EncodedMethod
38 * {@code null-ok;} code for the method, if the method is neither
46 * @param method {@code non-null;} constant for the method
48 * @param code {@code null-ok;} code for the method, if it is neither
53 public EncodedMethod(CstMethodRef method, int accessFlags,
57 if (method == null)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableExtractor.java 28 * a method. Stolen and retrofitted from
35 /** {@code non-null;} method being extracted from */
36 private final SsaMethod method; field in class:LocalVariableExtractor
38 /** {@code non-null;} block list for the method */
48 * Extracts out all the local variable information from the given method.
50 * @param method {@code non-null;} the method to extract from
53 public static LocalVariableInfo extract(SsaMethod method) {
54 LocalVariableExtractor lve = new LocalVariableExtractor(method);
59 * Constructs an instance. This method is private. Use {@link #extract}
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 96 String method="unknown"; local
100 method=caller.getMethodName();
103 logger.logp( level, cname, method, msg );
105 logger.logp( level, cname, method, msg, ex );
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 91 String method = getMethod(); local
101 return new BasicRequestLine(method, uritext, ver);
  /external/apache-http/src/org/apache/http/impl/client/
RequestWrapper.java 70 private String method; field in class:RequestWrapper
84 this.method = ((HttpUriRequest) request).getMethod();
94 this.method = requestLine.getMethod();
107 return this.method;
110 public void setMethod(final String method) {
111 if (method == null) {
112 throw new IllegalArgumentException("Method name may not be null");
114 this.method = method;
139 String method = getMethod() local
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicLineFormatter.java 206 final String method = reqline.getMethod(); local
210 int len = method.length() + 1 + uri.length() + 1 +
214 buffer.append(method);
BasicLineParser.java 329 String method = buffer.substringTrimmed(i, blank); local
351 return createRequestLine(method, uri, ver);
363 * @param method the request method
369 protected RequestLine createRequestLine(final String method,
372 return new BasicRequestLine(method, uri, ver);
  /external/boringssl/src/crypto/x509v3/
v3_conf.c 77 static X509_EXTENSION *do_ext_i2d(const X509V3_EXT_METHOD *method, int ext_nid,
120 const X509V3_EXT_METHOD *method; local
129 if (!(method = X509V3_EXT_get_nid(ext_nid)))
135 if (method->v2i)
145 ext_struc = method->v2i(method, ctx, nval);
150 else if(method->s2i)
152 if(!(ext_struc = method->s2i(method, ctx, value))) return NULL;
154 else if(method->r2i
219 const X509V3_EXT_METHOD *method; local
    [all...]
v3_lib.c 197 const X509V3_EXT_METHOD *method; local
200 if(!(method = X509V3_EXT_get(ext))) return NULL;
202 if(method->it) return ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it));
203 return method->d2i(NULL, &p, ext->value->length);
  /external/boringssl/src/ssl/
ssl_ecdh.c 55 EC_GROUP *group = EC_GROUP_new_by_curve_name(ctx->method->nid);
111 EC_GROUP *group = EC_GROUP_new_by_curve_name(ctx->method->nid);
330 const SSL_ECDH_METHOD *method = method_from_curve_id(curve_id); local
331 if (method == NULL) {
334 return method->name;
338 const SSL_ECDH_METHOD *method = method_from_nid(nid); local
339 if (method == NULL) {
342 *out_curve_id = method->curve_id;
349 const SSL_ECDH_METHOD *method = method_from_curve_id(curve_id); local
350 if (method == NULL)
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
MicrobenchmarkAllocationWorker.java 23 import java.lang.reflect.Method;
31 * The {@link Worker} for the {@code AllocationInstrument}. This class invokes the benchmark method
42 * up in order for the method to be determined to be deterministic.
58 @BenchmarkMethod Method method, AllocationRecorder recorder, Random random) {
59 super(benchmark, method);
65 // do some initial measurements and throw away the results. this warms up the bootstrap method
66 // itself and also the method invocation path for calling that method.
68 // warm up the loop in the benchmark method
    [all...]
  /external/curl/lib/
content_encoding.c 201 int method, flags; local
211 method = data[2];
214 if(method != Z_DEFLATED || (flags & RESERVED) != 0) {
215 /* Can't handle this compression method or unknown flag */
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MapKeyGenerator.java 158 for (ExecutableElement method : methodsIn(annotationElement.getEnclosedElements())) {
159 TRAVERSE_NESTED_ANNOTATIONS.visit(method.getReturnType(), annotationElements);
  /external/dbus/dbus/
dbus-server-socket.c 527 const char *method; local
531 method = dbus_address_entry_get_method (entry);
533 if (strcmp (method, "tcp") == 0 || strcmp (method, "nonce-tcp") == 0)
546 family, error, strcmp (method, "nonce-tcp") == 0 ? TRUE : FALSE);
  /external/deqp/framework/delibs/deutil/
deFile.c 315 DWORD method = 0; local
321 case DE_FILEPOSITION_BEGIN: method = FILE_BEGIN; break;
322 case DE_FILEPOSITION_END: method = FILE_END; break;
323 case DE_FILEPOSITION_CURRENT: method = FILE_CURRENT; break;
329 return SetFilePointer(file->handle, lowBits, &highBits, method) != INVALID_SET_FILE_POINTER;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
EncodedMethod.java 31 * Class that representats a method of a class.
35 /** {@code non-null;} constant for the method */
36 private final CstMethodRef method; field in class:EncodedMethod
39 * {@code null-ok;} code for the method, if the method is neither
47 * @param method {@code non-null;} constant for the method
49 * @param code {@code null-ok;} code for the method, if it is neither
54 public EncodedMethod(CstMethodRef method, int accessFlags,
58 if (method == null)
    [all...]

Completed in 508 milliseconds

<<11121314151617181920>>