| /external/libcups/ |
| D | Makefile | 2 # Top-level Makefile for CUPS. 4 # Copyright © 2007-2021 by Apple Inc. 5 # Copyright © 1997-2007 by Easy Software Products, all rights reserved. 15 # Directories to make... 22 # Test suite options - normally blank, override with make command... 29 # Make all targets... 33 chmod +x cups-config 42 for dir in $(DIRS); do\ 43 echo Making all in $$dir... ;\ 44 (cd $$dir ; $(MAKE) $(MFLAGS) all $(UNITTESTS)) || exit 1;\ [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 …]
|
| /external/zstd/tests/ |
| D | libzstd_builds.sh | 1 #!/bin/sh -e 3 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 6 RM="rm -f" 24 # default compilation : all features enabled - no zbuff 26 CFLAGS= make -C $DIR/../lib libzstd libzstd.a > $INTOVOID 27 nm $DIR/../lib/libzstd.a | $GREP "\.o" > tmplog 35 # Check that the exec-stack bit isn't set 36 readelf -lW $DIR/../lib/libzstd.so | $GREP "GNU_STACK" > tmplog 38 $RM $DIR/../lib/libzstd.a $DIR/../lib/libzstd.so* tmplog 42 ZSTD_LIB_COMPRESSION=0 CFLAGS= make -C $DIR/../lib libzstd.a > $INTOVOID [all …]
|
| /external/linux-kselftest/tools/testing/selftests/arm64/ |
| D | Makefile | 1 # SPDX-License-Identifier: GPL-2.0 4 ARCH ?= $(shell uname -m 2>/dev/null || echo not) 12 CFLAGS := -Wall -O2 -g 18 CFLAGS += -I$(top_srcdir)/tools/testing/selftests/ 26 @for DIR in $(ARM64_SUBTARGETS); do \ 27 BUILD_TARGET=$(OUTPUT)/$$DIR; \ 28 mkdir -p $$BUILD_TARGET; \ 29 make OUTPUT=$$BUILD_TARGET -C $$DIR $@; \ 33 @for DIR in $(ARM64_SUBTARGETS); do \ 34 BUILD_TARGET=$(OUTPUT)/$$DIR; \ [all …]
|
| /external/skia/src/core/ |
| D | SkPathMakers.h | 4 * Use of this source code is governed by a BSD-style license that can be 17 SkPath_PointIterator(SkPathDirection dir, unsigned startIndex) in SkPath_PointIterator() argument 19 , fAdvance(dir == SkPathDirection::kCW ? 1 : N - 1) { } in SkPath_PointIterator() 28 return this->current(); in next() 41 SkPath_RectPointIterator(const SkRect& rect, SkPathDirection dir, unsigned startIndex) in SkPath_RectPointIterator() argument 42 : SkPath_PointIterator(dir, startIndex) { in SkPath_RectPointIterator() 44 fPts[0] = SkPoint::Make(rect.fLeft, rect.fTop); in SkPath_RectPointIterator() 45 fPts[1] = SkPoint::Make(rect.fRight, rect.fTop); in SkPath_RectPointIterator() 46 fPts[2] = SkPoint::Make(rect.fRight, rect.fBottom); in SkPath_RectPointIterator() 47 fPts[3] = SkPoint::Make(rect.fLeft, rect.fBottom); in SkPath_RectPointIterator() [all …]
|
| D | SkPathBuilder.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 28 this->reset(); in SkPathBuilder() 32 this->reset(); in SkPathBuilder() 54 fLastMoveIndex = -1; // illegal in reset() 61 this->reset().setFillType(src.getFillType()); in operator =() 65 case SkPathVerb::kMove: this->moveTo(pts[0]); break; in operator =() 66 case SkPathVerb::kLine: this->lineTo(pts[1]); break; in operator =() 67 case SkPathVerb::kQuad: this->quadTo(pts[1], pts[2]); break; in operator =() 68 case SkPathVerb::kConic: this->conicTo(pts[1], pts[2], w[0]); break; in operator =() 69 case SkPathVerb::kCubic: this->cubicTo(pts[1], pts[2], pts[3]); break; in operator =() [all …]
|
| /external/libcap/kdebug/ |
| D | test-kernel.sh | 4 # http://vmsplice.net/~stefan/stefanha-kernel-recipes-2015.pdf 16 make LIBCSTATIC=yes all test || die "failed to make all test of libcap tree" 17 make LIBCSTATIC=yes -C progs tcapsh-static || die "failed to make progs/tcapsh-static" 18 make -C tests uns_test 21 # Assumes desired make *config (eg. make defconfig) is already done. 24 make V=1 all || die "failed to build kernel: $0" 30 file /init test-init.sh 0755 0 0 31 dir /etc 0755 0 0 32 file /etc/passwd test-passwd 0444 0 0 33 dir /lib 0755 0 0 [all …]
|
| /external/iproute2/testsuite/iproute2/ |
| D | Makefile | 1 SUBDIRS := $(filter-out Makefile,$(wildcard *)) 5 @for dir in $(SUBDIRS); do \ 6 echo "Entering $$dir" && cd $$dir && $(MAKE) && cd ..; \ 10 @if [ ! -L iproute2-this ]; then \ 11 ln -s ../.. iproute2-this; \ 15 @for dir in $(SUBDIRS); do \ 16 echo "Entering $$dir" && cd $$dir && if [ -f configure ]; then ./configure; fi && cd ..; \ 20 @for dir in $(SUBDIRS); do \ 21 echo "Entering $$dir" && cd $$dir && $(MAKE) clean && cd ..; \ 25 @for dir in $(SUBDIRS); do \ [all …]
|
| /external/ltp/include/mk/ |
| D | generic_trunk_target.inc | 18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 27 # directories) -- optionally with a set of trunk-based files. 33 # $(INSTALL_FILES) -> trunk-install -> install (recursive) 55 .PHONY: $(RECURSIVE_TARGETS) $(addprefix trunk-,$(RECURSIVE_TARGETS)) 58 mkdir -m 00755 -p "$@" 62 trunk-all: $(MAKE_TARGETS) 64 trunk-clean:: | $(SUBDIRS) 65 $(if $(strip $(CLEAN_TARGETS)),$(RM) -f $(CLEAN_TARGETS)) 69 trunk-install: $(INSTALL_FILES) 72 trunk-check: $(CHECK_TARGETS) $(SHELL_CHECK_TARGETS) [all …]
|
| /external/compiler-rt/make/ |
| D | subdir.mk | 4 # SubDirs - The subdirectories to traverse. 7 # ModuleName - The library name for objects in that directory. 8 # ObjNames - The objects available in that directory. 9 # Implementation - The library configuration the objects should go in (Generic 11 # Dependencies - Any dependences for the object files. 12 # OnlyArchs - Only build the objects for the listed archs. 13 # OnlyConfigs - Only build the objects for the listed configurations. 15 ifeq ($(Dir),) 16 $(error "No Dir variable defined.") 30 $(call Set,Dir,$(1)) [all …]
|
| /external/minijail/ |
| D | system_unittest.cc | 2 * Use of this source code is governed by a BSD-style license that can be 71 // just make sure it doesn't crash? 81 // Make sure we can write a pid to the file. 108 TemporaryDir dir; in TEST() local 109 ASSERT_TRUE(dir.is_valid()); in TEST() 111 // Run `mkdir -p <path>/a/b/c`. in TEST() 112 std::string path_a = dir.path + "/a"; in TEST() 119 // Make sure the final path doesn't exist yet. in TEST() 123 EXPECT_EQ(-1, stat(path_a_b_c.c_str(), &st)); in TEST() 125 // Then create it as a complete dir. in TEST() [all …]
|
| /external/linux-kselftest/tools/testing/selftests/bpf/ |
| D | test_bpftool_build.sh | 2 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 5 -h|--help) 6 echo -e "$0 [-j <n>]" 7 echo -e "\tTest the different ways of building bpftool." 8 echo -e "" 9 echo -e "\tOptions:" 10 echo -e "\t\t-j <n>:\tPass -j flag to 'make'." 19 SCRIPT_REL_PATH=$(realpath --relative-to=$PWD $0) 23 if [ ! -e tools/bpf/bpftool/Makefile ]; then 24 echo -e "skip: bpftool files not found!\n" [all …]
|
| /external/ltp/ |
| D | build.sh | 2 # Copyright (c) 2017-2021 Petr Vorel <pvorel@suse.cz> 5 set -e 7 CFLAGS="${CFLAGS:--Wformat -Werror=format-security -Werror=implicit-function-declaration -Werror=re… 8 CC="${CC:-gcc}" 10 DEFAULT_PREFIX="$HOME/ltp-install" 14 CONFIGURE_OPTS_IN_TREE="--with-open-posix-testsuite --with-realtime-testsuite $CONFIGURE_OPT_EXTRA" 15 # TODO: open posix testsuite is currently broken in out-tree-build. Enable it once it's fixed. 16 CONFIGURE_OPTS_OUT_TREE="--with-realtime-testsuite $CONFIGURE_OPT_EXTRA" 19 BUILD_DIR="$SRC_DIR/../ltp-build" 21 MAKE_OPTS="-j$(getconf _NPROCESSORS_ONLN)" [all …]
|
| /external/linux-kselftest/tools/testing/selftests/android/ |
| D | Makefile | 1 # SPDX-License-Identifier: GPL-2.0-only 11 @for DIR in $(SUBDIRS); do \ 12 BUILD_TARGET=$(OUTPUT)/$$DIR; \ 13 mkdir $$BUILD_TARGET -p; \ 14 make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\ 16 TEST=$$DIR"_test.sh"; \ 17 if [ -e $$DIR/$$TEST ]; then \ 18 rsync -a $$DIR/$$TEST $$BUILD_TARGET/; \ 23 mkdir -p $(INSTALL_PATH) 24 install -t $(INSTALL_PATH) $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) [all …]
|
| /external/linux-kselftest/tools/testing/selftests/sparc64/ |
| D | Makefile | 1 # SPDX-License-Identifier: GPL-2.0 2 uname_M := $(shell uname -m 2>/dev/null || echo not) 3 ARCH ?= $(shell echo $(uname_M) | sed -e s/x86_64/x86/) 21 @for DIR in $(SUBDIRS); do \ 22 BUILD_TARGET=$(OUTPUT)/$$DIR; \ 23 mkdir $$BUILD_TARGET -p; \ 24 make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\ 26 TEST=$$DIR"_test.sh"; \ 27 if [ -e $$DIR/$$TEST ]; then \ 28 rsync -a $$DIR/$$TEST $$BUILD_TARGET/; \ [all …]
|
| /external/linux-kselftest/tools/testing/selftests/futex/ |
| D | Makefile | 1 # SPDX-License-Identifier: GPL-2.0 11 @for DIR in $(SUBDIRS); do \ 12 BUILD_TARGET=$(OUTPUT)/$$DIR; \ 13 mkdir $$BUILD_TARGET -p; \ 14 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$DIR $@;\ 15 if [ -e $$DIR/$(TEST_PROGS) ]; then \ 16 rsync -a $$DIR/$(TEST_PROGS) $$BUILD_TARGET/; \ 21 mkdir -p $(INSTALL_PATH) 22 install -t $(INSTALL_PATH) $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) 26 mkdir $$BUILD_TARGET -p; \ [all …]
|
| /external/llvm/docs/ |
| D | README.txt | 12 Sphinx <http://sphinx-doc.org/> and then do: 14 cd <build-dir> 15 cmake -DLLVM_ENABLE_SPHINX=true -DSPHINX_OUTPUT_HTML=true <src-dir> 16 make -j3 docs-llvm-html 17 $BROWSER <build-dir>/docs//html/index.html 20 `docs/Foo.rst` <-> `<build-dir>/docs//html/Foo.html` <-> `http://llvm.org/docs/Foo.html`. 33 directory `<build-dir>/docs/man/`. 35 cd <build-dir> 36 cmake -DLLVM_ENABLE_SPHINX=true -DSPHINX_OUTPUT_MAN=true <src-dir> 37 make -j3 docs-llvm-man [all …]
|
| /external/armnn/profiling/ |
| D | buildpipe.sh | 4 # SPDX-License-Identifier: MIT 8 while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink 14 DIR="$( dirname "$SOURCE" )" 15 # "SOURCE '$SOURCE' is a relative symlink to '$TARGET' (relative to '$DIR')" 16 …SOURCE="$DIR/$TARGET" # if $SOURCE was a relative symlink, we need to resolve it relative to the p… 19 DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )" 25 echo "Options: -t(type) <Debug or Release>" 26 echo " -c(lean) build" 27 echo " -s(tatic libraries) <1 or 0>" 28 echo " -w(indows) build" [all …]
|
| /external/sg3_utils/scripts/ |
| D | Makefile.in | 4 # Copyright (C) 1994-2021 Free Software Foundation, Inc. 19 if test -z '$(MAKELEVEL)'; then \ 21 elif test -n '$(MAKE_HOST)'; then \ 23 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ 30 case $${target_option-} in \ 33 "target option '$${target_option-}' specified" >&2; \ 56 *=*|--*) continue;; \ 57 -*I) strip_trailopt 'I'; skip_next=yes;; \ 58 -*I?*) strip_trailopt 'I';; \ 59 -*O) strip_trailopt 'O'; skip_next=yes;; \ [all …]
|
| /external/compiler-rt/ |
| D | Makefile | 6 include make/config.mk 7 include make/util.mk 9 # able to use RC_XBS for this but that is unused during "make installsrc". 11 include make/AppleBI.mk 14 # Make sure we don't build with a missing ProjObjRoot. 29 @echo "usage: make [{VARIABLE=VALUE}*] target" 39 @echo " info-platforms: list available platforms" 40 @echo " help-devel: print additional help for developers" 43 help-devel: help 45 @echo " <platform name>-<config name>:" [all …]
|
| /external/ltp/testcases/open_posix_testsuite/scripts/ |
| D | generate-makefiles.sh | 6 # make, as I'm sure there are in other variants), and a lack of modularity, 7 # but as long as you follow the criterion set in locate-test, then the 8 # end-result for modifying and/or adding tests can be achieved by merely 11 # This script will remain around until (hopefully someday) POSIX make 19 readonly buildonly_compiler_args="-c" 27 locate-test --$maketype | sed -e 's,^./,,g' | sort > make-gen.$maketype 29 generate_makefiles make-gen.$maketype $* 31 rm -f make-gen.$maketype 61 if echo "$prereq" | grep -Eq '\.(run-test|sh)'; then 70 if echo "$prereq" | grep -Eq '\.(run-test|sh|test)'; then [all …]
|
| /external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ |
| D | GetChanges.java | 37 …"#Dir\tState\tTrunk Value\tmodify_config.txt Locale\tAction\tlabel\tPath Value\tlabel\tNew Value"); in main() 44 // System.out.println("#Dir=\t" + vxmlDir); in main() 55 // System.out.println("#Dir=\t" + commonSeed); in main() 59 Factory factoryVxml = Factory.make(commonSeed.toString(), ".*"); in main() 60 Factory factoryTrunk = Factory.make(l2, ".*"); in main() 71 vxmlFile = factoryVxml.make(locale, true); in main() 74 "##Error: dir=\t" in main() 84 trunkFile = factoryTrunk.make(locale, true); in main() 96 private static void compare(String dir, CLDRFile vxmlFileResolved, CLDRFile trunkFileResolved) { in compare() argument 102 // System.out.println("#Dir: " + dir + ";\tLocale: " + localeID); in compare() [all …]
|
| /external/libchrome/base/files/ |
| D | file_path_watcher_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 59 task_runner_->PostTask( in OnChange() 83 ASSERT_TRUE(task_runner_->BelongsToCurrentThread()); in RecordChange() 117 // thread-safe for setting expectations. Thus the test code cannot safely 125 collector_->Register(this); in TestDelegate() 133 collector_->OnChange(this); in OnFileChanged() 196 collector_->Reset(run_loop.QuitClosure()); in WaitForEventsWithTimeout() 198 // Make sure we timeout if we don't get notified. in WaitForEventsWithTimeout() 199 ThreadTaskRunnerHandle::Get()->PostDelayedTask( in WaitForEventsWithTimeout() 202 return collector_->Success(); in WaitForEventsWithTimeout() [all …]
|
| /external/ltp/tools/ |
| D | create-tarballs-metadata.sh | 1 #!/bin/sh -eu 2 # SPDX-License-Identifier: GPL-2.0-or-later 5 # https://github.com/linux-test-project/ltp/wiki/LTP-Release-Procedure 11 tarball_dir="ltp-full-$tag" 15 dir="$(cd "$git_dir/../"; pwd)/ltp-release-$tag" 17 if [ -d $dir ]; then 18 ask "Directory '$dir' exists, will be deleted" 19 rm -rf $dir 21 rod mkdir $dir 22 cd $dir [all …]
|
| /external/libcap-ng/libcap-ng-0.7/m4/ |
| D | Makefile.in | 18 # Makefile.am -- 34 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 46 install_sh_DATA = $(install_sh) -c -m 644 47 install_sh_PROGRAM = $(install_sh) -c 48 install_sh_SCRIPT = $(install_sh) -c 70 mkinstalldirs = $(install_sh) -d 80 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; 85 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" 92 END { for (dir in files) print dir, files[dir] }' 97 test -z "$$files" \ [all …]
|