Searched refs:arg0 (Results 1 - 25 of 54) sorted by relevance

123

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
H A DUTF16CharsetTest.java27 public UTF16CharsetTest(String arg0) { argument
28 super(arg0, "UTF-16", new String[] { "UTF_16" }, true, true);
H A DUTF16BECharsetTest.java27 public UTF16BECharsetTest(String arg0) { argument
28 super(arg0, "UTF-16BE", new String[] { "X-UTF-16BE", "UTF_16BE" },
H A DUTF16LECharsetTest.java27 public UTF16LECharsetTest(String arg0) { argument
28 super(arg0, "UTF-16LE", new String[] { "UTF_16LE", "X-UTF-16LE" },
H A DASCCharsetTest.java28 public ASCCharsetTest(String arg0) { argument
29 super(arg0, "US-ASCII", new String[] { "ISO646-US", "ASCII", "cp367",
H A DISOCharsetTest.java27 public ISOCharsetTest(String arg0) { argument
28 super(arg0, "ISO-8859-1", new String[] { "iso-ir-100", "8859_1",
H A DUTF8CharsetTest.java30 public UTF8CharsetTest(String arg0) { argument
31 super(arg0, "UTF-8", new String[] { "UTF8" }, true, true);
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMyMessageDigest2.java56 public void engineUpdate(byte arg0) { argument
63 public void engineUpdate(byte[] arg0, int arg1, int arg2) { argument
H A DMyMessageDigest1.java68 public void engineUpdate(byte arg0) { argument
75 public void engineUpdate(byte[] arg0, int arg1, int arg2) { argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DMockEnum.java46 public boolean equals(Object arg0) { argument
47 if (!(arg0 instanceof MockEnum)) {
50 MockEnum test = (MockEnum) arg0;
H A DMockEnum2.java49 public boolean equals(Object arg0) { argument
50 if (!(arg0 instanceof MockEnum2)) {
53 MockEnum2 test = (MockEnum2) arg0;
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DMockSocketChannel.java32 protected MockSocketChannel(SelectorProvider arg0) { argument
33 super(arg0);
52 public boolean connect(SocketAddress arg0) throws IOException { argument
62 public int read(ByteBuffer arg0) throws IOException { argument
67 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
72 public int write(ByteBuffer arg0) throws IOException { argument
77 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
86 protected void implConfigureBlocking(boolean arg0) throws IOException { argument
H A DMockDatagramChannel.java35 public MockDatagramChannel(SelectorProvider arg0) { argument
36 super(arg0);
50 public DatagramChannel connect(SocketAddress arg0) throws IOException { argument
60 public SocketAddress receive(ByteBuffer arg0) throws IOException { argument
65 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException { argument
70 public int read(ByteBuffer arg0) throws IOException { argument
75 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
80 public int write(ByteBuffer arg0) throws IOException { argument
85 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
95 protected void implConfigureBlocking(boolean arg0) throw argument
[all...]
H A DMockServerSocketChannel.java32 protected MockServerSocketChannel(SelectorProvider arg0) { argument
33 super(arg0);
51 protected void implConfigureBlocking(boolean arg0) throws IOException { argument
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketImplFactoryTest.java120 protected void accept(SocketImpl arg0) throws IOException { argument
129 protected void bind(InetAddress arg0, int arg1) throws IOException { argument
137 protected void connect(String arg0, int arg1) throws IOException { argument
141 protected void connect(InetAddress arg0, int arg1) throws IOException { argument
145 protected void connect(SocketAddress arg0, int arg1) throws IOException { argument
149 protected void create(boolean arg0) throws IOException { argument
163 protected void listen(int arg0) throws IOException { argument
167 protected void sendUrgentData(int arg0) throws IOException { argument
170 public Object getOption(int arg0) throws SocketException { argument
174 public void setOption(int arg0, Objec argument
[all...]
H A DOldDatagramSocketImplFactoryTest.java134 protected void bind(int arg0, InetAddress arg1) throws SocketException { argument
157 protected void join(InetAddress arg0) throws IOException { argument
161 protected void joinGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException { argument
165 protected void leave(InetAddress arg0) throws IOException { argument
169 protected void leaveGroup(SocketAddress arg0, NetworkInterface arg1) throws IOException { argument
173 public int peek(InetAddress arg0) throws IOException { argument
178 protected int peekData(DatagramPacket arg0) throws IOException { argument
183 protected void receive(DatagramPacket arg0) throws IOException { argument
187 protected void send(DatagramPacket arg0) throws IOException { argument
191 protected void setTTL(byte arg0) throw argument
195 setTimeToLive(int arg0) argument
198 getOption(int arg0) argument
202 setOption(int arg0, Object arg1) argument
[all...]
H A DOldServerSocketTest.java331 protected void create(boolean arg0) throws IOException { argument
334 protected void connect(String arg0, int arg1) throws IOException { argument
337 protected void connect(InetAddress arg0, int arg1) throws IOException { argument
340 protected void connect(SocketAddress arg0, int arg1) throws IOException { argument
343 protected void bind(InetAddress arg0, int arg1) throws IOException { argument
346 protected void listen(int arg0) throws IOException { argument
349 protected void accept(SocketImpl arg0) throws IOException { argument
367 protected void sendUrgentData(int arg0) throws IOException { argument
370 public void setOption(int arg0, Object arg1) throws SocketException { argument
373 public Object getOption(int arg0) throw argument
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DX509ExtendedKeyManagerTest.java43 public String chooseClientAlias(String[] arg0, Principal[] arg1, Socket arg2) { argument
51 public String chooseServerAlias(String arg0, Principal[] arg1, Socket arg2) { argument
59 public X509Certificate[] getCertificateChain(String arg0) { argument
67 public String[] getClientAliases(String arg0, Principal[] arg1) { argument
75 public PrivateKey getPrivateKey(String arg0) { argument
83 public String[] getServerAliases(String arg0, Principal[] arg1) { argument
H A DSSLServerSocketFactoryTest.java45 public ServerSocket createServerSocket(int arg0) throws IOException { argument
50 public ServerSocket createServerSocket(int arg0, int arg1) argument
56 public ServerSocket createServerSocket(int arg0, int arg1, argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
H A DMockAbstractSelector.java32 public MockAbstractSelector(SelectorProvider arg0) { argument
33 super(arg0);
48 protected SelectionKey register(AbstractSelectableChannel arg0, int arg1, argument
77 public int select(long arg0) throws IOException { argument
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DSSLSocketFactoryImpl.java50 public Socket createSocket(String arg0, int arg1) throws IOException, UnknownHostException { argument
59 public Socket createSocket(InetAddress arg0, int arg1) throws IOException { argument
68 public Socket createSocket(String arg0, int arg1, InetAddress arg2, int arg3) throws IOException, UnknownHostException { argument
77 public Socket createSocket(InetAddress arg0, int arg1, InetAddress arg2, int arg3) throws IOException { argument
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DKeyStore3Test.java186 public boolean engineContainsAlias(String arg0) { argument
190 public void engineDeleteEntry(String arg0) throws KeyStoreException { argument
193 public Certificate engineGetCertificate(String arg0) { argument
197 public String engineGetCertificateAlias(Certificate arg0) { argument
201 public Certificate[] engineGetCertificateChain(String arg0) { argument
205 public Date engineGetCreationDate(String arg0) { argument
209 public Key engineGetKey(String arg0, char[] arg1) argument
214 public boolean engineIsCertificateEntry(String arg0) { argument
218 public boolean engineIsKeyEntry(String arg0) { argument
222 public void engineLoad(InputStream arg0, cha argument
228 engineSetCertificateEntry(String arg0, Certificate arg1) argument
233 engineSetKeyEntry(String arg0, byte[] arg1, Certificate[] arg2) argument
238 engineSetKeyEntry(String arg0, Key arg1, char[] arg2, Certificate[] arg3) argument
251 engineStore(OutputStream arg0, char[] arg1) argument
[all...]
/libcore/luni/src/test/java/libcore/java/util/
H A DOldFormattableTest.java29 public void formatTo(Formatter arg0, int arg1, int arg2, int arg3) { argument
39 arg0.format(sb.toString());
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DRefSortedMap.java306 public boolean containsKey(Object arg0) { argument
307 return bsearch(arg0) >= 0;
310 public boolean containsValue(Object arg0) { argument
312 if (arg0.equals(v)) {
320 public V get(Object arg0) { argument
321 int idx = bsearch(arg0);
329 public V put(K arg0, V arg1) { argument
331 int idx = bsearch(arg0);
335 entries.add(-idx - 1, new MapEntry<K, V>(arg0, arg1));
339 public void putAll(Map<? extends K, ? extends V> arg0) { argument
346 remove(Object arg0) argument
368 bsearch(Object arg0) argument
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DResponseCacheTest.java60 public CacheResponse get(URI arg0, String arg1, Map arg2) argument
65 public CacheRequest put(URI arg0, URLConnection arg1) argument
/libcore/luni/src/test/java/tests/security/interfaces/
H A DUtil.java94 protected byte[] engineGenerateSeed(int arg0) { argument
105 protected void engineSetSeed(byte[] arg0) { argument

Completed in 396 milliseconds

123