HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 451 - 475 of 4969) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
PointTest.java 40 method = "Point",
45 method = "Point",
50 method = "Point",
70 method = "set",
82 method = "equals",
93 method = "equals",
106 method = "hashCode",
117 method = "toString",
127 method = "offset",
139 method = "negate"
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/gsm/cts/
GsmCellLocationTest.java 38 method = "GsmCellLocation",
43 method = "GsmCellLocation",
48 method = "getCid",
53 method = "getLac",
58 method = "setLacAndCid",
63 method = "setStateInvalid",
68 method = "hashCode",
73 method = "toString",
78 method = "fillInNotifierBundle",
83 method = "equals"
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableExtractor.java 24 * a method.
27 /** {@code non-null;} method being extracted from */
28 private final RopMethod method; field in class:LocalVariableExtractor
30 /** {@code non-null;} block list for the method */
40 * Extracts out all the local variable information from the given method.
42 * @param method {@code non-null;} the method to extract from
45 public static LocalVariableInfo extract(RopMethod method) {
46 LocalVariableExtractor lve = new LocalVariableExtractor(method);
51 * Constructs an instance. This method is private. Use {@link #extract}
    [all...]
  /dalvik/vm/oo/
Class.h 142 * Update method's "nativeFunc" and "insns" after native method resolution.
144 void dvmSetNativeFunc(const Method* method, DalvikBridgeFunc func,
148 * Set the method's "registerMap" field.
150 void dvmSetRegisterMap(Method* method, const RegisterMap* pMap);
153 * Make a method's DexCode (which includes the bytecode) read-write or
158 void dvmMakeCodeReadWrite(Method* meth);
159 void dvmMakeCodeReadOnly(Method* meth)
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
RequestWrapper.java 65 private String method; field in class:RequestWrapper
79 this.method = ((HttpUriRequest) request).getMethod();
89 this.method = requestLine.getMethod();
102 return this.method;
105 public void setMethod(final String method) {
106 if (method == null) {
107 throw new IllegalArgumentException("Method name may not be null");
109 this.method = method;
134 String method = getMethod() local
    [all...]
  /external/openssl/crypto/bio/
bio_cb.c 84 BIO_snprintf(p,p_maxlen,"Free - %s\n",bio->method->name);
87 if (bio->method->type & BIO_TYPE_DESCRIPTOR)
89 bio->num,argi,bio->method->name,bio->num);
92 bio->num,argi,bio->method->name);
95 if (bio->method->type & BIO_TYPE_DESCRIPTOR)
97 bio->num,argi,bio->method->name,bio->num);
100 bio->num,argi,bio->method->name);
103 BIO_snprintf(p,p_maxlen,"puts() - %s\n",bio->method->name);
106 BIO_snprintf(p,p_maxlen,"gets(%d) - %s\n",argi,bio->method->name);
109 BIO_snprintf(p,p_maxlen,"ctrl(%d) - %s\n",argi,bio->method->name)
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
StoringInvocationUnit.java 112 generalizeMethodParameterValue((Method)referencedMember,
121 Method method,
126 generalizeMethodReturnValue(method, value);
171 private static void generalizeMethodParameterValue(Method method, int parameterIndex, Value value)
173 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
181 public static Value getMethodParameterValue(Method method, int parameterIndex)
183 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
TypedArrayTest.java 83 method = "getBoolean",
88 method = "getColor",
93 method = "getColorStateList",
98 method = "getDimension",
103 method = "getDimensionPixelOffset",
108 method = "getDimensionPixelSize",
113 method = "getDrawable",
118 method = "getFloat",
123 method = "getFraction",
128 method = "getIndex"
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
DatagramSocketImplTest.java 44 method = "bind",
50 method = "close",
56 method = "create",
62 method = "getTimeToLive",
68 method = "getTTL",
74 method = "join",
80 method = "joinGroup",
86 method = "leave",
92 method = "leaveGroup",
98 method = "peek"
    [all...]
HttpRetryExceptionTest.java 36 method = "HttpRetryException",
42 method = "responseCode",
48 method = "getReason",
69 method = "HttpRetryException",
75 method = "getLocation",
81 method = "responseCode",
87 method = "getReason",
  /external/proguard/src/proguard/classfile/visitor/
ClassCleaner.java 117 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
125 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
129 codeAttribute.exceptionsAccept(clazz, method, this);
130 codeAttribute.attributesAccept(clazz, method, this);
134 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
138 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
142 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute
    [all...]
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/
JDiffClassDescriptionTest.java 139 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("staticMethod", Modifier.STATIC | Modifier.PUBLIC, "void"); local
140 clz.addMethod(method);
142 assertEquals(method.toSignatureString(), "public static void staticMethod()");
146 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("syncMethod", Modifier.SYNCHRONIZED | Modifier.PUBLIC, "void"); local
147 clz.addMethod(method);
149 assertEquals(method.toSignatureString(), "public synchronized void syncMethod()");
153 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("packageProtectedMethod", 0, "boolean"); local
154 clz.addMethod(method);
156 assertEquals(method.toSignatureString(), "boolean packageProtectedMethod()");
160 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("privateMethod", Modifier.PRIVATE, "void") local
167 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("protectedMethod", Modifier.PROTECTED, "java.lang.String"); local
174 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("throwsMethod", Modifier.PUBLIC, "void"); local
183 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("nativeMethod", Modifier.PUBLIC | Modifier.NATIVE, "void"); local
285 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("syncMethod", Modifier.PUBLIC, "void"); local
294 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("notSyncMethod", Modifier.SYNCHRONIZED | Modifier.PUBLIC, "void"); local
303 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("nativeMethod", Modifier.PUBLIC, "void"); local
312 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("notNativeMethod", Modifier.NATIVE | Modifier.PUBLIC, "void"); local
347 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("finalMethod", Modifier.PUBLIC | Modifier.FINAL, "void"); local
360 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("finalMethod", Modifier.PUBLIC, "void"); local
372 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("nonFinalMethod", local
389 JDiffClassDescription.JDiffMethod method = new JDiffClassDescription.JDiffMethod("finalMethod", Modifier.PUBLIC, "void"); local
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
DatePickerDialogTest.java 67 method = "DatePickerDialog",
73 method = "onSaveInstanceState",
78 method = "onClick",
83 method = "onDateChanged",
88 method = "onRestoreInstanceState",
93 method = "show",
98 method = "updateDate",
110 method = "DatePickerDialog",
115 method = "onSaveInstanceState",
120 method = "onClick"
    [all...]
SearchManagerTest.java 45 method = "startSearch",
50 method = "stopSearch",
55 method = "isVisible",
68 method = "setOnDismissListener",
73 method = "onDismiss",
96 method = "setOnCancelListener",
101 method = "onCancel",
  /cts/tests/tests/util/src/android/util/cts/
LogTest.java 39 method = "d",
45 method = "d",
51 method = "e",
57 method = "e",
63 method = "getStackTraceString",
69 method = "i",
75 method = "i",
81 method = "isLoggable",
87 method = "println",
93 method = "v"
    [all...]
SparseArrayTest.java 37 method = "SparseArray",
42 method = "append",
47 method = "clear",
52 method = "delete",
57 method = "remove",
62 method = "get",
67 method = "get",
72 method = "indexOfKey",
77 method = "indexOfValue",
82 method = "keyAt"
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
StringWriterTest.java 40 method = "StringWriter",
46 method = "StringWriter",
62 method = "close",
66 // Test for method void java.io.StringWriter.close()
80 method = "flush",
84 // Test for method void java.io.StringWriter.flush()
96 method = "getBuffer",
100 // Test for method java.lang.StringBuffer
115 method = "toString",
119 // Test for method java.lang.String java.io.StringWriter.toString(
    [all...]
StringBufferInputStreamTest.java 38 method = "StringBufferInputStream",
47 // Test for method java.io.StringBufferInputStream(java.lang.String)
56 method = "available",
60 // Test for method int java.io.StringBufferInputStream.available()
71 method = "read",
75 // Test for method int java.io.StringBufferInputStream.read()
88 method = "read",
92 // Test for method int java.io.StringBufferInputStream.read()
120 method = "read",
124 // Test for method int java.io.StringBufferInputStream.read(byte []
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/
HandlerBaseTest.java 45 method = "resolveEntity",
58 method = "notationDecl",
67 method = "unparsedEntityDecl",
76 method = "setDocumentLocator",
85 method = "startDocument",
98 method = "endDocument",
111 method = "startElement",
124 method = "endElement",
137 method = "characters",
150 method = "ignorableWhitespace"
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
DatabaseMetaDataNotSupportedTest.java 138 method = "allProceduresAreCallable",
154 method = "allTablesAreSelectable",
204 method = "dataDefinitionCausesTransactionCommit",
218 method = "dataDefinitionIgnoredInTransactions",
232 method = "deletesAreDetected",
246 method = "doesMaxRowSizeIncludeBlobs",
262 method = "getAttributes",
276 method = "getCatalogs",
298 method = "getCatalogSeparator",
312 method = "getCatalogTerm"
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorTest.java 36 method = "getType",
41 method = "getName",
46 method = "getPower",
51 method = "getResolution",
56 method = "getVendor",
61 method = "getVersion",
66 method = "getMaximumRange",
  /cts/tests/tests/location/src/android/location/cts/
GpsSatelliteTest.java 50 method = "getAzimuth",
61 method = "getElevation",
72 method = "getPrn",
84 method = "getSnr",
96 method = "hasAlmanac",
108 method = "hasEphemeris",
120 method = "usedInFix",
  /cts/tests/tests/view/src/android/view/cts/
DisplayTest.java 36 method = "getDisplayId",
41 method = "getHeight",
46 method = "getWidth",
52 method = "getOrientation",
57 method = "getMetrics",
62 method = "getPixelFormat",
67 method = "getRefreshRate",
  /dalvik/libcore/security/src/test/java/tests/security/spec/
MGF1ParameterSpecTest.java 58 method = "MGF1ParameterSpec",
78 method = "MGF1ParameterSpec",
91 * Test for <code>getDigestAlgorithm</code> method<br>
98 method = "getDigestAlgorithm",
107 * Test for public static fields and <code>getDigestAlgorithm</code> method<br>
115 method = "!field SHA1",
121 method = "!field SHA256",
127 method = "!field SHA384",
133 method = "!field SHA512",
  /external/proguard/src/proguard/optimize/peephole/
UnreachableExceptionRemover.java 72 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
75 codeAttribute.exceptionsAccept(clazz, method, this);
86 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
89 method,
99 extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
111 Method method,
127 method,
    [all...]

Completed in 383 milliseconds

<<11121314151617181920>>