OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsRepeat
(Results
1 - 11
of
11
) sorted by null
/external/gtest/test/
gtest-port_test.cc
215
EXPECT_FALSE(
IsRepeat
('\0'));
216
EXPECT_FALSE(
IsRepeat
(' '));
217
EXPECT_FALSE(
IsRepeat
('a'));
218
EXPECT_FALSE(
IsRepeat
('1'));
219
EXPECT_FALSE(
IsRepeat
('-'));
223
EXPECT_TRUE(
IsRepeat
('?'));
224
EXPECT_TRUE(
IsRepeat
('*'));
225
EXPECT_TRUE(
IsRepeat
('+'));
/external/protobuf/gtest/test/
gtest-port_test.cc
273
EXPECT_FALSE(
IsRepeat
('\0'));
274
EXPECT_FALSE(
IsRepeat
(' '));
275
EXPECT_FALSE(
IsRepeat
('a'));
276
EXPECT_FALSE(
IsRepeat
('1'));
277
EXPECT_FALSE(
IsRepeat
('-'));
281
EXPECT_TRUE(
IsRepeat
('?'));
282
EXPECT_TRUE(
IsRepeat
('*'));
283
EXPECT_TRUE(
IsRepeat
('+'));
/external/chromium/testing/gtest/test/
gtest-port_test.cc
454
EXPECT_FALSE(
IsRepeat
('\0'));
455
EXPECT_FALSE(
IsRepeat
(' '));
456
EXPECT_FALSE(
IsRepeat
('a'));
457
EXPECT_FALSE(
IsRepeat
('1'));
458
EXPECT_FALSE(
IsRepeat
('-'));
462
EXPECT_TRUE(
IsRepeat
('?'));
463
EXPECT_TRUE(
IsRepeat
('*'));
464
EXPECT_TRUE(
IsRepeat
('+'));
[
all
...]
/external/chromium/testing/gtest/src/
gtest-port.cc
189
bool
IsRepeat
(char ch) { return IsInSet(ch, "?*+"); }
275
} else if (
IsRepeat
(ch) && !prev_repeatable) {
335
if (
IsRepeat
(regex[1])) {
gtest-internal-inl.h
[
all
...]
/external/gtest/src/
gtest-port.cc
147
bool
IsRepeat
(char ch) { return IsInSet(ch, "?*+"); }
233
} else if (
IsRepeat
(ch) && !prev_repeatable) {
293
if (
IsRepeat
(regex[1])) {
gtest-internal-inl.h
[
all
...]
/external/llvm/utils/unittest/googletest/
gtest-port.cc
187
bool
IsRepeat
(char ch) { return IsInSet(ch, "?*+"); }
273
} else if (
IsRepeat
(ch) && !prev_repeatable) {
333
if (
IsRepeat
(regex[1])) {
/external/protobuf/gtest/src/
gtest-port.cc
178
bool
IsRepeat
(char ch) { return IsInSet(ch, "?*+"); }
264
} else if (
IsRepeat
(ch) && !prev_repeatable) {
324
if (
IsRepeat
(regex[1])) {
gtest-internal-inl.h
[
all
...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal-inl.h
[
all
...]
Completed in 598 milliseconds