HomeSort by relevance Sort by last modified time
    Searched full:test (Results 201 - 225 of 43620) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/icu/source/test/cintltst/
capitst.h 14 *//* C API TEST For COLLATOR */
40 * Test RuleBasedCollator and getRules
45 * Test compare
49 * Test hashCode functionality
57 * test the CollationElementIterator methods
61 * Test ucol_getAvailable and ucol_countAvailable()
65 * Test ucol_GetDefaultRules ()
71 * Test ucol_safeClone ()
76 * Test ucol_cloneBinary(), ucol_openBinary()
81 * Test ucol_open() vs. ucol_openRules(
    [all...]
  /external/chromium_org/tools/gyp/test/mac/
gyptest-framework.py 16 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) variable
18 test.run_gyp('framework.gyp', chdir='framework')
20 test.build('framework.gyp', 'test_framework', chdir='framework')
23 test.built_file_must_exist(
24 'Test Framework.framework/Versions/A/Test Framework',
28 test.built_file_must_exist(
29 'Test Framework.framework/Versions/A/Resources/Info.plist',
33 test.built_file_must_exist(
34 'Test Framework.framework/Versions/A/Resources/English.lproj/
    [all...]
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-mapfile.py 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) variable
19 test.run_gyp('mapfile.gyp', chdir=CHDIR)
20 test.build('mapfile.gyp', test.ALL, chdir=CHDIR)
22 map_file = test.built_file_path('test_mapfile_unset.map', chdir=CHDIR)
23 test.must_not_exist(map_file)
25 map_file = test.built_file_path('test_mapfile_generate.map', chdir=CHDIR)
26 test.must_exist(map_file)
27 test.must_contain(map_file, '?AnExportedFunction@@YAXXZ')
28 test.must_not_contain(map_file, 'void __cdecl AnExportedFunction(void)'
    [all...]
gyptest-cl-optimizations.py 16 test = TestGyp.TestGyp(formats=['ninja']) variable
19 test.run_gyp('optimizations.gyp', chdir=CHDIR)
25 ninja_file = test.built_file_path('obj/test_opt_off.ninja', chdir=CHDIR)
26 test.must_contain(ninja_file, 'cflags = /Od')
28 ninja_file = test.built_file_path('obj/test_opt_lev_size.ninja', chdir=CHDIR)
29 test.must_contain(ninja_file, 'cflags = /O1')
31 ninja_file = test.built_file_path('obj/test_opt_lev_speed.ninja', chdir=CHDIR)
32 test.must_contain(ninja_file, 'cflags = /O2')
34 ninja_file = test.built_file_path('obj/test_opt_lev_max.ninja', chdir=CHDIR)
35 test.must_contain(ninja_file, 'cflags = /Ox'
    [all...]
  /external/clang/test/SemaCXX/
warn-unused-attribute.cpp 2 struct __attribute__((warn_unused)) Test
4 Test();
5 ~Test();
16 Test unused; // expected-warning {{unused variable 'unused'}}
17 Test used;
  /external/icu4c/test/cintltst/
capitst.h 14 *//* C API TEST For COLLATOR */
40 * Test RuleBasedCollator and getRules
45 * Test compare
49 * Test hashCode functionality
57 * test the CollationElementIterator methods
61 * Test ucol_getAvailable and ucol_countAvailable()
65 * Test ucol_GetDefaultRules ()
71 * Test ucol_safeClone ()
76 * Test ucol_cloneBinary(), ucol_openBinary()
81 * Test ucol_open() vs. ucol_openRules(
    [all...]
  /external/junit/src/junit/framework/
Test.java 4 * A <em>Test</em> can be run and collect its results.
8 public interface Test {
10 * Counts the number of test cases that will be run by this test.
14 * Runs a test and collects its result in a TestResult instance.
  /external/chromium_org/tools/gyp/test/generator-output/
gyptest-relocate.py 15 test = TestGyp.TestGyp(formats=['!android']) variable
17 test.writable(test.workpath('src'), False)
19 test.run_gyp('prog1.gyp',
21 '--generator-output=' + test.workpath('gypfiles'),
24 test.writable(test.workpath('src'), True)
26 test.relocate('src', 'relocate/src')
27 test.relocate('gypfiles', 'relocate/gypfiles')
29 test.writable(test.workpath('relocate/src'), False
    [all...]
  /external/clang/utils/ABITest/layout/
Makefile 1 # Usage: make test.N.report
8 TESTARGS := --max-args 0 --test-layout
28 .PHONY: test.%.report
29 test.%.report: test.%.x.diff test.%.y.diff
32 echo "TEST $*: $$t failed"; \
36 .PHONY: test.%.build
37 test.%.build: test.%.ref test.%.x test.%.
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
char_size.pass.cpp 21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'i', 0, S::npos);
43 test(S(""), 'i', 1, S::npos);
44 test(S("kitcj"), 'i', 0, 0);
45 test(S("qkamf"), 'i', 1, 1);
46 test(S("nhmko"), 'i', 2, 2);
47 test(S("tpsaf"), 'i', 4, 4);
48 test(S("lahfb"), 'i', 5, 4);
49 test(S("irkhs"), 'i', 6, 4)
    [all...]
string_size.pass.cpp 21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, const S& str, typename S::size_type x) function
40 test(S(""), S(""), 0, S::npos);
41 test(S(""), S("laenf"), 0, S::npos);
42 test(S(""), S("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), S("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), S(""), 1, S::npos);
45 test(S(""), S("bjaht"), 1, S::npos);
46 test(S(""), S("hjlcmgpket"), 1, S::npos);
47 test(S(""), S("htaobedqikfplcgjsmrn"), 1, S::npos)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_rfind/
char_size.pass.cpp 21 test(const S& s, typename S::value_type c, typename S::size_type pos, function
31 test(const S& s, typename S::value_type c, typename S::size_type x) function
42 test(S(""), 'b', 0, S::npos);
43 test(S(""), 'b', 1, S::npos);
44 test(S("abcde"), 'b', 0, S::npos);
45 test(S("abcde"), 'b', 1, 1);
46 test(S("abcde"), 'b', 2, 1);
47 test(S("abcde"), 'b', 4, 1);
48 test(S("abcde"), 'b', 5, 1);
49 test(S("abcde"), 'b', 6, 1)
    [all...]
string_size.pass.cpp 21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, const S& str, typename S::size_type x) function
40 test(S(""), S(""), 0, 0);
41 test(S(""), S("abcde"), 0, S::npos);
42 test(S(""), S("abcdeabcde"), 0, S::npos);
43 test(S(""), S("abcdeabcdeabcdeabcde"), 0, S::npos);
44 test(S(""), S(""), 1, 0);
45 test(S(""), S("abcde"), 1, S::npos);
46 test(S(""), S("abcdeabcde"), 1, S::npos);
47 test(S(""), S("abcdeabcdeabcdeabcde"), 1, S::npos)
    [all...]
  /external/chromium_org/v8/test/cctest/
cctest.gyp 50 'test-accessors.cc',
51 'test-alloc.cc',
52 'test-api.cc',
53 'test-ast.cc',
54 'test-bignum.cc',
55 'test-bignum-dtoa.cc',
56 'test-circular-queue.cc',
57 'test-compiler.cc',
58 'test-conversions.cc',
59 'test-cpu-profiler.cc'
    [all...]
  /external/chromium/third_party/libevent/test/
Makefile.am 7 noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench
10 test_init_SOURCES = test-init.c
12 test_eof_SOURCES = test-eof.c
14 test_weof_SOURCES = test-weof.c
16 test_time_SOURCES = test-time.c
30 test: test-init test-eof test-weof test-time regres
    [all...]
  /external/chromium_org/third_party/libevent/test/
Makefile.am 7 noinst_PROGRAMS = test-init test-eof test-weof test-time regress bench
10 test_init_SOURCES = test-init.c
12 test_eof_SOURCES = test-eof.c
14 test_weof_SOURCES = test-weof.c
16 test_time_SOURCES = test-time.c
30 test: test-init test-eof test-weof test-time regres
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
lookup_classname.pass.cpp 25 test(const char_type* A, std::ctype_base::mask expected, bool icase = false) function
34 test("d", std::ctype_base::digit);
35 test("D", std::ctype_base::digit);
36 test("d", std::ctype_base::digit, true);
37 test("D", std::ctype_base::digit, true);
39 test("w", std::regex_traits<char>::__regex_word | std::ctype_base::alnum
41 test("W", std::regex_traits<char>::__regex_word | std::ctype_base::alnum
43 test("w", std::regex_traits<char>::__regex_word | std::ctype_base::alnum
45 test("W", std::regex_traits<char>::__regex_word | std::ctype_base::alnum
48 test("s", std::ctype_base::space)
    [all...]
  /external/chromium_org/cc/
cc_tests.gyp 72 'test/fake_web_graphics_context_3d_unittest.cc',
95 'test/animation_test_common.cc',
96 'test/animation_test_common.h',
97 'test/fake_content_layer.cc',
98 'test/fake_content_layer.h',
99 'test/fake_content_layer_client.cc',
100 'test/fake_content_layer_client.h',
101 'test/fake_content_layer_impl.cc',
102 'test/fake_content_layer_impl.h',
103 'test/fake_context_provider.cc'
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find/
pointer_size.pass.cpp 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
34 test(const S& s, const typename S::value_type* str, typename S::size_type x) function
47 test(S(""), "", 0, 0);
48 test(S(""), "abcde", 0, S::npos);
49 test(S(""), "abcdeabcde", 0, S::npos);
50 test(S(""), "abcdeabcdeabcdeabcde", 0, S::npos);
51 test(S(""), "", 1, S::npos);
52 test(S(""), "abcde", 1, S::npos);
53 test(S(""), "abcdeabcde", 1, S::npos);
54 test(S(""), "abcdeabcdeabcdeabcde", 1, S::npos)
    [all...]
string_size.pass.cpp 21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, const S& str, typename S::size_type x) function
40 test(S(""), S(""), 0, 0);
41 test(S(""), S("abcde"), 0, S::npos);
42 test(S(""), S("abcdeabcde"), 0, S::npos);
43 test(S(""), S("abcdeabcdeabcdeabcde"), 0, S::npos);
44 test(S(""), S(""), 1, S::npos);
45 test(S(""), S("abcde"), 1, S::npos);
46 test(S(""), S("abcdeabcde"), 1, S::npos);
47 test(S(""), S("abcdeabcdeabcdeabcde"), 1, S::npos)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.not.of/
pointer_size.pass.cpp 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
31 test(const S& s, const typename S::value_type* str, typename S::size_type x) function
41 test(S(""), "", 0, S::npos);
42 test(S(""), "laenf", 0, S::npos);
43 test(S(""), "pqlnkmbdjo", 0, S::npos);
44 test(S(""), "qkamfogpnljdcshbreti", 0, S::npos);
45 test(S(""), "", 1, S::npos);
46 test(S(""), "bjaht", 1, S::npos);
47 test(S(""), "hjlcmgpket", 1, S::npos);
48 test(S(""), "htaobedqikfplcgjsmrn", 1, S::npos)
    [all...]
string_size.pass.cpp 21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, const S& str, typename S::size_type x) function
40 test(S(""), S(""), 0, S::npos);
41 test(S(""), S("laenf"), 0, S::npos);
42 test(S(""), S("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), S("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), S(""), 1, S::npos);
45 test(S(""), S("bjaht"), 1, S::npos);
46 test(S(""), S("hjlcmgpket"), 1, S::npos);
47 test(S(""), S("htaobedqikfplcgjsmrn"), 1, S::npos)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.of/
pointer_size.pass.cpp 21 test(const S& s, const typename S::value_type* str, typename S::size_type pos, function
31 test(const S& s, const typename S::value_type* str, typename S::size_type x) function
41 test(S(""), "", 0, S::npos);
42 test(S(""), "laenf", 0, S::npos);
43 test(S(""), "pqlnkmbdjo", 0, S::npos);
44 test(S(""), "qkamfogpnljdcshbreti", 0, S::npos);
45 test(S(""), "", 1, S::npos);
46 test(S(""), "bjaht", 1, S::npos);
47 test(S(""), "hjlcmgpket", 1, S::npos);
48 test(S(""), "htaobedqikfplcgjsmrn", 1, S::npos)
    [all...]
string_size.pass.cpp 21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, const S& str, typename S::size_type x) function
40 test(S(""), S(""), 0, S::npos);
41 test(S(""), S("laenf"), 0, S::npos);
42 test(S(""), S("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), S("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), S(""), 1, S::npos);
45 test(S(""), S("bjaht"), 1, S::npos);
46 test(S(""), S("hjlcmgpket"), 1, S::npos);
47 test(S(""), S("htaobedqikfplcgjsmrn"), 1, S::npos)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.of/
string_size.pass.cpp 21 test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, const S& str, typename S::size_type x) function
40 test(S(""), S(""), 0, S::npos);
41 test(S(""), S("laenf"), 0, S::npos);
42 test(S(""), S("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), S("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), S(""), 1, S::npos);
45 test(S(""), S("bjaht"), 1, S::npos);
46 test(S(""), S("hjlcmgpket"), 1, S::npos);
47 test(S(""), S("htaobedqikfplcgjsmrn"), 1, S::npos)
    [all...]

Completed in 930 milliseconds

1 2 3 4 5 6 7 891011>>