Home
last modified time | relevance | path

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

/external/clang/test/SemaCXX/
Dfunction-redecl.cpp119 bool isGood(); // expected-note {{'Bar::Foo::isGood' declared here}}
123 bool Foo::isGood() { // expected-error {{out-of-line definition of 'isGood' does not match any decl… in isGood() function in redecl_typo::Foo
/external/clang/test/FixIt/
Dfixit.cpp258 bool isGood(); // expected-note {{'Bar::Foo::isGood' declared here}}
262 bool Foo::isGood() { // expected-error {{out-of-line definition of 'isGood' does not match any decl… in isGood() function in redecl_typo::Foo
/external/google-styleguide/
Dobjcguide.md643 BOOL isGood = object.glorious; // GOOD.
644 BOOL isGood = [object isGlorious]; // GOOD.
650 BOOL isGood = object.isGlorious; // AVOID.