1//===----------------------------------------------------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <string>
11
12// size_type find_first_of(const basic_string& str, size_type pos = 0) const;
13
14#include <string>
15#include <cassert>
16
17#include "min_allocator.h"
18
19template <class S>
20void
21test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x)
22{
23    assert(s.find_first_of(str, pos) == x);
24    if (x != S::npos)
25        assert(pos <= x && x < s.size());
26}
27
28template <class S>
29void
30test(const S& s, const S& str, typename S::size_type x)
31{
32    assert(s.find_first_of(str) == x);
33    if (x != S::npos)
34        assert(x < s.size());
35}
36
37template <class S>
38void test0()
39{
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);
48    test(S("fodgq"), S(""), 0, S::npos);
49    test(S("qanej"), S("dfkap"), 0, 1);
50    test(S("clbao"), S("ihqrfebgad"), 0, 2);
51    test(S("mekdn"), S("ngtjfcalbseiqrphmkdo"), 0, 0);
52    test(S("srdfq"), S(""), 1, S::npos);
53    test(S("oemth"), S("ikcrq"), 1, S::npos);
54    test(S("cdaih"), S("dmajblfhsg"), 1, 1);
55    test(S("qohtk"), S("oqftjhdmkgsblacenirp"), 1, 1);
56    test(S("cshmd"), S(""), 2, S::npos);
57    test(S("lhcdo"), S("oebqi"), 2, 4);
58    test(S("qnsoh"), S("kojhpmbsfe"), 2, 2);
59    test(S("pkrof"), S("acbsjqogpltdkhinfrem"), 2, 2);
60    test(S("fmtsp"), S(""), 4, S::npos);
61    test(S("khbpm"), S("aobjd"), 4, S::npos);
62    test(S("pbsji"), S("pcbahntsje"), 4, S::npos);
63    test(S("mprdj"), S("fhepcrntkoagbmldqijs"), 4, 4);
64    test(S("eqmpa"), S(""), 5, S::npos);
65    test(S("omigs"), S("kocgb"), 5, S::npos);
66    test(S("onmje"), S("fbslrjiqkm"), 5, S::npos);
67    test(S("oqmrj"), S("jeidpcmalhfnqbgtrsko"), 5, S::npos);
68    test(S("schfa"), S(""), 6, S::npos);
69    test(S("igdsc"), S("qngpd"), 6, S::npos);
70    test(S("brqgo"), S("rodhqklgmb"), 6, S::npos);
71    test(S("tnrph"), S("thdjgafrlbkoiqcspmne"), 6, S::npos);
72    test(S("hcjitbfapl"), S(""), 0, S::npos);
73    test(S("daiprenocl"), S("ashjd"), 0, 0);
74    test(S("litpcfdghe"), S("mgojkldsqh"), 0, 0);
75    test(S("aidjksrolc"), S("imqnaghkfrdtlopbjesc"), 0, 0);
76    test(S("qpghtfbaji"), S(""), 1, S::npos);
77    test(S("gfshlcmdjr"), S("nadkh"), 1, 3);
78    test(S("nkodajteqp"), S("ofdrqmkebl"), 1, 1);
79    test(S("gbmetiprqd"), S("bdfjqgatlksriohemnpc"), 1, 1);
80    test(S("crnklpmegd"), S(""), 5, S::npos);
81    test(S("jsbtafedoc"), S("prqgn"), 5, S::npos);
82    test(S("qnmodrtkeb"), S("pejafmnokr"), 5, 5);
83    test(S("cpebqsfmnj"), S("odnqkgijrhabfmcestlp"), 5, 5);
84    test(S("lmofqdhpki"), S(""), 9, S::npos);
85    test(S("hnefkqimca"), S("rtjpa"), 9, 9);
86    test(S("drtasbgmfp"), S("ktsrmnqagd"), 9, S::npos);
87    test(S("lsaijeqhtr"), S("rtdhgcisbnmoaqkfpjle"), 9, 9);
88    test(S("elgofjmbrq"), S(""), 10, S::npos);
89    test(S("mjqdgalkpc"), S("dplqa"), 10, S::npos);
90    test(S("kthqnfcerm"), S("dkacjoptns"), 10, S::npos);
91    test(S("dfsjhanorc"), S("hqfimtrgnbekpdcsjalo"), 10, S::npos);
92    test(S("eqsgalomhb"), S(""), 11, S::npos);
93    test(S("akiteljmoh"), S("lofbc"), 11, S::npos);
94    test(S("hlbdfreqjo"), S("astoegbfpn"), 11, S::npos);
95    test(S("taqobhlerg"), S("pdgreqomsncafklhtibj"), 11, S::npos);
96    test(S("snafbdlghrjkpqtoceim"), S(""), 0, S::npos);
97    test(S("aemtbrgcklhndjisfpoq"), S("lbtqd"), 0, 3);
98    test(S("pnracgfkjdiholtbqsem"), S("tboimldpjh"), 0, 0);
99    test(S("dicfltehbsgrmojnpkaq"), S("slcerthdaiqjfnobgkpm"), 0, 0);
100    test(S("jlnkraeodhcspfgbqitm"), S(""), 1, S::npos);
101    test(S("lhosrngtmfjikbqpcade"), S("aqibs"), 1, 3);
102    test(S("rbtaqjhgkneisldpmfoc"), S("gtfblmqinc"), 1, 1);
103    test(S("gpifsqlrdkbonjtmheca"), S("mkqpbtdalgniorhfescj"), 1, 1);
104    test(S("hdpkobnsalmcfijregtq"), S(""), 10, S::npos);
105    test(S("jtlshdgqaiprkbcoenfm"), S("pblas"), 10, 10);
106    test(S("fkdrbqltsgmcoiphneaj"), S("arosdhcfme"), 10, 10);
107    test(S("crsplifgtqedjohnabmk"), S("blkhjeogicatqfnpdmsr"), 10, 10);
108    test(S("niptglfbosehkamrdqcj"), S(""), 19, S::npos);
109    test(S("copqdhstbingamjfkler"), S("djkqc"), 19, S::npos);
110    test(S("mrtaefilpdsgocnhqbjk"), S("lgokshjtpb"), 19, 19);
111    test(S("kojatdhlcmigpbfrqnes"), S("bqjhtkfepimcnsgrlado"), 19, 19);
112    test(S("eaintpchlqsbdgrkjofm"), S(""), 20, S::npos);
113    test(S("gjnhidfsepkrtaqbmclo"), S("nocfa"), 20, S::npos);
114    test(S("spocfaktqdbiejlhngmr"), S("bgtajmiedc"), 20, S::npos);
115    test(S("rphmlekgfscndtaobiqj"), S("lsckfnqgdahejiopbtmr"), 20, S::npos);
116    test(S("liatsqdoegkmfcnbhrpj"), S(""), 21, S::npos);
117    test(S("binjagtfldkrspcomqeh"), S("gfsrt"), 21, S::npos);
118    test(S("latkmisecnorjbfhqpdg"), S("pfsocbhjtm"), 21, S::npos);
119    test(S("lecfratdjkhnsmqpoigb"), S("tpflmdnoicjgkberhqsa"), 21, S::npos);
120}
121
122template <class S>
123void test1()
124{
125    test(S(""), S(""), S::npos);
126    test(S(""), S("laenf"), S::npos);
127    test(S(""), S("pqlnkmbdjo"), S::npos);
128    test(S(""), S("qkamfogpnljdcshbreti"), S::npos);
129    test(S("nhmko"), S(""), S::npos);
130    test(S("lahfb"), S("irkhs"), 2);
131    test(S("gmfhd"), S("kantesmpgj"), 0);
132    test(S("odaft"), S("oknlrstdpiqmjbaghcfe"), 0);
133    test(S("eolhfgpjqk"), S(""), S::npos);
134    test(S("nbatdlmekr"), S("bnrpe"), 0);
135    test(S("jdmciepkaq"), S("jtdaefblso"), 0);
136    test(S("hkbgspoflt"), S("oselktgbcapndfjihrmq"), 0);
137    test(S("gprdcokbnjhlsfmtieqa"), S(""), S::npos);
138    test(S("qjghlnftcaismkropdeb"), S("bjaht"), 1);
139    test(S("pnalfrdtkqcmojiesbhg"), S("hjlcmgpket"), 0);
140    test(S("pniotcfrhqsmgdkjbael"), S("htaobedqikfplcgjsmrn"), 0);
141}
142
143int main()
144{
145    {
146    typedef std::string S;
147    test0<S>();
148    test1<S>();
149    }
150#if __cplusplus >= 201103L
151    {
152    typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
153    test0<S>();
154    test1<S>();
155    }
156#endif
157}
158