代码搜索:Coverage
找到约 1,248 项符合「Coverage」的源代码
代码结果 1,248
www.eeworm.com/read/125811/6022188
h ftxgpos.h
/*******************************************************************
*
* ftxgpos.h
*
* TrueType Open GPOS table support
*
* Copyright 1996-1999 by
* David Turner, Robert Wilhelm, and Wern
www.eeworm.com/read/125811/6022251
h ftxgpos.h
/*******************************************************************
*
* ftxgpos.h
*
* TrueType Open GPOS table support
*
* Copyright 1996-1999 by
* David Turner, Robert Wilhelm, and Wern
www.eeworm.com/read/158106/5598785
h ftxgpos.h
/*******************************************************************
*
* ftxgpos.h
*
* TrueType Open GPOS table support
*
* Copyright 1996-1999 by
* David Turner, Robert Wilhelm, and Wern
www.eeworm.com/read/158106/5598848
h ftxgpos.h
/*******************************************************************
*
* ftxgpos.h
*
* TrueType Open GPOS table support
*
* Copyright 1996-1999 by
* David Turner, Robert Wilhelm, and Wern
www.eeworm.com/read/195484/8150759
h harfbuzz-gpos-private.h
/*******************************************************************
*
* Copyright 1996-2000 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Copyright 2006 Behdad Esfahbod
*
* T
www.eeworm.com/read/195484/8150776
h harfbuzz-gsub-private.h
/*******************************************************************
*
* Copyright 1996-2000 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Copyright 2006 Behdad Esfahbod
*
* T
www.eeworm.com/read/245254/4505323
makefile
.PHONY: coverage
coverage:
./cover_rtcs.sh
clean:
./clean_rtcs.sh
www.eeworm.com/read/179153/5309394
t podcover.t
#!/usr/bin/perl -T
use strict;
use Test::More;
eval "use Test::Pod::Coverage 1.06";
plan skip_all => "Test::Pod::Coverage 1.06 required for testing POD coverage" if $@;
all_pod_coverage_ok({also_priva
www.eeworm.com/read/429798/8788008
txt using_gcov.txt
Update the Makefile.
CXXFLAGS=-Wall -pedantic -g -fprofile-arcs -ftest-coverage
make clean
make test
gcov --object-directory src/ src/checkmemoryleak.cpp
www.eeworm.com/read/382997/8982138
makefile
CPP = g++
BIN = print_prime
LIBS =
CXXFLAGS = -g -pg -fprofile-arcs -ftest-coverage
OBJS = print_prime.o
$(BIN) : $(OBJS)
$(CPP) $(OBJS) $(CXXFLAGS) -o $(BIN) $(LIBS)
$(OBJS) : %.o : %.cpp
$(CP