HomeSort by relevance Sort by last modified time
    Searched refs:lcov (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/lcov/
Makefile 2 # Makefile for LCOV
5 # - install: install LCOV tools and man pages on the system
7 # - dist: create files required for distribution, i.e. the lcov.tar.gz
8 # and the lcov.rpm file. Just make sure to adjust the VERSION
20 TMP_DIR := /tmp/lcov-tmp.$(shell echo $$$$)
35 rm -f lcov-*.tar.gz
36 rm -f lcov-*.rpm
40 bin/install.sh bin/lcov $(BIN_DIR)/lcov
45 bin/install.sh man/lcov.1 $(MAN_DIR)/man1/lcov.
    [all...]
  /external/chromium_org/third_party/lcov-1.9/
Makefile 2 # Makefile for LCOV
5 # - install: install LCOV tools and man pages on the system
7 # - dist: create files required for distribution, i.e. the lcov.tar.gz
8 # and the lcov.rpm file. Just make sure to adjust the VERSION
20 TMP_DIR := /tmp/lcov-tmp.$(shell echo $$$$)
35 rm -f lcov-*.tar.gz
36 rm -f lcov-*.rpm
40 bin/install.sh bin/lcov $(BIN_DIR)/lcov -m 755
45 bin/install.sh man/lcov.1 $(MAN_DIR)/man1/lcov.1 -m 64
    [all...]
  /external/chromium_org/third_party/lcov/rpm/
lcov.spec 2 Name: lcov
7 URL: http://ltp.sourceforge.net/coverage/lcov.php
8 Source0: http://downloads.sourceforge.net/ltp/lcov-%{version}.tar.gz
13 LCOV is a graphical front-end for GCC's coverage testing tool gcov. It collects
19 %setup -q -n lcov-%{version}
  /external/chromium_org/third_party/lcov-1.9/rpm/
lcov.spec 2 Name: lcov
7 URL: http://ltp.sourceforge.net/coverage/lcov.php
8 Source0: http://downloads.sourceforge.net/ltp/lcov-%{version}.tar.gz
13 LCOV is a graphical front-end for GCC's coverage testing tool gcov. It collects
19 %setup -q -n lcov-%{version}
  /external/emma/
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/chromium_org/tools/code_coverage/
coverage.py 236 the lcov format. This method needs to be called before the TearDown method.
249 logging.info('Upload path not specified. Will not convert to LCOV')
259 lcov_file = os.path.join(upload_path, 'chrome_win32_%s.lcov' %
261 lcov = open(lcov_file, 'w')
263 # Convert the intermediate .coverage file to lcov format
265 logging.error('Lcov converter tool not found')
278 # logging.error('Conversion to LCOV failed. Exiting.')
279 tmp_lcov_file = coverage_file + '.lcov'
280 logging.info('Conversion to lcov complete for %s' % (coverage_file))
281 # Now append this .lcov file to the cumulative lcov fil
    [all...]
process_coverage.py 7 """Script to clean the lcov files and convert it to HTML
24 # remove references to these files from the lcov file otherwise genhtml will
61 """Runs genhtml to convert lcov data to human readable HTML.
63 This script expects the LCOV file name to be in the format:
64 chrome_<platform>_<revision#>.lcov.
70 lcov_path: Path of the lcov data file.
77 # Parse the LCOV file name.
104 """Cleanup the lcov data generated on Windows.
106 This method fixes up the paths inside the lcov file from the Win32 specific
107 paths to the actual paths of the mounted CIFS share. The lcov files generate
    [all...]
  /external/chromium_org/third_party/lcov/example/
Makefile 2 # Makefile for the LCOV example program.
13 LCOV := ../bin/lcov
71 $(LCOV) --zerocounters --directory .
73 $(LCOV) --capture --directory . --output-file trace_noargs.info --test-name test_noargs
81 $(LCOV) --zerocounters --directory .
83 $(LCOV) --capture --directory . --output-file trace_args.info --test-name test_2_to_2000
91 $(LCOV) --zerocounters --directory .
93 $(LCOV) --capture --directory . --output-file trace_overflow.info --test-name "test_overflow"
  /external/chromium_org/third_party/lcov-1.9/example/
Makefile 2 # Makefile for the LCOV example program.
13 LCOV := ../bin/lcov
71 $(LCOV) --zerocounters --directory .
73 $(LCOV) --capture --directory . --output-file trace_noargs.info --test-name test_noargs
81 $(LCOV) --zerocounters --directory .
83 $(LCOV) --capture --directory . --output-file trace_args.info --test-name test_2_to_2000
91 $(LCOV) --zerocounters --directory .
93 $(LCOV) --capture --directory . --output-file trace_overflow.info --test-name "test_overflow"
  /external/emma/core/java12/com/vladium/emma/report/
AbstractReportGenerator.java 46 else if ("lcov".equals (type))
47 return new com.vladium.emma.report.lcov.ReportGenerator ();
  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 11 package com.vladium.emma.report.lcov;
46 * Generates LCOV format files:
110 outFile = new File("coverage.lcov");
280 // TODO: Add partial coverage support to LCOV
409 private static final String TYPE = "lcov";
  /external/chromium_org/third_party/lcov/bin/
lcov 20 # lcov
23 # LCOV coverage data.
40 # 2003-04-10 / Peter Oberparleiter: extended Paul's change so that LCOV
68 our $lcov_version = "LCOV version 1.7";
69 our $lcov_url = "http://ltp.sourceforge.net/coverage/lcov.php";
381 Use lcov to collect coverage data from either the currently running Linux
    [all...]
  /external/bison/
maint.mk     [all...]
  /external/chromium_org/third_party/lcov-1.9/bin/
lcov 20 # lcov
23 # LCOV coverage data.
40 # 2003-04-10 / Peter Oberparleiter: extended Paul's change so that LCOV
74 our $lcov_version = 'LCOV version 1.9';
75 our $lcov_url = "http://ltp.sourceforge.net/coverage/lcov.php";
457 Use lcov to collect coverage data from either the currently running Linux
1214 # as generated by lcov --to-package.
    [all...]

Completed in 342 milliseconds