OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsPrime
(Results
26 - 40
of
40
) sorted by null
1
2
/external/chromium/testing/gtest/samples/
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
...]
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 {
sample1.cc
47
bool
IsPrime
(int n) {
/external/chromium_org/testing/gtest/samples/
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
...]
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 {
sample1.cc
47
bool
IsPrime
(int n) {
/external/gtest/samples/
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
...]
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 {
sample1.cc
47
bool
IsPrime
(int n) {
/external/protobuf/gtest/samples/
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
...]
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 {
sample1.cc
47
bool
IsPrime
(int n) {
/ndk/sources/third_party/googletest/googletest/samples/
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
...]
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 {
sample1.cc
47
bool
IsPrime
(int n) {
Completed in 688 milliseconds
1
2