/ndk/tests/build/awk-trailing-r/jni/ |
Android.mk | 3 LOCAL_MODULE := awk-trailing-r 4 LOCAL_SRC_FILES := awk-trailing-r.c
|
/build/tools/ |
print_module_licenses.sh | 2 find . -name MODULE_LICENSE_\* | sed 's/\/MODULE_LICENSE_/\ /' | sed 's/\.\///' | awk '{ print $2 " " $1; }' | sort
|
/external/e2fsprogs/misc/ |
profile-to-c.awk | 1 #!/bin/awk
|
/external/libpng/scripts/ |
pnglibconf.mak | 6 # given just 'awk', a C preprocessor and standard command line utilities 9 # the make command line (AWK='nawk' for example). 10 AWK = gawk 11 AWK = mawk 12 AWK = nawk 13 AWK = one-true-awk 14 AWK = awk # Crashes on SunOS 5.10 - use 'nawk' 38 $(AWK) -f "$(srcdir)/scripts/dfn.awk" out="pnglibconf.tmp" pnglibconf.out 1>& [all...] |
/external/jemalloc/include/jemalloc/internal/ |
public_unnamespace.sh | 4 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
|
public_namespace.sh | 4 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
|
/external/libedit/src/ |
Makefile.am | 11 AWK=$(AWK) sh $(srcdir)/makelist -h $(srcdir)/vi.c > $@ 14 AWK=$(AWK) sh $(srcdir)/makelist -h $(srcdir)/emacs.c > $@ 17 AWK=$(AWK) sh $(srcdir)/makelist -h $(srcdir)/common.c > $@ 20 AWK=$(AWK) sh $(srcdir)/makelist -fh $(AHDR) > $@ 23 AWK=$(AWK) sh $(srcdir)/makelist -bh $(ASRC) > $ [all...] |
/external/skia/experimental/tools/ |
multipage_pdf_profiler.sh | 14 skp_size=$(echo $r | awk '{ print $1 }') 15 mem0=$(echo $r | awk '{ print $2 }') 16 mem1=$("$MULTIPAGE_PDF_PROFILER_EXE" 1 "$skp" | awk '{ print $2 }')
|
/external/valgrind/drd/tests/ |
compare_error_count_with | 3 awk -v count=50000 '/ERROR SUMMARY/{if ($4 <= count) print "Total error count is below threshold."; else print "Total error count is above threshold" }'
|
/external/e2fsprogs/lib/et/ |
compile_et.sh.in | 6 AWK=@AWK@ 32 if test ! -f "$DIR/et_h.awk" || test ! -f "$DIR/et_c.awk" ; then 35 if test ! -f "$DIR/et_h.awk" || test ! -f "$DIR/et_c.awk" ; then 49 $AWK -f "${DIR}/et_h.awk" "outfile=${BASE}.h.$$" "outfn=${BASE}.h" "$ROOT.et" 56 $AWK -f "${DIR}/et_c.awk" "outfile=${BASE}.c.$$" "outfn=${BASE}.c" "$ROOT.et [all...] |
/external/e2fsprogs/lib/ss/ |
mk_cmds.sh.in | 8 AWK=@AWK@ 32 if test ! -f $DIR/ct_c.sed || test ! -f $DIR/ct_c.awk ; then 35 if test ! -f "$DIR/ct_c.sed" || test ! -f "$DIR/ct_c.awk" ; then 52 | ${AWK} -f "${DIR}/ct_c.awk" "rootname=${ROOT}" "outfile=${TMP}" -
|
/external/libpng/projects/owatcom/ |
pngconfig.mak | 22 # Read awk from the environment if set, else it can be set on the command
23 # line (the default approach is to set the %awk% environment variable in the
25 !ifdef %awk
26 AWK=$(%awk)
35 !ifdef AWK
45 $(AWK) -f << dfn1.out >dfn2.out
60 pnglibconf.dfn: ..\..\scripts\pnglibconf.dfa ..\..\scripts\options.awk pngconfig.dfa ..\..\pngconf.h
62 $(AWK) -f ..\..\scripts\options.awk out=dfn1.out version=search ..\..\pngconf.h ..\..\scripts\pnglibconf.dfa pngconfig.dfa $(DFA_XTRA) (…) [all...] |
/external/e2fsprogs/util/ |
subst.conf.in | 0 AWK @AWK@
|
/external/jemalloc/include/jemalloc/ |
jemalloc_rename.sh | 15 n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'` 16 m=`echo ${nm} |tr ':' ' ' |awk '{print $2}'`
|
/external/skia/platform_tools/android/bin/ |
android_kill_skia | 11 $ADB $DEVICE_SERIAL shell ps | grep skia | awk '{print $2}' | xargs -r $ADB $DEVICE_SERIAL shell kill 13 $ADB $DEVICE_SERIAL shell ps | grep skia | awk '{print $2}' | xargs $ADB $DEVICE_SERIAL shell kill
|
/external/strace/tests/ |
uid.test | 15 AWK=gawk 16 match_awk "$LOG" "$srcdir"/uid.awk "$STRACE $args output mismatch" -v suffix="$s"
|
Makefile.am | 104 EXTRA_DIST = init.sh run.sh match.awk \ 105 caps.awk \ 108 getdents.awk \ 110 getrandom.awk \ 116 net-yy-accept.awk \ 117 net-yy-connect.awk \ 121 select.awk \ 122 sigaction.awk \ 125 uid.awk \ 128 unix-yy-accept.awk \ [all...] |
/external/libcxx/test/std/re/re.regex/re.regex.construct/ |
awk_oct.pass.cpp | 22 using std::regex_constants::awk; 24 assert(std::regex_match("\4", std::regex("\\4", awk))); 25 assert(std::regex_match("\41", std::regex("\\41", awk))); 26 assert(std::regex_match("\141", std::regex("\\141", awk))); 27 assert(std::regex_match("\1411", std::regex("\\1411", awk)));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/ |
awk_oct.pass.cpp | 22 using std::regex_constants::awk; 24 assert(std::regex_match("\4", std::regex{"\\4", awk})); 25 assert(std::regex_match("\41", std::regex{"\\41", awk})); 26 assert(std::regex_match("\141", std::regex{"\\141", awk})); 27 assert(std::regex_match("\1411", std::regex{"\\1411", awk}));
|
/external/e2fsprogs/e2fsck/ |
mtrace.awk | 1 #!/usr/bin/awk -f 3 # Awk program to analyze mtrace.c output.
|
/external/libvpx/libvpx/tools/ |
author_first_release.sh | 14 awk "{print \"${tag#v}\t\"\$0}"
|
/external/selinux/libselinux/src/ |
exception.sh | 19 for i in `awk '/<stdin>.*extern int/ { print $6 }' temp.aux`; do except $i ; done
|
/external/selinux/libsemanage/src/ |
exception.sh | 13 for i in `awk '/extern int/ { print $6 }' temp.aux`; do except $i ; done
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
author_first_release.sh | 14 awk "{print \"${tag#v}\t\"\$0}"
|
/external/libedit/doc/ |
Makefile.am | 21 $(AWK) -f $(srcdir)/mdoc2man.awk $(srcdir)/$@.roff > $@ || rm -f $@;\ 28 EXTRA_DIST = editline.3.roff editrc.5.roff mdoc2man.awk
|