Searched refs:lcov (Results 1 – 25 of 34) sorted by relevance
12
/external/libcxx/utils/google-benchmark/test/ |
D | CMakeLists.txt | 103 find_program(LCOV lcov) 108 OUTPUT ${CMAKE_BINARY_DIR}/lcov/index.html 110 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o before.lcov -i 112 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o after.lcov 113 COMMAND ${LCOV} -q -a before.lcov -a after.lcov --output-file final.lcov 114 COMMAND ${LCOV} -q -r final.lcov "'${CMAKE_SOURCE_DIR}/test/*'" -o final.lcov 115 … COMMAND ${GENHTML} final.lcov -o lcov --demangle-cpp --sort -p "${CMAKE_BINARY_DIR}" -t benchmark 121 DEPENDS ${CMAKE_BINARY_DIR}/lcov/index.html 122 COMMENT "LCOV report at lcov/index.html" 134 " lcov: ${LCOV}\n"
|
/external/google-benchmark/test/ |
D | CMakeLists.txt | 134 find_program(LCOV lcov) 139 OUTPUT ${CMAKE_BINARY_DIR}/lcov/index.html 141 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o before.lcov -i 143 COMMAND ${LCOV} -q --no-external -c -b "${CMAKE_SOURCE_DIR}" -d . -o after.lcov 144 COMMAND ${LCOV} -q -a before.lcov -a after.lcov --output-file final.lcov 145 COMMAND ${LCOV} -q -r final.lcov "'${CMAKE_SOURCE_DIR}/test/*'" -o final.lcov 146 … COMMAND ${GENHTML} final.lcov -o lcov --demangle-cpp --sort -p "${CMAKE_BINARY_DIR}" -t benchmark 152 DEPENDS ${CMAKE_BINARY_DIR}/lcov/index.html 153 COMMENT "LCOV report at lcov/index.html" 165 " lcov: ${LCOV}\n"
|
/external/strace/m4/ |
D | ax_code_coverage.m4 | 109 # List of supported lcov versions. 112 AC_CHECK_PROG([LCOV], [lcov], [lcov]) 116 AC_CACHE_CHECK([for lcov version], ax_cv_lcov_version, [ 126 …lcov_msg="To enable code coverage reporting you must have one of the following lcov versions insta… 132 …lcov_msg="You must have one of the following versions of lcov: $lcov_version_list (found: $lcov_ve… 139 AC_MSG_ERROR([Could not find genhtml from the lcov package]) 162 # by lcov for code coverage. (Default: 170 # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov 172 # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov 176 # collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) [all …]
|
/external/libcxx/utils/google-benchmark/ |
D | .gitignore | 13 # lcov 14 *.lcov 15 /lcov
|
/external/google-benchmark/ |
D | .gitignore | 13 # lcov 14 *.lcov 15 /lcov
|
/external/skia/bin/ |
D | coverage | 47 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/baseline -i 52 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/coverage 54 lcov -q -a "$DIR"/baseline -a "$DIR"/coverage -o "$DIR"/merged
|
/external/boringssl/src/util/ |
D | generate-coverage.sh | 40 util/generate-asm-lcov.py "$BUILD/callgrind" "$BUILD" > "$BUILD/asm.info" 48 lcov -c -d "$BUILD" -b "$BUILD" -o "$BUILD/lcov.info" 49 lcov -r "$BUILD/lcov.info" -o "$BUILD/filtered.info" "*_test.c" "*_test.cc" "*/third_party/googlete…
|
D | generate-asm-lcov.py | 151 lcov = generate(annotated) variable 152 print output(lcov)
|
/external/skia/fuzz/ |
D | coverage | 50 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/baseline -i 77 lcov -q --gcov-tool="$GCOV" -c -b "$BUILD" -d "$BUILD" -o "$DIR"/coverage 79 lcov -q -a "$DIR"/baseline -a "$DIR"/coverage -o "$DIR"/merged
|
/external/libbrillo/ |
D | gen_coverage_html.sh | 11 lcov -d . --zerocounters 13 lcov --base-directory . --directory . --capture --output-file app.info
|
/external/emma/ |
D | test.sh | 76 GOLDEN=$TESTDIR/golden.lcov 121 java -cp dist/emma.jar emmarun -r lcov -cp $JAVADIR \ 122 -sp $JAVADIR -Dreport.lcov.out.file=$COVERAGE com.android.bunnies.Bunny
|
/external/libcxx/cmake/Modules/ |
D | CodeCoverage.cmake | 1 find_program(CODE_COVERAGE_LCOV lcov) 3 message(FATAL_ERROR "Cannot find lcov...")
|
/external/kmod/ |
D | configure.ac | 182 AC_CHECK_PROG(have_coverage, [lcov], [yes], [no]) 184 AC_MSG_ERROR([*** lcov support requested but the program was not found]) 186 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`" 187 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`" 189 AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
|
/external/modp_b64/ |
D | common.mk | 728 lcov --capture --directory . \ 729 --output-file=lcov-coverage.info; \ 730 genhtml lcov-coverage.info \ 731 --output-directory lcov-html; \ 872 clean: CLEAN($(OUT)lcov-coverage.info) CLEAN($(OUT)lcov-html) 917 clean: CLEAN($(OUT)$(MODULE)/*.gcov) CLEAN($(OUT)lcov-coverage.info) 918 clean: CLEAN($(OUT)lcov-html)
|
/external/minijail/ |
D | common.mk | 728 lcov --capture --directory . \ 729 --output-file=lcov-coverage.info; \ 730 genhtml lcov-coverage.info \ 731 --output-directory lcov-html; \ 872 clean: CLEAN($(OUT)lcov-coverage.info) CLEAN($(OUT)lcov-html) 917 clean: CLEAN($(OUT)$(MODULE)/*.gcov) CLEAN($(OUT)lcov-coverage.info) 918 clean: CLEAN($(OUT)lcov-html)
|
/external/nanopb-c/tests/ |
D | Makefile | 18 lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/nanopb.info
|
/external/emma/core/res/com/vladium/emma/report/ |
D | report_usage.res | 9 '<list of {txt|html|lcov|xml}>',
|
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
D | README | 106 You can measure the code coverage of a kernel module with the gocv and lcov 108 http://ltp.sourceforge.net/coverage/lcov.php for details.
|
/external/emma/core/res/com/vladium/emma/ |
D | run_usage.res | 24 '<list of {txt|html|lcov|xml}>',
|
/external/vboot_reference/ |
D | Makefile | 1376 lcov -c -i -d . -b . -o ${COV_INFO}.initial 1380 lcov -c -d . -b . -o ${COV_INFO}.tests 1381 lcov -a ${COV_INFO}.initial -a ${COV_INFO}.tests -o ${COV_INFO}.total 1382 lcov -r ${COV_INFO}.total '/usr/*' '*/linktest/*' -o ${COV_INFO}.local 1387 lcov -r ${COV_INFO}.local '*/stub/*' -o ${COV_INFO}.nostub 1388 lcov -e ${COV_INFO}.nostub '${SRCDIR}/firmware/*' \
|
/external/python/cpython2/ |
D | Makefile.pre.in | 216 # report files for gcov / lcov coverage report 218 COVERAGE_REPORT=$(abs_builddir)/lcov-report 219 COVERAGE_REPORT_OPTIONS=--no-branch-coverage --title "CPython lcov report" 468 .PHONY=coverage coverage-lcov coverage-report 474 coverage-lcov: 478 @lcov --capture --directory $(abs_builddir) \ 483 @lcov --remove $(COVERAGE_INFO) \ 494 @echo "lcov report at $(COVERAGE_REPORT)/index.html" 504 : # build lcov report 505 $(MAKE) coverage-lcov
|
/external/emma/core/java12/com/vladium/emma/report/ |
D | AbstractReportGenerator.java | 47 return new com.vladium.emma.report.lcov.ReportGenerator (); in create()
|
/external/emma/core/java12/com/vladium/emma/report/lcov/ |
D | ReportGenerator.java | 11 package com.vladium.emma.report.lcov;
|
/external/bison/ |
D | maint.mk | 1472 lcov --directory . --zerocounters 1481 lcov --directory . --output-file $(COVERAGE_OUT)/$(PACKAGE).info \
|
/external/pcre/dist2/ |
D | configure.ac | 852 AC_ARG_VAR([LCOV],[the ltp lcov program]) 853 AC_PATH_PROG([LCOV],[lcov],[false]) 855 AC_MSG_ERROR([lcov not found])
|
12