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

12345678910

/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DUnsupportedCollisionException.java44 public UnsupportedCollisionException(Throwable arg0) { argument
45 super(arg0);
48 public UnsupportedCollisionException(String arg0, Throwable arg1) { argument
49 super(arg0, arg1);
52 public UnsupportedCollisionException(String arg0) { argument
53 super(arg0);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DI18nException.java10 public I18nException(String arg0, Throwable arg1) { argument
11 super(arg0, arg1);
14 public I18nException(String arg0) { argument
15 super(arg0);
18 public I18nException(Throwable arg0) { argument
19 super(arg0);
/external/apache-harmony/nio_char/src/test/java/tests/api/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 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 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" },
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DMockSocketChannel.java29 protected MockSocketChannel(SelectorProvider arg0) { argument
30 super(arg0);
45 public boolean connect(SocketAddress arg0) throws IOException { argument
53 public int read(ByteBuffer arg0) throws IOException { argument
57 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
61 public int write(ByteBuffer arg0) throws IOException { argument
65 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
72 protected void implConfigureBlocking(boolean arg0) throws IOException { argument
H A DMockDatagramChannel.java29 public MockDatagramChannel(SelectorProvider arg0) { argument
30 super(arg0);
41 public DatagramChannel connect(SocketAddress arg0) throws IOException { argument
49 public SocketAddress receive(ByteBuffer arg0) throws IOException { argument
53 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException { argument
57 public int read(ByteBuffer arg0) throws IOException { argument
61 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
65 public int write(ByteBuffer arg0) throws IOException { argument
69 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { argument
77 protected void implConfigureBlocking(boolean arg0) throw argument
[all...]
H A DMockServerSocketChannel.java28 protected MockServerSocketChannel(SelectorProvider arg0) { argument
29 super(arg0);
43 protected void implConfigureBlocking(boolean arg0) throws IOException { argument
/external/robolectric/src/main/java/android/os/
H A DTestVibrator.java17 public void vibrate(long arg0) { argument
22 public void vibrate(long[] arg0, int arg1) { argument
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_DummyPKCS12Keystore.java43 public Key engineGetKey(String arg0, char[] arg1) argument
49 public Certificate[] engineGetCertificateChain(String arg0) { argument
54 public Certificate engineGetCertificate(String arg0) { argument
59 public Date engineGetCreationDate(String arg0) { argument
64 public void engineSetKeyEntry(String arg0, Key arg1, char[] arg2, argument
69 public void engineSetKeyEntry(String arg0, byte[] arg1, Certificate[] arg2) argument
74 public void engineSetCertificateEntry(String arg0, Certificate arg1) argument
79 public void engineDeleteEntry(String arg0) throws KeyStoreException { argument
88 public boolean engineContainsAlias(String arg0) { argument
98 public boolean engineIsKeyEntry(String arg0) { argument
103 engineIsCertificateEntry(String arg0) argument
108 engineGetCertificateAlias(Certificate arg0) argument
113 engineStore(OutputStream arg0, char[] arg1) argument
118 engineLoad(InputStream arg0, char[] arg1) argument
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyMessageDigest2.java55 public void engineUpdate(byte arg0) { argument
62 public void engineUpdate(byte[] arg0, int arg1, int arg2) { argument
H A DMyMessageDigest1.java67 public void engineUpdate(byte arg0) { argument
74 public void engineUpdate(byte[] arg0, int arg1, int arg2) { argument
/external/webkit/Source/JavaScriptCore/runtime/
H A DTracing.h42 #define JAVASCRIPTCORE_PROFILE_WILL_EXECUTE(arg0, arg1, arg2, arg3)
45 #define JAVASCRIPTCORE_PROFILE_DID_EXECUTE(arg0, arg1, arg2, arg3)
/external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
H A DAwtMouseInput.java217 public void mouseClicked(MouseEvent arg0) { argument
218 // MouseButtonEvent evt = new MouseButtonEvent(getJMEButtonIndex(arg0), false);
222 public void mousePressed(MouseEvent arg0) { argument
223 MouseButtonEvent evt = new MouseButtonEvent(getJMEButtonIndex(arg0), true, arg0.getX(), arg0.getY());
224 evt.setTime(arg0.getWhen());
230 public void mouseReleased(MouseEvent arg0) { argument
231 MouseButtonEvent evt = new MouseButtonEvent(getJMEButtonIndex(arg0), false, arg0
238 mouseEntered(MouseEvent arg0) argument
243 mouseExited(MouseEvent arg0) argument
248 mouseWheelMoved(MouseWheelEvent arg0) argument
254 mouseDragged(MouseEvent arg0) argument
258 mouseMoved(MouseEvent arg0) argument
[all...]
/external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
H A Dvms-code.c103 static char *fix_arg0( arg0 )
104 const char *arg0;
108 if (arg0) {
110 if ((p = strrchr(arg0, ':')) != 0) /* device punctuation */
111 arg0 = p + 1;
112 if ((p = strrchr(arg0, ']')) != 0) /* directory punctuation */
113 arg0 = p + 1;
114 if ((p = strrchr(arg0, '>')) != 0) /* alternate dir punct */
115 arg0 = p + 1;
117 if (!arg0 || !*arg
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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;
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DSecretKeyTest.java38 * @param arg0
40 public SecretKeyTest(String arg0) { argument
41 super(arg0);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DKeyTest.java38 * @param arg0
40 public KeyTest(String arg0) { argument
41 super(arg0);
H A DPrivateKeyTest.java38 * @param arg0
40 public PrivateKeyTest(String arg0) { argument
41 super(arg0);
H A DPublicKeyTest.java39 * @param arg0
41 public PublicKeyTest(String arg0) { argument
42 super(arg0);
/external/smack/src/org/jivesoftware/smack/
H A DOpenTrustManager.java42 public void checkClientTrusted(X509Certificate[] arg0, String arg1) argument
46 public void checkServerTrusted(X509Certificate[] arg0, String arg1) argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContentProviderTest.java24 public int delete(Uri arg0, String arg1, String[] arg2) { argument
29 public String getType(Uri arg0) { argument
34 public Uri insert(Uri arg0, ContentValues arg1) { argument
44 public Cursor query(Uri arg0, String[] arg1, String arg2, argument
50 public int update(Uri arg0, ContentValues arg1, String arg2, argument

Completed in 482 milliseconds

12345678910