Searched defs:verify (Results 1 - 25 of 286) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/com/sun/net/httpserver/
H A DDummyVerifier.java29 public boolean verify (String s, SSLSession s1) { method in class:DummyVerifier
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DArrayOpsTest.java25 public static boolean verify(int a[], int b[]) { method in class:ArrayOpsTest
44 public static boolean verify(byte a[], byte b[]) { method in class:ArrayOpsTest
63 public static boolean verify(char a[], char b[]) { method in class:ArrayOpsTest
82 public static boolean verify(short a[], short b[]) { method in class:ArrayOpsTest
101 public static boolean verify(boolean a[], boolean b[]) { method in class:ArrayOpsTest
120 public static boolean verify(float a[], float b[]) { method in class:ArrayOpsTest
139 public static boolean verify(double a[], double b[]) { method in class:ArrayOpsTest
158 public static boolean verify(long a[], long b[]) { method in class:ArrayOpsTest
177 public static boolean verify(String a[], String b[]) { method in class:ArrayOpsTest
196 public static boolean verify(PrimitivesTes method in class:ArrayOpsTest
[all...]
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DHostnameVerifier.java55 public boolean verify(String hostname, SSLSession session); method in interface:HostnameVerifier
/openjdk7/jdk/src/share/classes/javax/swing/
H A DInputVerifier.java80 * public boolean verify(JComponent input) {
105 * @param input the JComponent to verify
112 public abstract boolean verify(JComponent input); method in class:InputVerifier
116 * Calls <code>verify(input)</code> to ensure that the input is valid.
124 * @param input the JComponent to verify
132 return verify(input);
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6897150.java42 static void verify(int max, int a) { method in class:Test6897150
55 verify(max, a);
/openjdk7/langtools/test/tools/javac/tree/
H A DTreeKindTest.java48 ok = ok & verify(k, i, i == UnaryTree.class);
70 ok = ok & verify(k, i, i == BinaryTree.class);
84 ok = ok & verify(k, i, i == CompoundAssignmentTree.class);
95 ok = ok & verify(k, i, i == LiteralTree.class);
101 ok = ok & verify(k, i, i == WildcardTree.class);
108 ok = ok & verify(k, i, i == ClassTree.class);
112 ok = ok & verify(k, i, i == null);
119 ok = ok & verify(k, i, ks.equalsIgnoreCase(is));
127 static boolean verify(Tree.Kind k, Class<?> c, boolean b) { method in class:TreeKindTest
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DJarVerifier.java47 // The URL for the JAR file we want to verify.
53 * Creates a JarVerifier object to verify the given URL.
71 void verify() throws JarException, IOException { method in class:JarVerifier
/openjdk7/hotspot/src/share/vm/code/
H A DpcDesc.cpp65 bool PcDesc::verify(nmethod* code) { function in class:PcDesc
/openjdk7/hotspot/src/share/vm/opto/
H A Dcoalesce.hpp46 virtual void verify() = 0;
77 virtual void verify() { }; function in class:PhaseAggressiveCoalesce
101 virtual void verify();
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DHostnameVerifier.java53 public boolean verify(String urlHostname, String certHostname); method in interface:HostnameVerifier
/openjdk7/hotspot/test/compiler/6636138/
H A DTest1.java43 public static void verify(int src[], int[] ref) { method in class:Test1
59 verify(src, ref);
H A DTest2.java49 public static void verify(int src[]) { method in class:Test2
63 verify(src);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/sun/tools/pack/verify/
H A DMain.java24 package sun.tools.pack.verify;
H A DVerifyTreeSet.java24 package sun.tools.pack.verify;
/openjdk7/jdk/test/java/security/Signature/
H A DByteBuffers.java63 verify(sig, signature, b2, random);
69 verify(sig, signature, b3, random);
74 verify(sig, signature, b4, random);
79 private static void verify(Signature sig, byte[] signature, ByteBuffer b, Random random) throws Exception { method in class:ByteBuffers
91 if (sig.verify(signature) == false) {
92 throw new Exception("Signature did not verify");
/openjdk7/jdk/test/java/util/Locale/
H A DBug4184873Test.java76 verify("he");
77 verify("yi");
78 verify("id");
81 private void verify(String lang) { method in class:Bug4184873Test
/openjdk7/jdk/test/javax/crypto/Mac/
H A DByteBuffers.java63 verify(mac, macValue, b2, random);
69 verify(mac, macValue, b3, random);
74 verify(mac, macValue, b4, random);
79 private static void verify(Mac mac, byte[] macValue, ByteBuffer b, Random random) throws Exception { method in class:ByteBuffers
93 throw new Exception("Mac did not verify");
/openjdk7/jdk/test/javax/imageio/plugins/bmp/
H A DTopDownTest.java91 verify(dst);
94 private static void verify(BufferedImage dst) { method in class:TopDownTest
/openjdk7/jdk/test/javax/swing/JPopupMenu/6827786/
H A Dbug6827786.java76 // verify submenu is selected
77 verify(1);
81 // verify last item is selected
82 verify(2);
87 verify(0);
104 private static void verify(final int index) throws Exception { method in class:bug6827786
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DDefaultHostnameVerifier.java42 public boolean verify(String hostname, SSLSession session) { method in class:DefaultHostnameVerifier
/openjdk7/langtools/test/tools/javap/
H A DT6622216.java41 verify(output);
72 void verify(String output) { method in class:T6622216
/openjdk7/jdk/test/sun/security/pkcs11/Signature/
H A DByteBuffers.java67 verify(sig, signature, b2, random);
73 verify(sig, signature, b3, random);
78 verify(sig, signature, b4, random);
83 private static void verify(Signature sig, byte[] signature, ByteBuffer b, Random random) throws Exception { method in class:ByteBuffers
95 if (sig.verify(signature) == false) {
96 throw new Exception("Signature did not verify");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DStub.java71 public void verify() { Assert.that(false, "should not call this"); } method in class:Stub
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeANewArray.java39 public void verify() { method in class:BytecodeANewArray
52 b.verify();
H A DBytecodeBipush.java39 public void verify() { method in class:BytecodeBipush
52 b.verify();

Completed in 53 milliseconds

1234567891011>>