Searched refs:DIR (Results 1 - 25 of 253) sorted by relevance

1234567891011

/external/chromium_org/tools/git/
H A Dmass-rename.sh16 DIR="$( cd "$( dirname "$0" )" && pwd )"
17 python $DIR/mass-rename.py "$*"
/external/chromium_org/third_party/skia/experimental/PdfViewer/scripts/
H A Dvm_pdf_viewer_run_one_pdf.sh8 DIR=`dirname "$1"`
10 out/Debug/pdfviewer -r $1 -w $DIR/new -n
/external/skia/experimental/PdfViewer/scripts/
H A Dvm_pdf_viewer_run_one_pdf.sh8 DIR=`dirname "$1"`
10 out/Debug/pdfviewer -r $1 -w $DIR/new -n
/external/valgrind/main/tests/
H A Dcheck_isa-2_06_cap4 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
5 LD_SHOW_AUXV=1 $DIR/true | grep arch_2_06 > /dev/null 2>&1
H A Dcheck_isa-2_07_cap5 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
6 LD_SHOW_AUXV=1 $DIR/true | grep arch_2_07 > /dev/null 2>&1
/external/fio/os/windows/posix/include/
H A Ddirent.h18 typedef struct dirent_ctx DIR; typedef in typeref:struct:dirent_ctx
20 DIR *opendir(const char *dirname);
21 struct dirent *readdir(DIR *dirp);
22 int closedir(DIR *dirp);
/external/llvm/utils/
H A Dfindsym.pl17 opendir DIR,$Directory;
18 my @files = readdir DIR;
19 closedir DIR;
/external/e2fsprogs/lib/ss/
H A Dmk_cmds.sh.in6 DIR="${DIR-@datadir@/ss}"
29 DIR="$_SS_DIR_OVERRIDE";
32 if test ! -f $DIR/ct_c.sed || test ! -f $DIR/ct_c.awk ; then
33 DIR="$SS_DIR"
34 # echo "Falling back to $DIR..."
35 if test ! -f "$DIR/ct_c.sed" || test ! -f "$DIR/ct_c.awk" ; then
51 ${SED} -f "${DIR}/ct_
[all...]
/external/chromium_org/third_party/binutils/
H A Dupload.sh27 for DIR in $1/*; do
29 if [ ! -d "$DIR" ]; then
33 case "$DIR" in
43 echo "Unknown architecture directory $DIR"
57 (cd "$DIR"; tar jcf "$FULL_BINUTILS_TAR_BZ2" .)
/external/okhttp/
H A Ddeploy_website.sh9 DIR=temp-clone
12 rm -rf $DIR
15 git clone $REPO $DIR
18 cd $DIR
45 rm -rf $DIR
/external/chromium_org/third_party/skia/tools/bug_chomper/
H A Drun_server.sh15 DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
16 cd $DIR
22 GOPATH="$GOPATH:$DIR" go run $DIR/src/server/server.go $@
/external/skia/tools/bug_chomper/
H A Drun_server.sh15 DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
16 cd $DIR
22 GOPATH="$GOPATH:$DIR" go run $DIR/src/server/server.go $@
/external/e2fsprogs/lib/et/
H A Dcompile_et.sh.in7 DIR="${DIR-@datadir@/et}"
12 DIR="$ET_DIR"
32 if test ! -f "$DIR/et_h.awk" || test ! -f "$DIR/et_c.awk" ; then
33 DIR="$ET_DIR"
34 # echo "Falling back to $DIR..."
35 if test ! -f "$DIR/et_h.awk" || test ! -f "$DIR/et_c.awk" ; then
49 $AWK -f "${DIR}/et_
[all...]
/external/clang/test/Preprocessor/
H A Dpp-record.c14 #define DIR 1 macro
18 #if DIR
/external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/
H A Dinstall_host.sh8 DIR="$( cd "$( dirname "$0" )" && pwd )"
30 cp $DIR/$HOST_NAME.json $TARGET_DIR
33 HOST_PATH=$DIR/native-messaging-example-host
/external/eigen/bench/btl/data/
H A Dmk_new_gnuplot.sh3 DIR=$2
22 echo set output "'"../${DIR}/$WHAT.ps"'" >> $WHAT.gnuplot
26 # echo set output "'"../${DIR}/$WHAT.svg"'" >> $WHAT.gnuplot
51 ps2pdf ../${DIR}/$WHAT.ps ../${DIR}/$WHAT.pdf
52 convert -background white -density 120 -rotate 90 -resize 800 +dither -colors 256 -quality 0 ../${DIR}/$WHAT.ps -background white -flatten ../${DIR}/$WHAT.png
H A Dmk_mean_script.sh3 DIR=$2
15 DATA_FILE=`find $DIR -name "*.dat" | grep _${WHAT}`
/external/e2fsprogs/contrib/
H A Dpopulate-extfs.sh34 DIR="${FILE#$SRCDIR}"
35 DIR="${DIR%$TGT}"
38 [ ! -z "$DIR" ] || continue
41 if [ "$DIR" != "$CWD" ]; then
42 echo "cd $DIR"
43 CWD="$DIR"
H A Dspd_readdir.c70 DIR *dir;
81 static int (*real_closedir)(DIR *dir) = 0;
82 static DIR *(*real_opendir)(const char *name) = 0;
83 static DIR *(*real_fdopendir)(int fd) = 0;
84 static void *(*real_rewinddir)(DIR *dirp) = 0;
85 static struct dirent *(*real_readdir)(DIR *dir) = 0;
86 static int (*real_readdir_r)(DIR *dir, struct dirent *entry,
88 static struct dirent64 *(*real_readdir64)(DIR *dir) = 0;
89 static int (*real_readdir64_r)(DIR *dir, struct dirent64 *entry,
91 static off_t (*real_telldir)(DIR *di
[all...]
/external/ipsec-tools/src/libipsec/
H A Dpolicy_parse.h42 DIR = 258, enumerator in enum:yytokentype
61 #define DIR 258 macro
/external/compiler-rt/test/msan/
H A Dreaddir64.cc19 DIR *dir = opendir(".");
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_matrix.h199 #define TRANSFORM_DIRECTION( TO, DIR, MAT ) \
201 TO[0] = DIR[0] * MAT[0] + DIR[1] * MAT[4] + DIR[2] * MAT[8]; \
202 TO[1] = DIR[0] * MAT[1] + DIR[1] * MAT[5] + DIR[2] * MAT[9]; \
203 TO[2] = DIR[0] * MAT[2] + DIR[1] * MAT[6] + DIR[
[all...]
/external/mesa3d/src/mesa/math/
H A Dm_matrix.h199 #define TRANSFORM_DIRECTION( TO, DIR, MAT ) \
201 TO[0] = DIR[0] * MAT[0] + DIR[1] * MAT[4] + DIR[2] * MAT[8]; \
202 TO[1] = DIR[0] * MAT[1] + DIR[1] * MAT[5] + DIR[2] * MAT[9]; \
203 TO[2] = DIR[0] * MAT[2] + DIR[1] * MAT[6] + DIR[
[all...]
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_index_file_posix.cc21 void operator()(DIR* dir) { closedir(dir); }
24 typedef scoped_ptr<DIR, DirCloser> ScopedDir;
/external/owasp/sanitizer/tools/
H A Dupdate_tree_in_svn.py14 DIR = 'd' variable
36 if os.path.isdir(path): return DIR
100 (NO_EXIST, DIR) : (recurse, remove, svn_delete,),
103 (FILE, DIR) : (recurse, remove, svn_delete, copy, svn_add, cnf),
104 (DIR, NO_EXIST): (mkdir, svn_add, recurse,),
105 (DIR, FILE) : (remove, svn_delete, mkdir, svn_add, recurse, cnf),
106 (DIR, DIR) : (recurse,),

Completed in 6897 milliseconds

1234567891011