HomeSort by relevance Sort by last modified time
    Searched refs:Foobar (Results 1 - 7 of 7) 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 193 struct Foobar *f; // expected-note{{'Foobar' declared here}}
195 test1::FooBar *b; // expected-error{{no type named 'FooBar' in namespace 'test1'; did you mean 'Foobar'?}}
209 namespace foobar { struct Thing {}; } namespace in namespace:PR12951
  /external/clang/test/Sema/
address_spaces.c 68 typedef int PR4997 __attribute__((address_space(Foobar))); // expected-error {{use of undeclared identifier 'Foobar'}}
  /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/chromium_org/tools/metrics/histograms/
find_unmapped_histograms.py 85 The collapsed string, e.g. "Foobar" for an input of '"Foo"\n "bar"'
  /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 213 milliseconds