/external/protobuf/gtest/src/ |
D | gtest-port.cc | 176 bool IsInSet(char ch, const char* str) { in IsInSet() function 185 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsPunct() 187 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 188 bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsWhiteSpace() 196 return (IsPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 269 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 279 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
D | gtest-internal-inl.h | 957 GTEST_API_ bool IsInSet(char ch, const char* str);
|
/external/mesa3d/src/gtest/src/ |
D | gtest-port.cc | 178 bool IsInSet(char ch, const char* str) { in IsInSet() function 187 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 189 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 190 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 198 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 271 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 281 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
D | gtest-internal-inl.h | 913 GTEST_API_ bool IsInSet(char ch, const char* str);
|
/external/llvm/utils/unittest/googletest/src/ |
D | gtest-port.cc | 178 bool IsInSet(char ch, const char* str) { in IsInSet() function 187 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 189 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 190 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 198 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 271 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 281 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
D | gtest-internal-inl.h | 916 GTEST_API_ bool IsInSet(char ch, const char* str);
|
/external/google-breakpad/src/testing/gtest/src/ |
D | gtest-port.cc | 203 bool IsInSet(char ch, const char* str) { in IsInSet() function 212 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 214 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 215 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 223 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 296 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 306 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
D | gtest-internal-inl.h | 931 GTEST_API_ bool IsInSet(char ch, const char* str);
|
/external/gtest/src/ |
D | gtest-port.cc | 226 bool IsInSet(char ch, const char* str) { in IsInSet() function 235 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 237 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 238 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 246 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 319 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 329 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
D | gtest-internal-inl.h | 944 GTEST_API_ bool IsInSet(char ch, const char* str);
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/ |
D | gtest-port.cc | 586 bool IsInSet(char ch, const char* str) { in IsInSet() function 595 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 597 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 598 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 606 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 679 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 689 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
D | gtest-port.cc.orig | 203 bool IsInSet(char ch, const char* str) { 212 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); 214 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } 215 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } 223 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); 296 } else if (IsInSet(ch, "()[]{}|")) { 306 prev_repeatable = !IsInSet(ch, "^$?*+");
|
D | gtest-internal-inl.h | 944 GTEST_API_ bool IsInSet(char ch, const char* str);
|
/external/protobuf/gtest/test/ |
D | gtest-port_test.cc | 242 EXPECT_FALSE(IsInSet('\0', "")); in TEST() 243 EXPECT_FALSE(IsInSet('\0', "\0")); in TEST() 244 EXPECT_FALSE(IsInSet('\0', "a")); in TEST() 248 EXPECT_FALSE(IsInSet('a', "Ab")); in TEST() 249 EXPECT_FALSE(IsInSet('c', "")); in TEST() 251 EXPECT_TRUE(IsInSet('b', "bcd")); in TEST() 252 EXPECT_TRUE(IsInSet('b', "ab")); in TEST()
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-port_test.cc | 435 EXPECT_FALSE(IsInSet('\0', "")); in TEST() 436 EXPECT_FALSE(IsInSet('\0', "\0")); in TEST() 437 EXPECT_FALSE(IsInSet('\0', "a")); in TEST() 441 EXPECT_FALSE(IsInSet('a', "Ab")); in TEST() 442 EXPECT_FALSE(IsInSet('c', "")); in TEST() 444 EXPECT_TRUE(IsInSet('b', "bcd")); in TEST() 445 EXPECT_TRUE(IsInSet('b', "ab")); in TEST()
|
/external/gtest/test/ |
D | gtest-port_test.cc | 465 EXPECT_FALSE(IsInSet('\0', "")); in TEST() 466 EXPECT_FALSE(IsInSet('\0', "\0")); in TEST() 467 EXPECT_FALSE(IsInSet('\0', "a")); in TEST() 471 EXPECT_FALSE(IsInSet('a', "Ab")); in TEST() 472 EXPECT_FALSE(IsInSet('c', "")); in TEST() 474 EXPECT_TRUE(IsInSet('b', "bcd")); in TEST() 475 EXPECT_TRUE(IsInSet('b', "ab")); in TEST()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
D | gtest-port_test.cc | 472 EXPECT_FALSE(IsInSet('\0', "")); in TEST() 473 EXPECT_FALSE(IsInSet('\0', "\0")); in TEST() 474 EXPECT_FALSE(IsInSet('\0', "a")); in TEST() 478 EXPECT_FALSE(IsInSet('a', "Ab")); in TEST() 479 EXPECT_FALSE(IsInSet('c', "")); in TEST() 481 EXPECT_TRUE(IsInSet('b', "bcd")); in TEST() 482 EXPECT_TRUE(IsInSet('b', "ab")); in TEST()
|
/external/pdfium/third_party/lcms2-2.6/src/ |
D | cmsgamma.c | 165 int IsInSet(int Type, _cmsParametricCurvesCollection* c) in IsInSet() function 186 Position = IsInSet(Type, c); in GetParametricCurveByType() 197 Position = IsInSet(Type, c); in GetParametricCurveByType()
|
/external/protobuf/gtest/fused-src/gtest/ |
D | gtest-all.cc | 1351 GTEST_API_ bool IsInSet(char ch, const char* str); 7759 bool IsInSet(char ch, const char* str) { in IsInSet() function 7768 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsPunct() 7770 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 7771 bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsWhiteSpace() 7779 return (IsPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 7852 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 7862 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
/external/opencv3/modules/ts/src/ |
D | ts_gtest.cpp | 1354 GTEST_API_ bool IsInSet(char ch, const char* str); 8454 bool IsInSet(char ch, const char* str) { in IsInSet() function 8463 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 8465 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 8466 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 8474 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 8547 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 8557 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/ |
D | gtest-all.cc | 1345 GTEST_API_ bool IsInSet(char ch, const char* str); 8413 bool IsInSet(char ch, const char* str) { in IsInSet() function 8422 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 8424 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 8425 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 8433 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 8506 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 8516 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
/external/libvpx/libvpx/third_party/googletest/src/src/ |
D | gtest-all.cc | 1345 GTEST_API_ bool IsInSet(char ch, const char* str); 8411 bool IsInSet(char ch, const char* str) { in IsInSet() function 8420 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 8422 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 8423 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 8431 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 8504 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 8514 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SROA.cpp | 4223 auto IsInSet = [&](AllocaInst *AI) { return DeletedAllocas.count(AI); }; in runImpl() local 4224 Worklist.remove_if(IsInSet); in runImpl() 4225 PostPromotionWorklist.remove_if(IsInSet); in runImpl() 4228 IsInSet), in runImpl()
|
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/ |
D | breakpad_unittests.sym | 27732 FUNC 430e4 18 0 testing::internal::IsInSet
|
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/D6D1FEC9A15DE7F38A236898871A2E770/ |
D | breakpad_unittests.sym | 29294 FUNC 640e4 30 0 testing::internal::IsInSet
|