Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 20 of 20) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/list/
Dadt.hpp24 # define BOOST_PP_LIST_CONS(head, tail) (head, tail) argument
40 # define BOOST_PP_LIST_FIRST_I(head, tail) head argument
52 # define BOOST_PP_LIST_REST_I(head, tail) tail argument
59 # define BOOST_PP_LIST_IS_CONS_(head, tail) 1 argument
/ndk/tests/build/merge-string-literals/
Dbuild.sh36 make --no-print-dir -f $NDK/build/core/build-local.mk DUMP_$1 | tail -1
38 make --no-print-dir -f $NDK/build/core/build-local.mk DUMP_$1 APP_ABI="$APP_ABI" | tail -1
/ndk/sources/host-tools/sed-4.2.1/sed/
Dcompile.c782 struct replacement *tail; local
789 tail = &root;
796 tail = tail->next =
805 ++tail->prefix_length;
810 ++tail->prefix_length;
818 tail->subst_id = *p - '0';
819 if (sub->max_id < tail->subst_id)
820 sub->max_id = tail->subst_id;
850 ++tail->prefix_length;
858 tail = tail->next =
[all …]
/ndk/
Dndk-build302 $GNUMAKE --no-print-dir -f $PROGDIR/build/core/build-local.mk $FLAGS DUMP_${VAR} | tail -1
310 …KE --no-print-dir -f $PROGDIR/build/core/build-local.mk $FLAGS DUMP_${VAR} APP_ABI=${ABI} | tail -1
Dndk-gdb124 …GNUMAKE --no-print-dir -f $ANDROID_NDK_ROOT/build/core/build-local.mk -C $PROJECT DUMP_$1 | tail -1
132 …o-print-dir -f $ANDROID_NDK_ROOT/build/core/build-local.mk -C $PROJECT DUMP_$1 APP_ABI=$2 | tail -1
/ndk/build/tools/
Ddev-platform-expand.sh54 PLATFORM=android-$(echo $API_LEVELS | tr ' ' '\n' | tail -1)
Dgen-platforms.sh440 cat $TMPL | tail -10
529 cat $TMPL | tail -10
568 cat $TMPL | tail -10
Dcommon-build-host-funcs.sh257 echo $1 | tr '-' '\n' | tail -1
Dmake-standalone-toolchain.sh169 TARGET_ABI=$(convert_arch_to_abi $ARCH | tr ',' '\n' | tail -n 1)
Dbuild-llvm.sh250 LLVM_VERSION_MINOR=`echo $LLVM_VERSION | tr '.' '\n' | tail -n 1`
Dbuild-host-gcc.sh376 echo $1 | tr '-' '\n' | tail -1
/ndk/sources/host-tools/make-3.81/
Dread.c200 struct dep *tail = read_makefiles; in read_all_makefiles() local
208 while (d->next != tail) in read_all_makefiles()
245 struct dep *tail = read_makefiles; in read_all_makefiles() local
247 while (tail != 0 && tail->next != 0) in read_all_makefiles()
248 tail = tail->next; in read_all_makefiles()
257 if (tail == 0) in read_all_makefiles()
260 tail->next = d; in read_all_makefiles()
261 tail = d; in read_all_makefiles()
263 if (tail != 0) in read_all_makefiles()
264 tail->next = 0; in read_all_makefiles()
/ndk/sources/host-tools/ndk-stack/regex/
Dengine.c299 char *tail; /* string unmatched by rest of RE */ in dissect() local
352 tail = slow(m, rest, stop, es, stopst); in dissect()
353 if (tail == stop) in dissect()
377 tail = slow(m, rest, stop, es, stopst); in dissect()
378 if (tail == stop) in dissect()
414 tail = slow(m, rest, stop, es, stopst); in dissect()
415 if (tail == stop) in dissect()
/ndk/tests/
Drun-tests.sh509 $GNUMAKE --no-print-dir -f $NDK/build/core/build-local.mk -C $PROJECT DUMP_$VAR | tail -1
534 TARGET_TOOLCHAIN_VERSION=`echo $TARGET_TOOLCHAIN | tr '-' '\n' | tail -1`
805 TARGET_TOOLCHAIN_VERSION=`echo $TARGET_TOOLCHAIN | tr '-' '\n' | tail -1`
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dfallback_malloc.ipp98 if (p->len > nelems) { // chunk is larger, shorten, and return the tail
/ndk/sources/host-tools/sed-4.2.1/doc/
Dsed.info92 * tail:: Printing the last lines
244 particularly useful if the input is coming from the likes of `tail
1185 * tail:: Printing the last lines
1753 File: sed.info, Node: head, Next: tail, Prev: wc -l, Up: Examples
1766 File: sed.info, Node: tail, Next: uniq, Prev: head, Up: Examples
1795 an implementation of `tail' using a simple "sliding window."
1817 File: sed.info, Node: uniq, Next: uniq -d, Prev: tail, Up: Examples
2545 Node: tail61528
Dsed.texi125 * tail:: Printing the last lines
367 the likes of @samp{tail -f}, and you wish to see the transformed
1644 * tail:: Printing the last lines
2371 @node tail
2405 and @code{D} commands, here is an implementation of @command{tail}
Dsed-in.texi124 * tail:: Printing the last lines
366 the likes of @samp{tail -f}, and you wish to see the transformed
1643 * tail:: Printing the last lines
2248 @node tail
2280 and @code{D} commands, here is an implementation of @command{tail}
/ndk/build/gmsl/
D__gmsl197 # Function: rest (same as LISP's cdr, or tail)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dalgorithm3997 // sort smaller range with recursive call and larger with tail recursion elimination
4453 // merge smaller range with recurisve call and larger with tail recursion elimination