//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // size_type find_first_not_of(const basic_string& str, size_type pos = 0) const; #include #include #include "test_macros.h" #include "min_allocator.h" template void test(const S& s, const S& str, typename S::size_type pos, typename S::size_type x) { assert(s.find_first_not_of(str, pos) == x); if (x != S::npos) assert(pos <= x && x < s.size()); } template void test(const S& s, const S& str, typename S::size_type x) { assert(s.find_first_not_of(str) == x); if (x != S::npos) assert(x < s.size()); } template void test0() { test(S(""), S(""), 0, S::npos); test(S(""), S("laenf"), 0, S::npos); test(S(""), S("pqlnkmbdjo"), 0, S::npos); test(S(""), S("qkamfogpnljdcshbreti"), 0, S::npos); test(S(""), S(""), 1, S::npos); test(S(""), S("bjaht"), 1, S::npos); test(S(""), S("hjlcmgpket"), 1, S::npos); test(S(""), S("htaobedqikfplcgjsmrn"), 1, S::npos); test(S("fodgq"), S(""), 0, 0); test(S("qanej"), S("dfkap"), 0, 0); test(S("clbao"), S("ihqrfebgad"), 0, 0); test(S("mekdn"), S("ngtjfcalbseiqrphmkdo"), 0, S::npos); test(S("srdfq"), S(""), 1, 1); test(S("oemth"), S("ikcrq"), 1, 1); test(S("cdaih"), S("dmajblfhsg"), 1, 3); test(S("qohtk"), S("oqftjhdmkgsblacenirp"), 1, S::npos); test(S("cshmd"), S(""), 2, 2); test(S("lhcdo"), S("oebqi"), 2, 2); test(S("qnsoh"), S("kojhpmbsfe"), 2, S::npos); test(S("pkrof"), S("acbsjqogpltdkhinfrem"), 2, S::npos); test(S("fmtsp"), S(""), 4, 4); test(S("khbpm"), S("aobjd"), 4, 4); test(S("pbsji"), S("pcbahntsje"), 4, 4); test(S("mprdj"), S("fhepcrntkoagbmldqijs"), 4, S::npos); test(S("eqmpa"), S(""), 5, S::npos); test(S("omigs"), S("kocgb"), 5, S::npos); test(S("onmje"), S("fbslrjiqkm"), 5, S::npos); test(S("oqmrj"), S("jeidpcmalhfnqbgtrsko"), 5, S::npos); test(S("schfa"), S(""), 6, S::npos); test(S("igdsc"), S("qngpd"), 6, S::npos); test(S("brqgo"), S("rodhqklgmb"), 6, S::npos); test(S("tnrph"), S("thdjgafrlbkoiqcspmne"), 6, S::npos); test(S("hcjitbfapl"), S(""), 0, 0); test(S("daiprenocl"), S("ashjd"), 0, 2); test(S("litpcfdghe"), S("mgojkldsqh"), 0, 1); test(S("aidjksrolc"), S("imqnaghkfrdtlopbjesc"), 0, S::npos); test(S("qpghtfbaji"), S(""), 1, 1); test(S("gfshlcmdjr"), S("nadkh"), 1, 1); test(S("nkodajteqp"), S("ofdrqmkebl"), 1, 4); test(S("gbmetiprqd"), S("bdfjqgatlksriohemnpc"), 1, S::npos); test(S("crnklpmegd"), S(""), 5, 5); test(S("jsbtafedoc"), S("prqgn"), 5, 5); test(S("qnmodrtkeb"), S("pejafmnokr"), 5, 6); test(S("cpebqsfmnj"), S("odnqkgijrhabfmcestlp"), 5, S::npos); test(S("lmofqdhpki"), S(""), 9, 9); test(S("hnefkqimca"), S("rtjpa"), 9, S::npos); test(S("drtasbgmfp"), S("ktsrmnqagd"), 9, 9); test(S("lsaijeqhtr"), S("rtdhgcisbnmoaqkfpjle"), 9, S::npos); test(S("elgofjmbrq"), S(""), 10, S::npos); test(S("mjqdgalkpc"), S("dplqa"), 10, S::npos); test(S("kthqnfcerm"), S("dkacjoptns"), 10, S::npos); test(S("dfsjhanorc"), S("hqfimtrgnbekpdcsjalo"), 10, S::npos); test(S("eqsgalomhb"), S(""), 11, S::npos); test(S("akiteljmoh"), S("lofbc"), 11, S::npos); test(S("hlbdfreqjo"), S("astoegbfpn"), 11, S::npos); test(S("taqobhlerg"), S("pdgreqomsncafklhtibj"), 11, S::npos); test(S("snafbdlghrjkpqtoceim"), S(""), 0, 0); test(S("aemtbrgcklhndjisfpoq"), S("lbtqd"), 0, 0); test(S("pnracgfkjdiholtbqsem"), S("tboimldpjh"), 0, 1); test(S("dicfltehbsgrmojnpkaq"), S("slcerthdaiqjfnobgkpm"), 0, S::npos); test(S("jlnkraeodhcspfgbqitm"), S(""), 1, 1); test(S("lhosrngtmfjikbqpcade"), S("aqibs"), 1, 1); test(S("rbtaqjhgkneisldpmfoc"), S("gtfblmqinc"), 1, 3); test(S("gpifsqlrdkbonjtmheca"), S("mkqpbtdalgniorhfescj"), 1, S::npos); test(S("hdpkobnsalmcfijregtq"), S(""), 10, 10); test(S("jtlshdgqaiprkbcoenfm"), S("pblas"), 10, 11); test(S("fkdrbqltsgmcoiphneaj"), S("arosdhcfme"), 10, 13); test(S("crsplifgtqedjohnabmk"), S("blkhjeogicatqfnpdmsr"), 10, S::npos); test(S("niptglfbosehkamrdqcj"), S(""), 19, 19); test(S("copqdhstbingamjfkler"), S("djkqc"), 19, 19); test(S("mrtaefilpdsgocnhqbjk"), S("lgokshjtpb"), 19, S::npos); test(S("kojatdhlcmigpbfrqnes"), S("bqjhtkfepimcnsgrlado"), 19, S::npos); test(S("eaintpchlqsbdgrkjofm"), S(""), 20, S::npos); test(S("gjnhidfsepkrtaqbmclo"), S("nocfa"), 20, S::npos); test(S("spocfaktqdbiejlhngmr"), S("bgtajmiedc"), 20, S::npos); test(S("rphmlekgfscndtaobiqj"), S("lsckfnqgdahejiopbtmr"), 20, S::npos); test(S("liatsqdoegkmfcnbhrpj"), S(""), 21, S::npos); test(S("binjagtfldkrspcomqeh"), S("gfsrt"), 21, S::npos); test(S("latkmisecnorjbfhqpdg"), S("pfsocbhjtm"), 21, S::npos); test(S("lecfratdjkhnsmqpoigb"), S("tpflmdnoicjgkberhqsa"), 21, S::npos); } template void test1() { test(S(""), S(""), S::npos); test(S(""), S("laenf"), S::npos); test(S(""), S("pqlnkmbdjo"), S::npos); test(S(""), S("qkamfogpnljdcshbreti"), S::npos); test(S("nhmko"), S(""), 0); test(S("lahfb"), S("irkhs"), 0); test(S("gmfhd"), S("kantesmpgj"), 2); test(S("odaft"), S("oknlrstdpiqmjbaghcfe"), S::npos); test(S("eolhfgpjqk"), S(""), 0); test(S("nbatdlmekr"), S("bnrpe"), 2); test(S("jdmciepkaq"), S("jtdaefblso"), 2); test(S("hkbgspoflt"), S("oselktgbcapndfjihrmq"), S::npos); test(S("gprdcokbnjhlsfmtieqa"), S(""), 0); test(S("qjghlnftcaismkropdeb"), S("bjaht"), 0); test(S("pnalfrdtkqcmojiesbhg"), S("hjlcmgpket"), 1); test(S("pniotcfrhqsmgdkjbael"), S("htaobedqikfplcgjsmrn"), S::npos); } int main() { { typedef std::string S; test0(); test1(); } #if TEST_STD_VER >= 11 { typedef std::basic_string, min_allocator> S; test0(); test1(); } #endif #if TEST_STD_VER > 3 { // LWG 2946 std::string s = " !"; assert(s.find_first_not_of({"abc", 1}) == 0); } #endif }