HomeSort by relevance Sort by last modified time
    Searched defs:test (Results 26 - 50 of 9198) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/
pr2086.c 3 #define test macro
5 #define test macro
8 #ifdef test
pr2086.h 1 #ifndef test
4 #ifdef test
5 #undef test macro
  /external/clang/test/Sema/
attr-availability-app-extensions.c 24 void test() { function
attr-availability-ios.c 13 void test() { function
libbuiltins-ctype-powerpc64.c 18 void test(int x) { function
libbuiltins-ctype-x86_64.c 18 void test(int x) { function
memset-invalid.c 4 char test() { function
  /external/clang/test/SemaCXX/
attr-deprecated-replacement-fixit.cpp 19 void test() { function
parentheses.cpp 5 bool test(Foo f, int *array) function
pr9812.cpp 3 int test(int, char**) function
short-wchar-sign.cpp 7 int test[(wchar_t(-1)<wchar_t(0)) == (sizeof(wchar_t) == 4) ?1:-1]; variable
  /external/clang/tools/scan-build-py/tests/functional/src/
broken-two.c 1 int test() { ; function
  /external/compiler-rt/test/builtins/timing/
time 3 function test () { function
29 test $ARCH $FILE libgcc ""
30 test $ARCH $FILE tuned ../../darwin_fat/Release/libcompiler_rt.a
32 test $ARCH $FILE installed $INSTALLED
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
iter_char.pass.cpp 23 test(S& s, typename S::const_iterator p, typename S::value_type c, S expected) function
41 test(s, s.begin(), '1', S("1"));
42 test(s, s.begin(), 'a', S("a1"));
43 test(s, s.end(), 'b', S("a1b"));
44 test(s, s.end()-1, 'c', S("a1cb"));
45 test(s, s.end()-2, 'd', S("a1dcb"));
46 test(s, s.end()-3, '2', S("a12dcb"));
47 test(s, s.end()-4, '3', S("a132dcb"));
48 test(s, s.end()-5, '4', S("a1432dcb"));
49 test(s, s.begin()+1, '5', S("a51432dcb"))
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.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(""), 'q', 0, S::npos);
43 test(S(""), 'q', 1, S::npos);
44 test(S("kitcj"), 'q', 0, 0);
45 test(S("qkamf"), 'q', 1, 1);
46 test(S("nhmko"), 'q', 2, 2);
47 test(S("tpsaf"), 'q', 4, 4);
48 test(S("lahfb"), 'q', 5, S::npos);
49 test(S("irkhs"), 'q', 6, S::npos)
    [all...]
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...]
string_view_size.pass.cpp 21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, SV sv, typename S::size_type x) function
40 test(S(""), SV(""), 0, S::npos);
41 test(S(""), SV("laenf"), 0, S::npos);
42 test(S(""), SV("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), SV("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), SV(""), 1, S::npos);
45 test(S(""), SV("bjaht"), 1, S::npos);
46 test(S(""), SV("hjlcmgpket"), 1, S::npos);
47 test(S(""), SV("htaobedqikfplcgjsmrn"), 1, S::npos)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.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(""), 'e', 0, S::npos);
43 test(S(""), 'e', 1, S::npos);
44 test(S("kitcj"), 'e', 0, S::npos);
45 test(S("qkamf"), 'e', 1, S::npos);
46 test(S("nhmko"), 'e', 2, S::npos);
47 test(S("tpsaf"), 'e', 4, S::npos);
48 test(S("lahfb"), 'e', 5, S::npos);
49 test(S("irkhs"), 'e', 6, S::npos)
    [all...]
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...]
string_view_size.pass.cpp 21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x) function
30 test(const S& s, SV sv, typename S::size_type x) function
40 test(S(""), SV(""), 0, S::npos);
41 test(S(""), SV("laenf"), 0, S::npos);
42 test(S(""), SV("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), SV("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), SV(""), 1, S::npos);
45 test(S(""), SV("bjaht"), 1, S::npos);
46 test(S(""), SV("hjlcmgpket"), 1, S::npos);
47 test(S(""), SV("htaobedqikfplcgjsmrn"), 1, S::npos)
    [all...]
  /external/libcxx/test/std/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...]
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...]

Completed in 420 milliseconds

12 3 4 5 6 7 8 91011>>