Searched refs:method (Results 276 - 300 of 1435) sorted by relevance

<<11121314151617181920>>

/dalvik/libcore/security/src/test/java/tests/targets/security/
H A DSignatureTest.java67 method = "getInstance",
72 method = "initSign",
77 method = "update",
82 method = "sign",
87 method = "initVerify",
92 method = "verify",
97 method = "method",
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DFilterReaderTest.java89 method = "FilterReader",
112 method = "close",
126 method = "mark",
140 method = "markSupported",
154 method = "read",
168 method = "read",
183 method = "read",
221 method = "ready",
235 method = "reset",
249 method
[all...]
H A DLineNumberInputStreamTest.java33 method = "LineNumberInputStream",
56 method = "available",
78 method = "getLineNumber",
82 // Test for method int java.io.LineNumberInputStream.getLineNumber()
104 method = "mark",
108 // Test for method void java.io.LineNumberInputStream.mark(int)
125 method = "read",
156 method = "read",
179 method = "read",
213 method
[all...]
H A DObjectOutputStreamPutFieldTest.java44 * from within the private {@code writeObject(ObjectOutputStream)} method of a
81 method = "put",
87 method = "put",
93 method = "put",
99 method = "put",
105 method = "put",
111 method = "put",
117 method = "put",
123 method = "put",
129 method
[all...]
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
H A DSelectorProviderTest.java48 method = "SelectorProvider",
54 method = "provider",
60 method = "inheritedChannel",
66 method = "openDatagramChannel",
72 method = "openPipe",
78 method = "openServerSocketChannel",
84 method = "openSocketChannel",
90 method = "openSelector",
114 method = "provider",
136 method
[all...]
/dalvik/libcore/security/src/test/java/tests/security/acl/
H A DIAclEntryTest.java57 method = "addPermission",
63 method = "checkPermission",
69 method = "removePermission",
96 method = "getPrincipal",
102 method = "setPrincipal",
127 method = "setNegativePermissions",
133 method = "isNegative",
154 method = "permissions",
183 method = "toString",
202 method
[all...]
/dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
H A DLocatorImplTest.java42 method = "LocatorImpl",
56 method = "LocatorImpl",
87 method = "setPublicId",
92 method = "getPublicId",
109 method = "setSystemId",
114 method = "getSystemId",
131 method = "setLineNumber",
136 method = "getLineNumber",
153 method = "setColumnNumber",
158 method
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DBlockAddresses.java27 * the blocks of a particular method. Each block has a corresponding
47 * @param method {@code non-null;} the method to have block addresses for
49 public BlockAddresses(RopMethod method) { argument
50 BasicBlockList blocks = method.getBlocks();
57 setupArrays(method);
126 private void setupArrays(RopMethod method) { argument
127 BasicBlockList blocks = method.getBlocks();
/dalvik/dx/src/com/android/dx/dex/file/
H A DMethodIdsSection.java32 * {@code non-null;} map from method constants to {@link
95 * @param method {@code non-null;} the reference to intern
98 public MethodIdItem intern(CstBaseMethodRef method) { argument
99 if (method == null) {
100 throw new NullPointerException("method == null");
105 MethodIdItem result = methodIds.get(method);
108 result = new MethodIdItem(method);
109 methodIds.put(method, result);
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DCompilerTest.java35 method = "command",
59 method = "compileClass",
81 method = "compileClasses",
102 notes = "Doesn't verify that disable() method causes the Compiler to cease operation.",
103 method = "disable",
120 notes = "Doesn't verify that enable() method causes the Compiler to resume operation.",
121 method = "enable",
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DDuplicateFormatFlagsExceptionTest.java41 method = "DuplicateFormatFlagsException",
61 method = "getFlags",
77 method = "getMessage",
109 method = "!SerializationSelf",
124 method = "!SerializationGolden",
H A DIllegalFormatCodePointExceptionTest.java41 method = "IllegalFormatCodePointException",
56 method = "getCodePoint",
72 method = "getMessage",
104 method = "!SerializationSelf",
119 method = "!SerializationGolden",
H A DIllegalFormatFlagsExceptionTest.java41 method = "IllegalFormatFlagsException",
61 method = "getFlags",
77 method = "getMessage",
109 method = "!SerializationSelf",
124 method = "!SerializationGolden",
H A DIllegalFormatPrecisionExceptionTest.java40 method = "IllegalFormatPrecisionException",
56 method = "getPrecision",
67 * @tests method for 'java.util.IllegalFormatPrecisionException#getMessage()
72 method = "getMessage",
105 method = "!SerializationSelf",
120 method = "!SerializationGolden",
H A DIllegalFormatWidthExceptionTest.java40 method = "IllegalFormatWidthException",
57 method = "getWidth",
74 method = "getMessage",
106 method = "!SerializationSelf",
121 method = "!SerializationGolden",
H A DMissingFormatArgumentExceptionTest.java41 method = "MissingFormatArgumentException",
61 method = "getFormatSpecifier",
77 method = "getMessage",
110 method = "!SerializationSelf",
125 method = "!SerializationGolden",
H A DMissingFormatWidthExceptionTest.java40 method = "MissingFormatWidthException",
59 method = "getFormatSpecifier",
76 method = "getMessage",
109 method = "!SerializationSelf",
124 method = "!SerializationGolden",
H A DUnknownFormatConversionExceptionTest.java40 method = "UnknownFormatConversionException",
60 method = "getConversion",
76 method = "getMessage",
108 method = "!SerializationSelf",
123 method = "!SerializationGolden",
H A DUnknownFormatFlagsExceptionTest.java41 method = "UnknownFormatFlagsException",
61 method = "getFlags",
77 method = "getMessage",
108 method = "!SerializationSelf",
123 method = "!SerializationGolden",
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DProxyTest.java40 notes = "Interface without implementation. Whether method is " +
43 method = "invoke",
51 * When multiple interfaces define the same method, the list of thrown
53 * other method:
66 public float method(float _number0, float _number1); method in interface:ProxyTest.Broken1
70 public Object invoke(Object proxy, Method method, Object[] args) argument
89 method = "getProxyClass",
145 method = "Proxy",
150 public Object invoke(Object proxy, Method method, Object[] args)
166 method
385 invoke(Object object, Method method, Object[] args) argument
[all...]
/dalvik/libcore/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
H A DMalformedInputExceptionTest.java43 method = "MalformedInputException",
49 method = "getMessage",
55 method = "getInputLength",
100 method = "!SerializationSelf",
115 method = "!SerializationGolden",
H A DUnmappableCharacterExceptionTest.java43 method = "UnmappableCharacterException",
49 method = "getMessage",
55 method = "getInputLength",
101 method = "!SerializationSelf",
116 method = "!SerializationGolden",
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DUTFCharsetEncoderTest.java56 method = "canEncode",
71 method = "canEncode",
95 method = "canEncode",
106 method = "averageBytesPerChar",
112 method = "maxBytesPerChar",
/dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DInvalidPreferencesFormatExceptionTest.java42 method = "InvalidPreferencesFormatException",
59 method = "InvalidPreferencesFormatException",
78 method = "InvalidPreferencesFormatException",
96 method = "!SerializationSelf",
111 method = "!SerializationGolden",
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DKeyFactorySpiTest.java49 method = "KeyFactorySpi",
55 method = "engineGeneratePrivate",
61 method = "engineGeneratePublic",
67 method = "engineTranslateKey",
73 method = "engineGetKeySpec",

Completed in 1053 milliseconds

<<11121314151617181920>>