Home | History | Annotate | Download | only in string_find.last.of

Lines Matching refs:npos

12 // size_type find_last_of(charT c, size_type pos = npos) const;
25 if (x != S::npos)
34 if (x != S::npos)
42 test(S(""), 'm', 0, S::npos);
43 test(S(""), 'm', 1, S::npos);
44 test(S("kitcj"), 'm', 0, S::npos);
45 test(S("qkamf"), 'm', 1, S::npos);
47 test(S("tpsaf"), 'm', 4, S::npos);
48 test(S("lahfb"), 'm', 5, S::npos);
49 test(S("irkhs"), 'm', 6, S::npos);
50 test(S("gmfhdaipsr"), 'm', 0, S::npos);
51 test(S("kantesmpgj"), 'm', 1, S::npos);
52 test(S("odaftiegpm"), 'm', 5, S::npos);
53 test(S("oknlrstdpi"), 'm', 9, S::npos);
54 test(S("eolhfgpjqk"), 'm', 10, S::npos);
55 test(S("pcdrofikas"), 'm', 11, S::npos);
56 test(S("nbatdlmekrgcfqsophij"), 'm', 0, S::npos);
57 test(S("bnrpehidofmqtcksjgla"), 'm', 1, S::npos);
63 test(S(""), 'm', S::npos);
64 test(S("csope"), 'm', S::npos);
71 test(S(""), 'm', 0, S::npos);
72 test(S(""), 'm', 1, S::npos);
73 test(S("kitcj"), 'm', 0, S::npos);
74 test(S("qkamf"), 'm', 1, S::npos);
76 test(S("tpsaf"), 'm', 4, S::npos);
77 test(S("lahfb"), 'm', 5, S::npos);
78 test(S("irkhs"), 'm', 6, S::npos);
79 test(S("gmfhdaipsr"), 'm', 0, S::npos);
80 test(S("kantesmpgj"), 'm', 1, S::npos);
81 test(S("odaftiegpm"), 'm', 5, S::npos);
82 test(S("oknlrstdpi"), 'm', 9, S::npos);
83 test(S("eolhfgpjqk"), 'm', 10, S::npos);
84 test(S("pcdrofikas"), 'm', 11, S::npos);
85 test(S("nbatdlmekrgcfqsophij"), 'm', 0, S::npos);
86 test(S("bnrpehidofmqtcksjgla"), 'm', 1, S::npos);
92 test(S(""), 'm', S::npos);
93 test(S("csope"), 'm', S::npos);