OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsPrime
(Results
1 - 6
of
6
) sorted by null
/external/google-breakpad/src/testing/gtest/samples/
sample1.cc
47
bool
IsPrime
(int n) {
prime_tables.h
48
virtual bool
IsPrime
(int n) const = 0;
58
virtual bool
IsPrime
(int n) const {
71
if (
IsPrime
(n)) return n;
89
virtual bool
IsPrime
(int n) const {
sample8_unittest.cc
62
virtual bool
IsPrime
(int n) const {
64
return precalc_impl_->
IsPrime
(n);
66
return on_the_fly_impl_->
IsPrime
(n);
122
EXPECT_FALSE(table_->
IsPrime
(-5));
123
EXPECT_FALSE(table_->
IsPrime
(0));
124
EXPECT_FALSE(table_->
IsPrime
(1));
125
EXPECT_FALSE(table_->
IsPrime
(4));
126
EXPECT_FALSE(table_->
IsPrime
(6));
127
EXPECT_FALSE(table_->
IsPrime
(100));
131
EXPECT_TRUE(table_->
IsPrime
(2))
[
all
...]
/external/googletest/googletest/samples/
sample1.cc
45
bool
IsPrime
(int n) {
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
filter.cpp
5
bool
IsPrime
(int x)
49
return
IsPrime
(x);
113
return
IsPrime
(x);
181
return
IsPrime
(x);
255
return
IsPrime
(x);
326
return
IsPrime
(x);
lift.cpp
73
bool
IsPrime
(int x)
116
return
IsPrime
(x);
179
return
IsPrime
(x);
241
return
IsPrime
(x);
Completed in 173 milliseconds