Home
last modified time | relevance | path

Searched refs:cs (Results 1 – 25 of 40) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
Downer_less.pass.cpp48 CS cs; in main() local
50 assert(!cs(p1, p2)); in main()
51 assert(!cs(p2, p1)); in main()
52 assert(cs(p1 ,p3) || cs(p3, p1)); in main()
53 assert(cs(p3, p1) == cs(p3, p2)); in main()
55 assert(!cs(p1, w2)); in main()
56 assert(!cs(p2, w1)); in main()
57 assert(cs(p1, w3) || cs(p3, w1)); in main()
58 assert(cs(p3, w1) == cs(p3, w2)); in main()
62 CS cs; in main() local
[all …]
/ndk/sources/host-tools/ndk-stack/regex/
Dregex2.h113 #define CHadd(cs, c) ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c)) argument
114 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c)) argument
115 #define CHIN(cs, c) ((cs)->ptr[(uch)(c)] & (cs)->mask) argument
116 #define MCadd(p, cs, cp) mcadd(p, cs, cp) /* regcomp() internal fns */ argument
117 #define MCsub(p, cs, cp) mcsub(p, cs, cp) argument
118 #define MCin(p, cs, cp) mcin(p, cs, cp) argument
Dregcomp.c627 cset *cs; in p_bracket() local
642 if ((cs = allocset(p)) == NULL) { in p_bracket()
650 CHadd(cs, ']'); in p_bracket()
652 CHadd(cs, '-'); in p_bracket()
654 p_b_term(p, cs); in p_bracket()
656 CHadd(cs, '-'); in p_bracket()
660 freeset(p, cs); in p_bracket()
669 if (CHIN(cs, i) && isalpha(i)) { in p_bracket()
672 CHadd(cs, ci); in p_bracket()
674 if (cs->multis != NULL) in p_bracket()
[all …]
Dengine.c488 cset *cs; in backref() local
507 cs = &m->g->sets[OPND(s)]; in backref()
508 if (sp == stop || !CHIN(cs, *sp++)) in backref()
845 cset *cs; in step() local
885 cs = &g->sets[OPND(s)]; in step()
886 if (!NONCHAR(ch) && CHIN(cs, ch)) in step()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.access/
Dindex.pass.cpp25 const S& cs = s; in main() local
26 for (S::size_type i = 0; i < cs.size(); ++i) in main()
29 assert(cs[i] == s[i]); in main()
31 assert(cs[cs.size()] == '\0'); in main()
39 const S& cs = s; in main() local
40 for (S::size_type i = 0; i < cs.size(); ++i) in main()
43 assert(cs[i] == s[i]); in main()
45 assert(cs[cs.size()] == '\0'); in main()
Dback.pass.cpp24 const S& cs = s; in test() local
25 assert(&cs.back() == &cs[cs.size()-1]); in test()
26 assert(&s.back() == &s[cs.size()-1]); in test()
Dat.pass.cpp27 const S& cs = s; in test() local
29 assert(cs.at(pos) == cs[pos]); in test()
30 assert(pos < cs.size()); in test()
Dfront.pass.cpp24 const S& cs = s; in test() local
25 assert(&cs.front() == &cs[0]); in test()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.iterators/
Dend.pass.cpp24 const S& cs = s; in test() local
26 typename S::const_iterator ce = cs.end(); in test()
30 assert(ce == cs.begin()); in test()
33 assert(ce - cs.begin() == cs.size()); in test()
Drend.pass.cpp24 const S& cs = s; in test() local
26 typename S::const_reverse_iterator ce = cs.rend(); in test()
30 assert(ce == cs.rbegin()); in test()
33 assert(ce - cs.rbegin() == cs.size()); in test()
Drbegin.pass.cpp24 const S& cs = s; in test() local
26 typename S::const_reverse_iterator cb = cs.rbegin(); in test()
Dbegin.pass.cpp24 const S& cs = s; in test() local
26 typename S::const_iterator cb = cs.begin(); in test()
/ndk/sources/host-tools/make-3.81/
Dmain.c2404 register const struct command_switch *cs; in decode_switches() local
2435 for (cs = switches; cs->c != '\0'; ++cs) in decode_switches()
2436 if (cs->c == c) in decode_switches()
2442 int doit = !env || cs->env; in decode_switches()
2444 switch (cs->type) in decode_switches()
2455 *(int *) cs->value_ptr = cs->type == flag; in decode_switches()
2463 optarg = cs->noarg_value; in decode_switches()
2467 cs->c); in decode_switches()
2471 sl = *(struct stringlist **) cs->value_ptr; in decode_switches()
2479 *(struct stringlist **) cs->value_ptr = sl; in decode_switches()
[all …]
DAUTHORS59 Han-Wen Nienhuys <hanwen@cs.uu.nl>
/ndk/sources/host-tools/sed-4.2.1/m4/
Dcodeset.m413 [char* cs = nl_langinfo(CODESET); return !cs;],
Dlocale-fr.m437 const char *cs = nl_langinfo (CODESET);
38 if (cs[0] == '\0' || strcmp (cs, "ASCII") == 0 || strcmp (cs, "646") == 0)
131 const char *cs = nl_langinfo (CODESET);
132 if (cs[0] == '\0' || strcmp (cs, "ASCII") == 0 || strcmp (cs, "646") == 0)
Dlocale-zh.m440 const char *cs = nl_langinfo (CODESET);
41 if (cs[0] == '\0' || strcmp (cs, "ASCII") == 0 || strcmp (cs, "646") == 0)
Dlocale-ja.m439 const char *cs = nl_langinfo (CODESET);
40 if (cs[0] == '\0' || strcmp (cs, "ASCII") == 0 || strcmp (cs, "646") == 0)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_copy/
Dcopy.pass.cpp28 const S& cs = str; in test() local
29 typename S::size_type r = cs.copy(s, n, pos); in test()
30 assert(pos <= cs.size()); in test()
31 typename S::size_type rlen = std::min(n, cs.size() - pos); in test()
34 assert(S::traits_type::eq(cs[pos+r], s[r])); in test()
/ndk/sources/host-tools/sed-4.2.1/po/
DLINGUAS3 cs
/ndk/sources/host-tools/make-3.81/config/
Dcodeset.m415 [char* cs = nl_langinfo(CODESET);],
/ndk/sources/host-tools/sed-4.2.1/
DTHANKS36 Michel de Ruiter <mdruiter@cs.vu.nl>
/ndk/sources/host-tools/sed-4.2.1/lib/
Dconfig.charset153 for l in cs cs_CZ hr hr_HR hu hu_HU pl pl_PL ro ro_RO sk sk_SK sl \
/ndk/tests/device/test-gnustl-full/unit/
Dstring_test.cpp539 string const& cs = s; in replace() local
553 s.replace(i, i + 3, ci + 3, cs.end()); in replace()
565 s.replace(i, i + 3, ci + 1, cs.end()); in replace()
575 s.replace(s.begin() + 4, s.end(), cs.begin(), cs.end()); in replace()
/ndk/tests/device/test-stlport/unit/
Dstring_test.cpp539 string const& cs = s; in replace() local
553 s.replace(i, i + 3, ci + 3, cs.end()); in replace()
565 s.replace(i, i + 3, ci + 1, cs.end()); in replace()
575 s.replace(s.begin() + 4, s.end(), cs.begin(), cs.end()); in replace()

12