Home
last modified time | relevance | path

Searched refs:Unprintable (Results 1 – 3 of 3) sorted by relevance

/external/protobuf/src/google/protobuf/io/
Dtokenizer.cc128 CHARACTER_CLASS(Unprintable, c < ' ' && c > '\0');
583 if (LookingAt<Unprintable>() || current_char_ == '\0') { in Next()
591 while (TryConsumeOne<Unprintable>() || in Next()
/external/google-breakpad/src/testing/test/
Dgmock-spec-builders_test.cc1857 struct Unprintable { struct
1858 Unprintable() : value(0) {} in Unprintable() function
1867 const Printable& x, Unprintable y));
1900 c.VoidMethod(false, 5, "Hi", NULL, Printable(), Unprintable()); in TEST()
1942 c.VoidMethod(false, 5, "Hi", NULL, Printable(), Unprintable()); in TEST()
Dgmock-matchers_test.cc742 class Unprintable { class
744 Unprintable() : c_('a') {} in Unprintable() function in testing::gmock_matchers_test::Unprintable
746 bool operator==(const Unprintable& /* rhs */) { return true; } in operator ==() argument
752 Matcher<Unprintable> m = Eq(Unprintable()); in TEST()