HomeSort by relevance Sort by last modified time
    Searched refs:Foobar (Results 1 - 8 of 8) sorted by null

  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 3 namespace fizbin { class Foobar {}; } // expected-note 2 {{'fizbin::Foobar' declared here}} \
4 // expected-note {{'Foobar' declared here}}
5 Foobar *my_bar // expected-error{{unknown type name 'Foobar'; did you mean 'fizbin::Foobar'?}}
6 = new Foobar; // expected-error{{unknown type name 'Foobar'; did you mean 'fizbin::Foobar'?}}
7 fizbin::Foobar *my_foo = new fizbin::FooBar; // expected-error{{no type named 'FooBar' in namespace 'fizbin'; did (…)
    [all...]
typo-correction.cpp 194 struct Foobar *f; // expected-note{{'Foobar' declared here}}
196 test1::FooBar *b; // expected-error{{no type named 'FooBar' in namespace 'test1'; did you mean 'Foobar'?}}
292 namespace foobar { struct Thing {}; } namespace in namespace:PR12951
  /external/clang/test/SemaTemplate/
instantiate-method.cpp 187 template <typename T> struct Foobar {
193 Foobar<void>::bazqux(); // expected-error{{no member named 'bazqux' in }} expected-note{{in instantiation of template class }}
194 Foobar<int>::bazqux(); // expected-error{{no member named 'bazqux' in }} expected-note{{in instantiation of template class }}
195 Foobar<int>::bazqux(3); // expected-error{{no member named 'bazqux' in }}
  /external/clang/test/Sema/
address_spaces.c 68 typedef int PR4997 __attribute__((address_space(Foobar))); // expected-error {{use of undeclared identifier 'Foobar'}}
  /external/clang/test/Parser/
cxx-decl.cpp 227 struct Foobar { // expected-note 2{{declared here}}
228 FooBar(); // expected-error {{missing return type for function 'FooBar'; did you mean the constructor name 'Foobar'?}}
229 ~FooBar(); // expected-error {{expected the class name after '~' to name a destructor}}
231 FooBar::FooBar() {} // expected-error {{undeclared}} expected-error {{missing return type}}
232 FooBar::~FooBar() {} // expected-error {{undeclared}} expected-error {{expected the class name}}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_format.py 285 class Foobar(long):
290 test_exc('%o', Foobar(), TypeError,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_format.py 285 class Foobar(long):
290 test_exc('%o', Foobar(), TypeError,
  /external/antlr/antlr-3.4/runtime/Python/
xmlrunner.py 226 messages are reduced to "Foobar".
237 # Likewise, replace all failure and error messages by a simple "Foobar"
239 got = re.sub(r'(?s)<failure (.*?)>.*?</failure>', r'<failure \1>Foobar</failure>', got)
240 got = re.sub(r'(?s)<error (.*?)>.*?</error>', r'<error \1>Foobar</error>', got)
282 <failure type="exceptions.AssertionError">Foobar</failure>
299 <error type="exceptions.IndexError">Foobar</error>

Completed in 480 milliseconds