/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
ReverseBuilder.java | 360 currentState.untrustedChecker.check(cert, 364 * check for looping - abort a loop if 369 * in order to facilitate the check to see if there are 400 /* check if target cert */ 403 /* check if CA cert */ 409 /* check if CA cert */ 423 * Check keyUsage extension (only if CA cert and not final cert) 430 * If final cert, check that it satisfies specified target 435 "constraints check failed"); 440 * Check revocation [all...] |
/libcore/support/src/test/java/tests/security/ |
KeyFactoryTest.java | 60 check(new KeyPair(publicKey, privateKey)); method 63 protected void check(KeyPair keyPair) throws Exception {} method in class:KeyFactoryTest
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/ |
default02.pass.cpp | 38 void check(int i); 57 check(0); 63 check(0); 78 void check(int i) function
|
pointer02.pass.cpp | 38 void check(int i); 57 check(3); 61 check(0); 64 check(3); 69 check(0); 86 void check(int i) function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/ |
default02.pass.cpp | 38 void check(int i); 57 check(0); 63 check(0); 78 void check(int i) function
|
pointer02.pass.cpp | 38 void check(int i); 57 check(1); 61 check(0); 64 check(1); 69 check(0); 86 void check(int i) function
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
catch5p.cpp | 28 void check(D *d) function 150 check (&d); // try with an object 151 check ((D *)0); // try with no object
|
catch6.cpp | 30 void check(E *e) function 181 check (&e); // try with an object 182 check ((E *)0); // try with no object
|
catch6p.cpp | 30 void check(E *e) function 181 check (&e); // try with an object 182 check ((E *)0); // try with no object
|
catch7.cpp | 44 void check(F *f) function 193 check (&f); // try with an object 194 check ((F *)0); // try with no object
|
catch7p.cpp | 31 void check(F *f) function 180 check (&f); // try with an object 181 check ((F *)0); // try with no object
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
catch5p.cpp | 28 void check(D *d) function 150 check (&d); // try with an object 151 check ((D *)0); // try with no object
|
catch6.cpp | 30 void check(E *e) function 181 check (&e); // try with an object 182 check ((E *)0); // try with no object
|
catch6p.cpp | 30 void check(E *e) function 181 check (&e); // try with an object 182 check ((E *)0); // try with no object
|
catch7.cpp | 44 void check(F *f) function 193 check (&f); // try with an object 194 check ((F *)0); // try with no object
|
catch7p.cpp | 31 void check(F *f) function 180 check (&f); // try with an object 181 check ((F *)0); // try with no object
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_print.py | 47 def check(self, expected, args, member in class:TestPrint 69 self.check(expected, args, sep=sep, end=end) 73 self.check('', args, sep=sep, end=end, file=o)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_print.py | 47 def check(self, expected, args, member in class:TestPrint 69 self.check(expected, args, sep=sep, end=end) 73 self.check('', args, sep=sep, end=end, file=o)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_print.py | 47 def check(self, expected, args, member in class:TestPrint 69 self.check(expected, args, sep=sep, end=end) 73 self.check('', args, sep=sep, end=end, file=o)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_print.py | 47 def check(self, expected, args, member in class:TestPrint 69 self.check(expected, args, sep=sep, end=end) 73 self.check('', args, sep=sep, end=end, file=o)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/wizards/templates/ |
FmActivityToLayoutMethodTest.java | 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmActivityToLayoutMethodTest 36 check("FooActivity", "activity_foo"); 40 check("FooActiv", "activity_foo"); 44 check("Foo", "activity_foo"); 48 check("", "");
|
FmCamelCaseToUnderscoreMethodTest.java | 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmCamelCaseToUnderscoreMethodTest 36 check("", ""); 40 check("foo", "foo"); 44 check("Foo", "foo"); 48 check("FooBar", "foo_bar"); 52 check("testXML", "test_xml"); 56 check("testFoo", "test_foo");
|
FmEscapeXmlAttributeMethodTest.java | 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmEscapeXmlAttributeMethodTest 36 check("", ""); 40 check("foo", "foo"); 44 check("<\"'>&", "<"'>&"); 48 check("foo>bar", "foo>bar");
|
FmLayoutToActivityMethodTest.java | 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmLayoutToActivityMethodTest 36 check("foo", "FooActivity"); 40 check("activity_foo", "FooActivity"); 44 check("activity_", "MyActivity"); 48 check("activ", "ActivActivity"); 52 check("", "MyActivity");
|
FmSlashedPackageNameMethodTest.java | 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmSlashedPackageNameMethodTest 36 check("", ""); 40 check("foo", "foo"); 44 check("foo.bar.baz", "foo/bar/baz"); 48 check("foo/bar/baz", "foo/bar/baz");
|