/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/ |
D | owner_less.pass.cpp | 48 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/ |
D | regex2.h | 113 #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
|
D | regcomp.c | 627 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 …]
|
D | engine.c | 488 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/ |
D | index.pass.cpp | 29 const S& cs = s; in main() local 30 for (S::size_type i = 0; i < cs.size(); ++i) in main() 33 assert(cs[i] == s[i]); in main() 35 assert(cs[cs.size()] == '\0'); in main() 43 const S& cs = s; in main() local 44 for (S::size_type i = 0; i < cs.size(); ++i) in main() 47 assert(cs[i] == s[i]); in main() 49 assert(cs[cs.size()] == '\0'); in main()
|
D | back.pass.cpp | 28 const S& cs = s; in test() local 29 assert(&cs.back() == &cs[cs.size()-1]); in test() 30 assert(&s.back() == &s[cs.size()-1]); in test()
|
D | at.pass.cpp | 27 const S& cs = s; in test() local 29 assert(cs.at(pos) == cs[pos]); in test() 30 assert(pos < cs.size()); in test()
|
D | front.pass.cpp | 28 const S& cs = s; in test() local 29 assert(&cs.front() == &cs[0]); in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.iterators/ |
D | end.pass.cpp | 24 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()
|
D | rend.pass.cpp | 24 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()
|
D | rbegin.pass.cpp | 24 const S& cs = s; in test() local 26 typename S::const_reverse_iterator cb = cs.rbegin(); in test()
|
D | begin.pass.cpp | 24 const S& cs = s; in test() local 26 typename S::const_iterator cb = cs.begin(); in test()
|
/ndk/sources/host-tools/make-3.81/ |
D | main.c | 2404 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 …]
|
D | AUTHORS | 59 Han-Wen Nienhuys <hanwen@cs.uu.nl>
|
D | ABOUT-NLS | 186 Ready PO files af am ar az be bg bs ca cs da de el en en_GB eo es 320 af am ar az be bg bs ca cs da de el en en_GB eo es
|
D | NEWS | 298 <hanwen@cs.uu.nl>. 302 function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
|
D | configure | 6925 const charset cs; 6968 return !cs[0] && !zero.x;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_copy/ |
D | copy.pass.cpp | 28 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/make-3.81/config/ |
D | codeset.m4 | 15 [char* cs = nl_langinfo(CODESET);],
|
/ndk/tests/device/test-stlport/unit/ |
D | string_test.cpp | 539 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-gnustl-full/unit/ |
D | string_test.cpp | 539 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/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | UnwindRegistersSave.S | 44 # skip cs 84 # skip cs
|
D | UnwindRegistersRestore.S | 49 # skip cs 88 # skip cs
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | NEWS | 157 running on (thanks to meyering@cs.utexas.edu (Jim Meyering) for
|
/ndk/sources/host-tools/nawk-20071023/ |
D | FIXES | 644 thanks to Bill Jones (jones@cs.usask.ca)
|