/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/ |
iter_iter_pointer.pass.cpp | 25 test(S s, typename S::size_type pos1, typename S::size_type n1, const typename S::value_type* str, S expected) function 41 test(S(""), 0, 0, "", S("")); 42 test(S(""), 0, 0, "12345", S("12345")); 43 test(S(""), 0, 0, "1234567890", S("1234567890")); 44 test(S(""), 0, 0, "12345678901234567890", S("12345678901234567890")); 45 test(S("abcde"), 0, 0, "", S("abcde")); 46 test(S("abcde"), 0, 0, "12345", S("12345abcde")); 47 test(S("abcde"), 0, 0, "1234567890", S("1234567890abcde")); 48 test(S("abcde"), 0, 0, "12345678901234567890", S("12345678901234567890abcde")); 49 test(S("abcde"), 0, 1, "", S("bcde")) [all...] |
iter_iter_size_char.pass.cpp | 25 test(S s, typename S::size_type pos1, typename S::size_type n1, typename S::size_type n2, function 42 test(S(""), 0, 0, 0, '3', S("")); 43 test(S(""), 0, 0, 5, '3', S("33333")); 44 test(S(""), 0, 0, 10, '3', S("3333333333")); 45 test(S(""), 0, 0, 20, '3', S("33333333333333333333")); 46 test(S("abcde"), 0, 0, 0, '3', S("abcde")); 47 test(S("abcde"), 0, 0, 5, '3', S("33333abcde")); 48 test(S("abcde"), 0, 0, 10, '3', S("3333333333abcde")); 49 test(S("abcde"), 0, 0, 20, '3', S("33333333333333333333abcde")); 50 test(S("abcde"), 0, 1, 0, '3', S("bcde")) [all...] |
iter_iter_string.pass.cpp | 25 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected) function 41 test(S(""), 0, 0, S(""), S("")); 42 test(S(""), 0, 0, S("12345"), S("12345")); 43 test(S(""), 0, 0, S("1234567890"), S("1234567890")); 44 test(S(""), 0, 0, S("12345678901234567890"), S("12345678901234567890")); 45 test(S("abcde"), 0, 0, S(""), S("abcde")); 46 test(S("abcde"), 0, 0, S("12345"), S("12345abcde")); 47 test(S("abcde"), 0, 0, S("1234567890"), S("1234567890abcde")); 48 test(S("abcde"), 0, 0, S("12345678901234567890"), S("12345678901234567890abcde")); 49 test(S("abcde"), 0, 1, S(""), S("bcde")) [all...] |
iter_iter_iter_iter.pass.cpp | 24 test(S s, typename S::size_type pos1, typename S::size_type n1, It f, It l, S expected) function 42 test(S(""), 0, 0, str, str+0, S("")); 43 test(S(""), 0, 0, str, str+0, S("")); 44 test(S(""), 0, 0, str, str+1, S("1")); 45 test(S(""), 0, 0, str, str+2, S("12")); 46 test(S(""), 0, 0, str, str+4, S("1234")); 47 test(S(""), 0, 0, str, str+5, S("12345")); 48 test(S(""), 0, 0, str, str+0, S("")); 49 test(S(""), 0, 0, str, str+1, S("1")); 50 test(S(""), 0, 0, str, str+5, S("12345")) [all...] |
iter_iter_pointer_size.pass.cpp | 25 test(S s, typename S::size_type pos1, typename S::size_type n1, const typename S::value_type* str, function 42 test(S(""), 0, 0, "", 0, S("")); 43 test(S(""), 0, 0, "12345", 0, S("")); 44 test(S(""), 0, 0, "12345", 1, S("1")); 45 test(S(""), 0, 0, "12345", 2, S("12")); 46 test(S(""), 0, 0, "12345", 4, S("1234")); 47 test(S(""), 0, 0, "12345", 5, S("12345")); 48 test(S(""), 0, 0, "1234567890", 0, S("")); 49 test(S(""), 0, 0, "1234567890", 1, S("1")); 50 test(S(""), 0, 0, "1234567890", 5, S("12345")) [all...] |
size_size_string_size_size.pass.cpp | 25 test(S s, typename S::size_type pos1, typename S::size_type n1, function 51 test(S(""), 0, 0, S(""), 0, 0, S("")); 52 test(S(""), 0, 0, S(""), 0, 1, S("")); 53 test(S(""), 0, 0, S(""), 1, 0, S("can't happen")); 54 test(S(""), 0, 0, S("12345"), 0, 0, S("")); 55 test(S(""), 0, 0, S("12345"), 0, 1, S("1")); 56 test(S(""), 0, 0, S("12345"), 0, 2, S("12")); 57 test(S(""), 0, 0, S("12345"), 0, 4, S("1234")); 58 test(S(""), 0, 0, S("12345"), 0, 5, S("12345")); 59 test(S(""), 0, 0, S("12345"), 0, 6, S("12345")) [all...] |
/external/chromium_org/tools/gyp/test/actions/ |
gyptest-generated-header.py | 14 test = TestGyp.TestGyp() variable 18 test.run_gyp('test.gyp', chdir=CHDIR) 19 test.build('test.gyp', 'program', chdir=CHDIR) 20 test.up_to_date('test.gyp', 'program', chdir=CHDIR) 23 test.run_built_executable('program', chdir=CHDIR, stdout=expect) 27 test.sleep() 28 test.write('generated-header/test.gyp' [all...] |
/external/chromium_org/tools/gyp/test/intermediate_dir/ |
gyptest-intermediate-dir.py | 13 test = TestGyp.TestGyp() variable 15 test.run_gyp('test.gyp', chdir='src') 16 test.build('test.gyp', 'target1', chdir='src') 18 intermediate_file1 = test.read('src/outfile.txt') 19 test.must_contain(intermediate_file1, 'target1') 21 shared_intermediate_file1 = test.read('src/shared_outfile.txt') 22 test.must_contain(shared_intermediate_file1, 'shared_target1') 24 test.run_gyp('test2.gyp', chdir='src' [all...] |
/external/chromium_org/tools/gyp/test/ios/ |
gyptest-app-ios.py | 16 test = TestGyp.TestGyp(formats=['xcode', 'ninja']) variable 18 test.run_gyp('test.gyp', chdir='app-bundle') 20 test.build('test.gyp', test.ALL, chdir='app-bundle') 22 # Test that the extension is .bundle 23 test.built_file_must_exist('Test App Gyp.bundle/Test App Gyp' [all...] |
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-objc-gc.py | 17 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'], variable 21 test.run_gyp('test.gyp', chdir=CHDIR) 27 }[test.format] 29 test.build('test.gyp', 'gc_exe_fails', chdir=CHDIR, status=build_error_code) 30 test.build( 31 'test.gyp', 'gc_off_exe_req_lib', chdir=CHDIR, status=build_error_code) 33 test.build('test.gyp', 'gc_req_exe', chdir=CHDIR [all...] |
gyptest-rebuild.py | 16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) variable 19 test.run_gyp('test.gyp', chdir=CHDIR) 21 test.build('test.gyp', 'test_app', chdir=CHDIR) 24 test.touch('rebuild/main.c') 25 test.build('test.gyp', 'test_app', chdir=CHDIR) 27 test.up_to_date('test.gyp', 'test_app', chdir=CHDIR [all...] |
gyptest-debuginfo.py | 16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) variable 18 test.run_gyp('test.gyp', chdir='debuginfo') 20 test.build('test.gyp', test.ALL, chdir='debuginfo') 22 test.built_file_must_exist('libnonbundle_shared_library.dylib.dSYM', 24 test.built_file_must_exist('nonbundle_loadable_module.so.dSYM', 26 test.built_file_must_exist('nonbundle_executable.dSYM', 29 test.built_file_must_exist('bundle_shared_library.framework.dSYM' [all...] |
gyptest-archs.py | 18 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) variable 26 test.fail_test() 28 test.run_gyp('test-no-archs.gyp', chdir='archs') 29 test.build('test-no-archs.gyp', test.ALL, chdir='archs') 30 result_file = test.built_file_path('Test', chdir='archs') 31 test.must_exist(result_file [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_erase/ |
iter_iter.pass.cpp | 21 test(S s, typename S::difference_type pos, typename S::difference_type n, S expected) function 35 test(S(""), 0, 0, S("")); 36 test(S("abcde"), 0, 0, S("abcde")); 37 test(S("abcde"), 0, 1, S("bcde")); 38 test(S("abcde"), 0, 2, S("cde")); 39 test(S("abcde"), 0, 4, S("e")); 40 test(S("abcde"), 0, 5, S("")); 41 test(S("abcde"), 1, 0, S("abcde")); 42 test(S("abcde"), 1, 1, S("acde")); 43 test(S("abcde"), 1, 2, S("ade")) [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
sync_datatype_helper.cc | 5 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" 7 #include "chrome/browser/sync/test/integration/sync_test.h" 12 static SyncTest* test = NULL; member in namespace:__anon8267 18 void AssociateWithTest(SyncTest* test) { 19 ASSERT_TRUE(test != NULL) << "Cannot associate with null test."; 20 ASSERT_TRUE(::test == NULL) << "Already associated with a test."; 21 ::test = test; 24 SyncTest* test() { function in namespace:sync_datatype_helper [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find/ |
pointer_size_size.pass.cpp | 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function 32 test(S(""), "", 0, 0, 0); 33 test(S(""), "abcde", 0, 0, 0); 34 test(S(""), "abcde", 0, 1, S::npos); 35 test(S(""), "abcde", 0, 2, S::npos); 36 test(S(""), "abcde", 0, 4, S::npos); 37 test(S(""), "abcde", 0, 5, S::npos); 38 test(S(""), "abcdeabcde", 0, 0, 0); 39 test(S(""), "abcdeabcde", 0, 1, S::npos); 40 test(S(""), "abcdeabcde", 0, 5, S::npos) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.not.of/ |
pointer_size_size.pass.cpp | 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function 32 test(S(""), "", 0, 0, S::npos); 33 test(S(""), "irkhs", 0, 0, S::npos); 34 test(S(""), "kante", 0, 1, S::npos); 35 test(S(""), "oknlr", 0, 2, S::npos); 36 test(S(""), "pcdro", 0, 4, S::npos); 37 test(S(""), "bnrpe", 0, 5, S::npos); 38 test(S(""), "jtdaefblso", 0, 0, S::npos); 39 test(S(""), "oselktgbca", 0, 1, S::npos); 40 test(S(""), "eqgaplhckj", 0, 5, S::npos) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.of/ |
pointer_size_size.pass.cpp | 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function 32 test(S(""), "", 0, 0, S::npos); 33 test(S(""), "irkhs", 0, 0, S::npos); 34 test(S(""), "kante", 0, 1, S::npos); 35 test(S(""), "oknlr", 0, 2, S::npos); 36 test(S(""), "pcdro", 0, 4, S::npos); 37 test(S(""), "bnrpe", 0, 5, S::npos); 38 test(S(""), "jtdaefblso", 0, 0, S::npos); 39 test(S(""), "oselktgbca", 0, 1, S::npos); 40 test(S(""), "eqgaplhckj", 0, 5, S::npos) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/ |
pointer_size_size.pass.cpp | 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function 32 test(S(""), "", 0, 0, S::npos); 33 test(S(""), "irkhs", 0, 0, S::npos); 34 test(S(""), "kante", 0, 1, S::npos); 35 test(S(""), "oknlr", 0, 2, S::npos); 36 test(S(""), "pcdro", 0, 4, S::npos); 37 test(S(""), "bnrpe", 0, 5, S::npos); 38 test(S(""), "jtdaefblso", 0, 0, S::npos); 39 test(S(""), "oselktgbca", 0, 1, S::npos); 40 test(S(""), "eqgaplhckj", 0, 5, S::npos) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.of/ |
pointer_size_size.pass.cpp | 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function 32 test(S(""), "", 0, 0, S::npos); 33 test(S(""), "irkhs", 0, 0, S::npos); 34 test(S(""), "kante", 0, 1, S::npos); 35 test(S(""), "oknlr", 0, 2, S::npos); 36 test(S(""), "pcdro", 0, 4, S::npos); 37 test(S(""), "bnrpe", 0, 5, S::npos); 38 test(S(""), "jtdaefblso", 0, 0, S::npos); 39 test(S(""), "oselktgbca", 0, 1, S::npos); 40 test(S(""), "eqgaplhckj", 0, 5, S::npos) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_rfind/ |
pointer_size_size.pass.cpp | 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function 32 test(S(""), "", 0, 0, 0); 33 test(S(""), "abcde", 0, 0, 0); 34 test(S(""), "abcde", 0, 1, S::npos); 35 test(S(""), "abcde", 0, 2, S::npos); 36 test(S(""), "abcde", 0, 4, S::npos); 37 test(S(""), "abcde", 0, 5, S::npos); 38 test(S(""), "abcdeabcde", 0, 0, 0); 39 test(S(""), "abcdeabcde", 0, 1, S::npos); 40 test(S(""), "abcdeabcde", 0, 5, S::npos) [all...] |
/art/test/004-annotations/ |
expected.txt | 2 java.lang.String android.test.anno.TestAnnotations.thing1: @android.test.anno.AnnoArrayField(bb=[], cc=[a, b], dd=[0.987654321], ff=[3.1415927], ii=[], jj=[], ss=[], str=[], zz=[]) 3 java.lang.String android.test.anno.TestAnnotations.thing2: @android.test.anno.AnnoArrayField(bb=[-1, 0, 1], cc=[Q], dd=[0.3, 0.6, 0.9], ff=[1.1, 1.2, 1.3], ii=[1, 2, 3, 4], jj=[-5, 0, 5], ss=[12, 13, 14, 15, 16, 17], str=[hickory, dickory, dock], zz=[true, false, true]) 4 mapping is class [Landroid.test.anno.IntToString; 5 0='@android.test.anno.IntToString(from=0, to=NORMAL_FOCUS)' 6 1='@android.test.anno.IntToString(from=2, to=WEAK_FOCUS)' 11 annotations on TYPE class android.test.anno.SimplyNoted(2): 12 @android.test.anno.AnnoSimpleType() 13 interface android.test.anno.AnnoSimpleTyp [all...] |
/art/test/087-gc-after-link/ |
info.txt | 1 This test causes a linkage error, which calls dvmFreeClassInnards on 4 This is a regression test for a defect in Dalvik, which was assuming 7 This test is a modified version of test 086. 8 This test is not expected to work for the reference implementation.
|
/dalvik/tests/004-annotations/ |
expected.txt | 2 java.lang.String android.test.anno.TestAnnotations.thing1: @android.test.anno.AnnoArrayField(bb=[], cc=[a, b], dd=[0.987654321], ff=[3.1415927], ii=[], jj=[], ss=[], str=[], zz=[]) 3 java.lang.String android.test.anno.TestAnnotations.thing2: @android.test.anno.AnnoArrayField(bb=[-1, 0, 1], cc=[Q], dd=[0.3, 0.6, 0.9], ff=[1.1, 1.2, 1.3], ii=[1, 2, 3, 4], jj=[-5, 0, 5], ss=[12, 13, 14, 15, 16, 17], str=[hickory, dickory, dock], zz=[true, false, true]) 4 mapping is class [Landroid.test.anno.IntToString; 5 0='@android.test.anno.IntToString(from=0, to=NORMAL_FOCUS)' 6 1='@android.test.anno.IntToString(from=2, to=WEAK_FOCUS)' 11 annotations on TYPE class android.test.anno.SimplyNoted(2): 12 @android.test.anno.AnnoSimpleType() 13 interface android.test.anno.AnnoSimpleTyp [all...] |
/dalvik/tests/087-gc-after-link/ |
info.txt | 1 This test causes a linkage error, which calls dvmFreeClassInnards on 4 This is a regression test for a defect in Dalvik, which was assuming 7 This test is a modified version of test 086. 8 This test is not expected to work for the reference implementation.
|