Home
last modified time | relevance | path

Searched refs:sc (Results 1 – 23 of 23) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/
Dsearch_n_pred.pass.cpp125 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
126 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0, count_equal()) == Iter(ic)); in test()
127 assert(count_equal::count <= sc); in test()
129 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0, count_equal()) == Iter(ic)); in test()
130 assert(count_equal::count <= sc); in test()
132 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0, count_equal()) == Iter(ic)); in test()
133 assert(count_equal::count <= sc); in test()
135 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0, count_equal()) == Iter(ic)); in test()
136 assert(count_equal::count <= sc); in test()
138 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0, count_equal()) == Iter(ic+sc)); in test()
[all …]
Dsearch_n.pass.cpp60 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
61 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic)); in test()
62 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic)); in test()
63 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0) == Iter(ic)); in test()
64 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0) == Iter(ic)); in test()
65 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0) == Iter(ic+sc)); in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
Dreverse_copy.pass.cpp43 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
44 int jc[sc] = {-1}; in test()
45 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc)); in test()
46 assert(base(r) == jc+sc); in test()
Dreverse.pass.cpp40 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
41 std::reverse(Iter(ic), Iter(ic+sc)); in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/
Drotate.pass.cpp56 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
57 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc)); in test()
58 assert(base(r) == ic+sc); in test()
62 r = std::rotate(Iter(ic), Iter(ic+1), Iter(ic+sc)); in test()
67 r = std::rotate(Iter(ic), Iter(ic+2), Iter(ic+sc)); in test()
72 r = std::rotate(Iter(ic), Iter(ic+sc), Iter(ic+sc)); in test()
254 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test1() local
255 for (int i = 0; i < sc; ++i) in test1()
257 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc)); in test1()
258 assert(base(r) == ic+sc); in test1()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
Dunique_pred.pass.cpp58 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
60 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); in test()
63 assert(count_equal::count == sc-1); in test()
147 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test1() local
149 r = std::unique(Iter(ic), Iter(ic+sc), count_equal()); in test1()
152 assert(count_equal::count == sc-1); in test1()
Dunique_copy_pred.pass.cpp60 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
61 int jc[sc] = {-1}; in test()
63 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc), count_equal()); in test()
66 assert(count_equal::count == sc-1); in test()
Dunique.pass.cpp44 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
45 r = std::unique(Iter(ic), Iter(ic+sc)); in test()
117 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test1() local
118 r = std::unique(Iter(ic), Iter(ic+sc)); in test1()
Dunique_copy.pass.cpp45 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
46 int jc[sc] = {-1}; in test()
47 r = std::unique_copy(InIter(ic), InIter(ic+sc), OutIter(jc)); in test()
/ndk/tests/device/test-stlport_shared-exception/jni/
Deh44.cpp32 cc sc(ca(1), ca(1)); in main() local
/ndk/tests/device/test-stlport_static-exception/jni/
Deh44.cpp32 cc sc(ca(1), ca(1)); in main() local
/ndk/sources/host-tools/make-3.81/
Dmake.lnk3 LIB glob/glob.lib LIB:sc.lib LIB:amiga.lib
DREADME.Amiga57 Copy make somewhere in your search path (eg. sc:c or sc:bin).
DMakefile.ami26 CC = sc
80 bindir = sc:c
DSMakefile31 CC = sc
86 bindir = sc:c
186 copy make sc:c
/ndk/sources/host-tools/make-3.81/glob/
DMakefile.ami23 CC = sc
DSMakefile23 CC = sc
/ndk/sources/host-tools/nawk-20071023/
Dlex.c167 int sc = 0; /* 1 => return a } right now */ variable
178 if (sc) { in yylex()
179 sc = 0; in yylex()
328 sc = 1; in yylex()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/includes/
Dincludes.pass.cpp32 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
Dincludes_comp.pass.cpp33 const unsigned sc = sizeof(ic)/sizeof(ic[0]); in test() local
/ndk/sources/host-tools/make-3.81/doc/
Dfdl.texi96 @sc{ascii} without markup, Texinfo input format, La@TeX{} input
Dmake.texi8760 Program to make @TeX{} @sc{dvi} files from @TeX{} source;
8766 Program to make @TeX{} @sc{dvi} files from Texinfo source;
/ndk/sources/host-tools/make-3.81/config/
Dtexinfo.tex2036 % Explicit font changes: @r, @sc, undocumented @ii.
2038 \def\sc#1{{\smallcaps#1}} % smallcaps font
3366 \definedummyword\sc