/external/toybox/tests/ |
D | chmod.test | 10 PERM="---""--x""-w-""-wx""r--""r-x""rw-""rwx" 23 mkdir dir 35 type=dir 36 rm -rf "./$type" && mkdir $type 40 rm -f "./$type" && touch $type 41 DASH=- 45 ls -ld $type | cut -d' ' -f 1 | cut -d. -f 1" "$DASH$DASHES\n" "" "" 50 rm -rf dir file && mkdir dir && touch file 51 testing "750 dir 640 file" \ 52 "chmod 750 dir 640 file 2>/dev/null || [all …]
|
D | find.test | 3 [ -f testing.sh ] && . testing.sh 5 mkdir dir 6 cd dir 9 # fs timestamp granularity isn't always enough for -newer to tell, so wait 11 ln -s fifo link 16 touch perm/all-read-only 17 chmod a=r perm/all-read-only 23 testing "-type l -a -type d -o -type p" \ 24 "find dir -type l -a -type d -o -type p" "dir/fifo\n" "" "" 25 testing "-type l -type d -o -type p" "find dir -type l -type d -o -type p" \ [all …]
|
D | chgrp.test | 3 [ -f testing.sh ] && . testing.sh 5 if [ "$(id -u)" -ne 0 ] 14 GRP="$(sed -n '$s/:.*//p' /etc/group)" 18 rm -rf testdir && 19 mkdir -p testdir/dir/dir/dir testdir/dir2 && 20 touch testdir/dir/file && 21 ln -s ../dir/dir testdir/dir2/dir && 22 ln -s ../dir/file testdir/dir2/file || exit 1 26 IN="cd testdir && chgrp -R $GRP dir dir2 &&" 27 OUT="&& cd .. && echo \$(ls -lR testdir | awk '{print \$4}')" [all …]
|
D | tar.test | 3 [ -f testing.sh ] && . testing.sh 22 # so look at first 3 512-byte frames when analyzing header content. 24 TAR='tar c --owner root --group root --mtime @1234567890' 25 SUM='head -c $((3*512)) | sha1sum | sed "s/ .*//"' 26 [ -n "$TARHD" ] && SUM="tee >(hd >&2) | $SUM" 34 "-rw-rw-r-- root/root 0 2009-02-13 23:31 file\n" "" "" 39 testing "pass user" "tar -c --owner nobody --group root --mtime @0 file | $LST" \ 40 "-rw-rw-r-- nobody/root 0 1970-01-01 00:00 file\n" "" "" 42 testing "pass group" "tar c --owner root --group nobody --mtime @0 file | $LST" \ 43 "-rw-rw-r-- root/nobody 0 1970-01-01 00:00 file\n" "" "" [all …]
|
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 1 //===--- StmtOpenMP.cpp - Classes for OpenMP directives -------------------===// 8 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 64 OMPParallelDirective *Dir = in Create() local 66 Dir->setClauses(Clauses); in Create() 67 Dir->setAssociatedStmt(AssociatedStmt); in Create() 68 Dir->setHasCancel(HasCancel); in Create() 69 return Dir; in Create() 92 OMPSimdDirective *Dir = new (Mem) in Create() local 94 Dir->setClauses(Clauses); in Create() [all …]
|
/external/icu/icu4j/ |
D | build.xml | 1 <!-- 5 * Copyright (C) 1997-2016, International Business Machines Corporation and * 8 --> 13 <property file="build-local.properties"/> 16 <property name="shared.dir" value="main/shared"/> 17 <import file="${shared.dir}/build/common-targets.xml"/> 21 <!-- icu4j binaries --> 24 <property name="icu4j-charset.jar.file" value="icu4j-charset.jar"/> 25 <property name="icu4j-localespi.jar.file" value="icu4j-localespi.jar"/> 29 <!-- icu4j API doc jar file --> [all …]
|
/external/libphonenumber/ |
D | build.xml | 4 <property name="libphonenumber.src.dir" value="libphonenumber/src"/> 5 <property name="libphonenumber.test.dir" value="libphonenumber/test"/> 6 <property name="carrier.src.dir" value="carrier/src"/> 7 <property name="carrier.test.dir" value="carrier/test"/> 8 <property name="geocoder.src.dir" value="geocoder/src"/> 9 <property name="geocoder.test.dir" value="geocoder/test"/> 10 <property name="prefixmapper.src.dir" value="internal/prefixmapper/src"/> 11 <property name="prefixmapper.test.dir" value="internal/prefixmapper/test"/> 12 <property name="build.dir" value="build"/> 13 <property name="classes.dir" value="${build.dir}/classes"/> [all …]
|
/external/guice/ |
D | build.xml | 4 <!-- common definitions are stored in common.xml. --> 8 <fileset dir="${lib.dir}" includes="*.jar"/> 9 <fileset dir="${lib.dir}/build" includes="*.jar"/> 14 <fileset dir="extensions"> 17 <pathelement location="${build.dir}/classes"/> 22 <jar jarfile="${build.dir}/dist/guice-${version}.jar" 23 manifest="${build.dir}/META-INF/MANIFEST.MF"> 24 <zipfileset src="${build.dir}/${ant.project.name}-with-deps.jar"/> 37 <ant antfile="extensions/dagger-adapter/build.xml" target="distjars" inheritAll="false"/> 42 <copy toDir="${build.dir}/dist"> [all …]
|
/external/testng/ant/ |
D | build-tests.xml | 5 <property name="report.dir" value="${test.output.dir}"/> 6 <property name="junit.report.dir" value="${report.dir}/test-tmp"/> 7 <property name="testng.report.dir" value="${report.dir}"/> 11 <!-- ==================================================================== --> 12 <!-- Compile --> 13 <!-- ==================================================================== --> 16 <fileset dir="${lib.dir}" includes="${guice2.jar}" /> 17 <fileset dir="${lib.dir}" includes="${junit.jar}" /> 18 <fileset dir="${lib.dir}" includes="aopalliance-1.0.jar" /> 24 TEST.DIR =${test.dir} [all …]
|
D | build.xml | 3 <!-- ====================================================================== --> 4 <!-- TestNG build file --> 5 <!-- Created cbeust, April 26th, 2004 --> 6 <!-- ====================================================================== --> 11 <!-- ====================================================================== --> 12 <!-- PREPARE --> 13 <!-- ====================================================================== --> 14 <target name="prepare" depends="retrieve-dependencies" 17 <mkdir dir="${build.dir}" /> 18 <mkdir dir="${other.jars.dir}" /> [all …]
|
/external/icu/icu4j/eclipse-build/ |
D | build.xml | 1 <!-- 10 --> 12 <project name="icu4j-eclipse" default="build" basedir="."> 13 <property file="build-local.properties"/> 16 <property name="out.dir" value="out"/> 17 <property name="eclipse.projects.dir" value="${out.dir}/projects"/> 19 <property name="main.dir" value="../main"/> 20 <property name="shared.dir" value="${main.dir}/shared"/> 22 <import file="${shared.dir}/build/common-targets.xml"/> 23 <property file="${shared.dir}/build/common.properties"/> [all …]
|
/external/icu/icu4j/main/shared/build/ |
D | common.properties | 4 #* Copyright (C) 2009-2016, International Business Machines Corporation and * 12 default.exec.env = JavaSE-1.7 17 src.dir = src 18 out.dir = out 19 bin.dir = ${out.dir}/bin 20 jar.dir = ${out.dir}/lib 26 javac.compilerarg = -Xlint:none 27 java.src.encoding = UTF-8 36 icu4j.data.jar = ${shared.dir}/data/icudata.jar 37 icu4j.tzdata.jar = ${shared.dir}/data/icutzdata.jar [all …]
|
D | locations.properties | 4 #* Copyright (C) 2009-2014, International Business Machines Corporation and * 8 icu4j.collate.dir = ${shared.dir}/../classes/collate 9 icu4j.core.dir = ${shared.dir}/../classes/core 10 icu4j.charset.dir = ${shared.dir}/../classes/charset 11 icu4j.currdata.dir = ${shared.dir}/../classes/currdata 12 icu4j.langdata.dir = ${shared.dir}/../classes/langdata 13 icu4j.localespi.dir = ${shared.dir}/../classes/localespi 14 icu4j.regiondata.dir = ${shared.dir}/../classes/regiondata 15 icu4j.translit.dir = ${shared.dir}/../classes/translit 17 icu4j.test-framework.dir = ${shared.dir}/../tests/framework [all …]
|
D | common-targets.xml | 1 <!-- 5 * Copyright (C) 2009-2016, International Business Machines Corporation and * 8 --> 9 <project name="common-targets" basedir="."> 10 <dirname property="common-targets.dir" file="${ant.file.common-targets}"/> 11 <property file="${common-targets.dir}/locations.properties"/> 13 <!-- global (top-level) propeties - need locations.properties loaded first --> 14 <property file="${global.build-local.properties}"/> 17 <property file="${common-targets.dir}/common.properties"/> 20 <!-- common targets --> [all …]
|
/external/e2fsprogs/contrib/ |
D | spd_readdir.c | 6 * 2008-06-08 Modified by Ross Boylan <RossBoylan stanfordalumni org> 14 * gcc -o spd_readdir.so -shared -fpic spd_readdir.c -ldl 20 * %Begin-Header% 23 * %End-Header% 70 DIR *dir; member 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; [all …]
|
/external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/ |
D | InstrumentTaskTest.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 3 <!-- 8 http://www.eclipse.org/legal/epl-v10.html 11 Marc R. Hoffmann - initial API and implementation 12 --> 17 <tempfile property="temp.dir" prefix="jacocoTest" destdir="${java.io.tmpdir}" /> 18 <mkdir dir="${temp.dir}"/> 19 <property name="exec.file" location="${temp.dir}/exec.file" /> 23 <delete dir="${temp.dir}" quiet="false" failonerror="true"/> 33 <mkdir dir="${temp.dir}/output"/> [all …]
|
D | ReportTaskTest.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 3 <!-- 8 http://www.eclipse.org/legal/epl-v10.html 11 Brock Janiczak - initial API and implementation 12 Dominik Stadler - source folder support 13 --> 18 <tempfile property="temp.dir" prefix="jacocoTest" destdir="${java.io.tmpdir}" /> 19 <mkdir dir="${temp.dir}"/> 23 <delete dir="${temp.dir}" quiet="false" failonerror="true" /> 54 <fileset dir="${basedir}/data" includes="*.exec"/> [all …]
|
/external/ltp/testcases/kernel/fs/fs_bind/bin/ |
D | makedir | 18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 22 #mflags="-n" # Don't futz with mtab 35 dir="$2" 38 if [ ! -d "$dir" ] 40 if [ -e "$dir" ]; then 41 echo "ERROR: a file by the name \"$dir\" exists" 44 mkdir -p "$dir" 45 echo "mkdir -p \"$dir\"" 51 mount $mflags --bind "$dir" "$dir" || exit $? 52 echo "mount $mflags --bind \"$dir\" \"$dir\"" [all …]
|
/external/emma/ |
D | module.dirs.properties | 1 # ----------------------------------------------------------------------------- 24 # ----------------------------------------------------------------------------- 25 # ---- module-specific static (checked-in) locations: 27 # ----------------------------------------------------------------------------- 30 lib.dir.root: ${basedir}/${lib} 32 internal.lib.dir: ${lib.dir.root}/${internal} 33 external.lib.dir: ${lib.dir.root}/${external} 35 # ----------------------------------------------------------------------------- 38 core.dir.root: ${basedir}/${core} 40 core.src.java12.dir: ${core.dir.root}/${java12} [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors_format.inc | 1 //===-- sanitizer_common_interceptors_format.inc ----------------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 15 //===----------------------------------------------------------------------===// 38 // Otherwise, do not change p. This will be re-parsed later as the field 79 // Returns string output character size for string-like conversions, 100 FSS_WCSLEN = -2, 103 FSS_STRLEN = -1, 162 int argIdx; // argument index, or -1 if not specified ("%n$") 174 // returned in dir. This function returns the pointer to the first 176 // In case of the end-of-string, a pointer to the closing \0 is returned. [all …]
|
/external/openssh/regress/ |
D | scp.sh | 6 #set -x 8 # Figure out if diff understands "-N" 9 if diff -N ${SRC}/scp.sh ${SRC}/scp.sh 2>/dev/null; then 10 DIFFOPT="-rN" 12 DIFFOPT="-r" 16 DIR=${COPY}.dd 20 cp ${SRC}/scp-ssh-wrapper.sh ${OBJ}/scp-ssh-wrapper.scp 21 chmod 755 ${OBJ}/scp-ssh-wrapper.scp 22 scpopts="-q -S ${OBJ}/scp-ssh-wrapper.scp" 23 export SCP # used in scp-ssh-wrapper.scp [all …]
|
/external/cldr/tools/java/ |
D | build.xml | 1 <!-- see readme.txt --> 7 <property name="src.dir" value="." /> 8 <property name="build.dir" value="classes" /> 9 <property name="libs.dir" value="libs" /> 11 <property name="jarSrc.file" value="cldr-src.jar" /> 12 <property name="jarDocs.file" value="cldr-docs.jar" /> 13 <property name="doc.dir" value="doc" /> 15 <!-- Load local definitions from an optional build.properties file, if 16 available. build.properties is NOT checked into CVS. --> 18 <!-- Load environment variables --> [all …]
|
/external/syzkaller/tools/ |
D | create-image.sh | 5 # create-image.sh creates a minimal Debian-wheezy Linux image suitable for syzkaller. 7 set -eux 9 # Create a minimal Debian-wheezy distributive as a directory. 11 DIR=wheezy 12 sudo rm -rf $DIR 13 mkdir -p $DIR 14 …--include=openssh-server,curl,tar,gcc,libc6-dev,time,strace,sudo,less,psmisc,selinux-utils,policyc… 17 sudo sed -i '/^root/ { s/:x:/::/ }' $DIR/etc/passwd 18 echo 'T0:23:respawn:/sbin/getty -L ttyS0 115200 vt100' | sudo tee -a $DIR/etc/inittab 19 printf '\nauto eth0\niface eth0 inet dhcp\n' | sudo tee -a $DIR/etc/network/interfaces [all …]
|
/external/pdfium/third_party/libtiff/ |
D | tif_dirwrite.c | 1 /* $Id: tif_dirwrite.c,v 1.85 2017-01-11 16:09:02 erouault Exp $ */ 4 * Copyright (c) 1988-1997 Sam Leffler 5 * Copyright (c) 1991-1997 Silicon Graphics, Inc. 15 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 45 static int TIFFWriteDirectoryTagSampleformatArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint1… 47 static int TIFFWriteDirectoryTagSampleformatPerSample(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, u… 50 static int TIFFWriteDirectoryTagAscii(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint3… 51 static int TIFFWriteDirectoryTagUndefinedArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 t… 53 static int TIFFWriteDirectoryTagByte(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, uint8 … 55 static int TIFFWriteDirectoryTagByteArray(TIFF* tif, uint32* ndir, TIFFDirEntry* dir, uint16 tag, u… [all …]
|
/external/antlr/runtime/JavaScript/build/ |
D | build.xml | 6 <property name="build.dir" value="${basedir}/build" /> 7 <property name="out.dir" value="${build.dir}/out" /> 8 <property name="lib.dir" value="${basedir}/lib" /> 9 <property name="doc.dir" value="${basedir}/doc" /> 10 <property name="test.dir" value="${basedir}/tests" /> 11 <property name="src.dir" value="${basedir}/src" /> 12 <property name="third.dir" value="${basedir}/third" /> 13 <property file="${build.dir}/antlr3.properties" /> 15 …<taskdef file="${third.dir}/antcontrib.properties" classpath="${third.dir}/ant-contrib-1.0b3.jar" … 17 <!-- ******* --> [all …]
|