/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/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");
|
FmUnderscoreToCamelCaseMethodTest.java | 29 private void check(String s, String expected) throws TemplateModelException { method in class:FmUnderscoreToCamelCaseMethodTest 36 check("", ""); 40 check("_", ""); 44 check("foo", "Foo"); 48 check("foo_bar", "FooBar"); 52 check("foo__bar", "FooBar"); 56 check("foo_", "Foo");
|
/system/vold/ |
Fat.cpp | 52 int Fat::check(const char *fsPath) { function in class:Fat 72 SLOGE("Filesystem check failed due to logwrap error"); 78 SLOGE("Filesystem check did not exit properly"); 87 SLOGI("Filesystem check completed OK"); 91 SLOGE("Filesystem check failed (not a FAT filesystem)"); 101 SLOGE("Failing check after too many rechecks"); 106 SLOGE("Filesystem check failed (unknown exit code %d)", status);
|
/bootable/recovery/mtdutils/ |
flash_image.c | 80 char check[HEADER_SIZE]; local 81 int checklen = mtd_read_data(in, check, sizeof(check)); 85 } else if (checklen == headerlen && !memcmp(header, check, headerlen)) {
|
/build/tools/zipalign/ |
ZipAlign.cpp | 39 fprintf(stderr, " -c: check alignment only (does not modify file)\n"); 108 /* this mode isn't supported -- do a trivial check */ 196 bool check = false; local 217 check = true; 238 if (!((check && argc == 2) || (!check && argc == 3))) { 250 if (check) { 251 /* check existing archive for correct alignment */
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
CookieSyncManagerTest.java | 50 protected boolean check() { method 68 protected boolean check() { method 77 protected boolean check() { method
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
PKIXCertPathCheckerTest.java | 82 pc.check(new MyCertificate("", null), new HashSet());
|