/ndk/tests/device/test-stlport/unit/ |
D | stack_test.cpp | 39 CPPUNIT_ASSERT(s.top()==69); in stack1() 41 CPPUNIT_ASSERT(s.top()==101); in stack1() 43 CPPUNIT_ASSERT(s.top()==42); in stack1() 53 CPPUNIT_ASSERT(s.top()==69); in stack2() 55 CPPUNIT_ASSERT(s.top()==101); in stack2() 57 CPPUNIT_ASSERT(s.top()==42); in stack2()
|
D | queue_test.cpp | 40 CPPUNIT_ASSERT( q.top()==101 ); in pqueue1() 42 CPPUNIT_ASSERT( q.top()==69 ); in pqueue1() 44 CPPUNIT_ASSERT( q.top()==42 ); in pqueue1()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | stack_test.cpp | 39 CPPUNIT_ASSERT(s.top()==69); in stack1() 41 CPPUNIT_ASSERT(s.top()==101); in stack1() 43 CPPUNIT_ASSERT(s.top()==42); in stack1() 53 CPPUNIT_ASSERT(s.top()==69); in stack2() 55 CPPUNIT_ASSERT(s.top()==101); in stack2() 57 CPPUNIT_ASSERT(s.top()==42); in stack2()
|
D | queue_test.cpp | 40 CPPUNIT_ASSERT( q.top()==101 ); in pqueue1() 42 CPPUNIT_ASSERT( q.top()==69 ); in pqueue1() 44 CPPUNIT_ASSERT( q.top()==42 ); in pqueue1()
|
/ndk/sources/host-tools/make-3.81/ |
D | getopt.c | 304 int top = optind; in exchange() local 316 if (nonoption_flags_len > 0 && top >= nonoption_flags_max_len) in exchange() 320 char *new_str = malloc (top + 1); in exchange() 327 '\0', top + 1 - nonoption_flags_max_len); in exchange() 328 nonoption_flags_max_len = top + 1; in exchange() 334 while (top > middle && middle > bottom) in exchange() 336 if (top - middle > middle - bottom) in exchange() 346 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange() 347 argv[top - (middle - bottom) + i] = tem; in exchange() 348 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange() [all …]
|
D | ansi2knr.c | 578 top: p = endfn; 600 goto top;
|
D | ABOUT-NLS | 39 It is also not possible to offer this additional functionality on top 86 emulation of `gettext' on top of `catgets' could not provide all the
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | binary.sed | 19 # P pop stack top 20 # D duplicate stack top 21 # x exchange top two elements 26 # l print stack (stack top is first) 27 # p print stack top 28 # q quit, print stack top if any (cq is quiet quit) 158 # (it looks for -0), \4 is a zero and we leave a lone zero as top of the
|
D | binary2.sed | 19 # P pop stack top 20 # D duplicate stack top 21 # x exchange top two elements 26 # l print stack (stack top is first) 27 # p print stack top 28 # q quit, print stack top if any (cq is quiet quit) 192 # (it looks for -0), \4 is a zero and we leave a lone zero as top of the
|
D | binary3.sed | 19 # P pop stack top 20 # D duplicate stack top 21 # x exchange top two elements 26 # l print stack (stack top is first) 27 # p print stack top 28 # q quit, print stack top if any (cq is quiet quit) 171 # (it looks for -0), \4 is a zero and we leave a lone zero as top of the
|
D | madding.sed | 8 …top of the things, and she says that's enough that I've offered ye, you great miser, and she won't…
|
D | madding.good | 1 …with the waggon and the man at the toll-bar. "Mis'ess's niece is upon the top of the things, and …
|
D | madding.inp | 1 …with the waggon and the man at the toll-bar. "Mis'ess's niece is upon the top of the things, and …
|
D | uniq.good | 208 an error. Save the top 15 values on the stack, and accept that the rest 542 if the malloc fails ... there is no way of returning to the top level with 695 offset_top current top pointer 822 the current subject position in the working slot at the top of the vector. We
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | getopt.c | 151 int top = d->optind; in exchange() local 163 if (d->__nonoption_flags_len > 0 && top >= d->__nonoption_flags_max_len) in exchange() 167 char *new_str = malloc (top + 1); in exchange() 174 '\0', top + 1 - d->__nonoption_flags_max_len); in exchange() 175 d->__nonoption_flags_max_len = top + 1; in exchange() 181 while (top > middle && middle > bottom) in exchange() 183 if (top - middle > middle - bottom) in exchange() 193 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange() 194 argv[top - (middle - bottom) + i] = tem; in exchange() 195 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange() [all …]
|
D | regexec.c | 1756 Idx top = mctx->state_log_top; in clean_state_log_if_needed() local 1768 if (top < next_state_log_idx) in clean_state_log_if_needed() 1770 memset (mctx->state_log + top + 1, '\0', in clean_state_log_if_needed() 1771 sizeof (re_dfastate_t *) * (next_state_log_idx - top)); in clean_state_log_if_needed() 4233 re_sub_match_top_t *top = mctx->sub_tops[st_idx]; in match_ctx_clean() local 4234 for (sl_idx = 0; sl_idx < top->nlasts; ++sl_idx) in match_ctx_clean() 4236 re_sub_match_last_t *last = top->lasts[sl_idx]; in match_ctx_clean() 4240 re_free (top->lasts); in match_ctx_clean() 4241 if (top->path) in match_ctx_clean() 4243 re_free (top->path->array); in match_ctx_clean() [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _stack.h | 84 reference top() { return c.back(); } in top() function 85 const_reference top() const { return c.back(); } in top() function
|
D | _queue.h | 222 const_reference top() const { return c.front(); } in _STLP_RELOPS_OPERATORS()
|
/ndk/sources/host-tools/make-3.81/autom4te.cache/ |
D | traces.0 | 181 configure.in:30: the top level]) 356 configure.in:43: the top level]) 431 configure.in:44: the top level]) 434 configure.in:45: the top level]) 476 configure.in:53: the top level]) 486 configure.in:53: the top level]) 494 configure.in:53: the top level]) 502 configure.in:53: the top level]) 519 configure.in:53: the top level]) 526 configure.in:53: the top level]) [all …]
|
/ndk/sources/host-tools/ndk-stack/regex/ |
D | regcomp.c | 1084 cset *top = &p->g->sets[p->g->ncsets]; in freeset() local 1089 if (cs == top-1) /* recover only the easy case */ in freeset() 1107 cset *top = &p->g->sets[p->g->ncsets]; in freezeset() local 1112 for (cs2 = &p->g->sets[0]; cs2 < top; cs2++) in freezeset() 1122 if (cs2 < top) { /* found one */ in freezeset()
|
/ndk/build/core/ |
D | setup-toolchain.mk | 204 WANTED_MODULES := $(call modules-get-all-installable,$(modules-get-top-list))
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
D | dash-k | 72 # TEST 1: Make sure that top-level targets that depend on targets that
|
/ndk/build/tools/ |
D | prebuilt-common.sh | 1224 echo "This is not the top of a toolchain tree: $SRC_DIR"
|
/ndk/build/tools/toolchain-patches/gdb/ |
D | 0007-find-python.patch | 244 + once (if) the re-arrangement mentioned at the top of this
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | ABOUT-NLS | 40 It is also not possible to offer this additional functionality on top 87 emulation of `gettext' on top of `catgets' could not provide all the
|