OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PrimeTable
(Results
1 - 12
of
12
) sorted by null
/external/chromium/testing/gtest/samples/
prime_tables.h
33
// This provides interface
PrimeTable
that determines whether a number is a
43
class
PrimeTable
{
45
virtual ~
PrimeTable
() {}
56
class OnTheFlyPrimeTable : public
PrimeTable
{
80
class PreCalculatedPrimeTable : public
PrimeTable
{
sample7_unittest.cc
51
// function for
PrimeTable
objects. We will instantiate objects in test's
53
typedef
PrimeTable
* CreatePrimeTableFunc();
55
PrimeTable
* CreateOnTheFlyPrimeTable() {
60
PrimeTable
* CreatePreCalculatedPrimeTable() {
67
// create and store an instance of
PrimeTable
.
78
PrimeTable
* table_;
113
// Here, we instantiate our tests with a list of two
PrimeTable
object
sample6_unittest.cc
45
PrimeTable
* CreatePrimeTable();
48
PrimeTable
* CreatePrimeTable<OnTheFlyPrimeTable>() {
53
PrimeTable
* CreatePrimeTable<PreCalculatedPrimeTable>() {
74
PrimeTable
* const table_;
sample8_unittest.cc
43
// Suppose we want to introduce a new, improved implementation of
PrimeTable
50
class HybridPrimeTable : public
PrimeTable
{
117
// In this case, the test parameter is a
PrimeTable
interface pointer which
/external/gtest/samples/
prime_tables.h
33
// This provides interface
PrimeTable
that determines whether a number is a
43
class
PrimeTable
{
45
virtual ~
PrimeTable
() {}
56
class OnTheFlyPrimeTable : public
PrimeTable
{
80
class PreCalculatedPrimeTable : public
PrimeTable
{
sample7_unittest.cc
51
// function for
PrimeTable
objects. We will instantiate objects in test's
53
typedef
PrimeTable
* CreatePrimeTableFunc();
55
PrimeTable
* CreateOnTheFlyPrimeTable() {
60
PrimeTable
* CreatePreCalculatedPrimeTable() {
67
// create and store an instance of
PrimeTable
.
78
PrimeTable
* table_;
113
// Here, we instantiate our tests with a list of two
PrimeTable
object
sample6_unittest.cc
45
PrimeTable
* CreatePrimeTable();
48
PrimeTable
* CreatePrimeTable<OnTheFlyPrimeTable>() {
53
PrimeTable
* CreatePrimeTable<PreCalculatedPrimeTable>() {
74
PrimeTable
* const table_;
sample8_unittest.cc
43
// Suppose we want to introduce a new, improved implementation of
PrimeTable
50
class HybridPrimeTable : public
PrimeTable
{
117
// In this case, the test parameter is a
PrimeTable
interface pointer which
/external/protobuf/gtest/samples/
prime_tables.h
33
// This provides interface
PrimeTable
that determines whether a number is a
43
class
PrimeTable
{
45
virtual ~
PrimeTable
() {}
56
class OnTheFlyPrimeTable : public
PrimeTable
{
80
class PreCalculatedPrimeTable : public
PrimeTable
{
sample7_unittest.cc
51
// In this sample we will define a simple factory function for
PrimeTable
54
typedef
PrimeTable
* CreatePrimeTableFunc();
56
PrimeTable
* CreateOnTheFlyPrimeTable() {
61
PrimeTable
* CreatePreCalculatedPrimeTable() {
69
//
PrimeTable
.
80
PrimeTable
* table_;
115
// Here, we instantiate our tests with a list of two
PrimeTable
object
sample6_unittest.cc
45
PrimeTable
* CreatePrimeTable();
48
PrimeTable
* CreatePrimeTable<OnTheFlyPrimeTable>() {
53
PrimeTable
* CreatePrimeTable<PreCalculatedPrimeTable>() {
74
PrimeTable
* const table_;
sample8_unittest.cc
43
// Suppose we want to introduce a new, improved implementation of
PrimeTable
50
class HybridPrimeTable : public
PrimeTable
{
117
// In this case, the test parameter is a
PrimeTable
interface pointer which
Completed in 1620 milliseconds