HomeSort by relevance Sort by last modified time
    Searched refs:Foobar (Results 1 - 14 of 14) 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
320 namespace somewhere { int foobar; } member in namespace:using_decl::somewhere
321 using somewhere::foobar; // expected-note {{declared here}}
322 int k = goobar; // expected-error {{did you mean 'foobar'?}}
  /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 248 struct Foobar { // expected-note 2{{declared here}}
249 FooBar(); // expected-error {{missing return type for function 'FooBar'; did you mean the constructor name 'Foobar'?}}
250 ~FooBar(); // expected-error {{expected the class name after '~' to name a destructor}}
252 FooBar::FooBar() {} // expected-error {{undeclared}} expected-error {{missing return type}}
253 FooBar::~FooBar() {} // expected-error {{undeclared}} expected-error {{expected the class name}}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_format.py 275 class Foobar(long):
280 test_exc('%o', Foobar(), TypeError,
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_format.py 285 class Foobar(long):
290 test_exc('%o', Foobar(), TypeError,
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_format.py 285 class Foobar(long):
290 test_exc('%o', Foobar(), TypeError,
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
composite.go 91 &scanner.Error{Msg: "foobar"},
94 &scanner.Error{"foobar"}, // ERROR "unkeyed fields"
103 var unknownPkgVar = unknownpkg.Foobar{"foo", "bar"}
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
composite.go 91 &scanner.Error{Msg: "foobar"},
94 &scanner.Error{"foobar"}, // ERROR "unkeyed fields"
103 var unknownPkgVar = unknownpkg.Foobar{"foo", "bar"}
  /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/python/cpython2/Lib/test/
test_format.py 286 class Foobar(long):
291 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 578 milliseconds