OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Foobar
(Results
1 - 6
of
6
) 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
'?}}
/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}}
/external/chromium_org/tools/metrics/histograms/
find_unmapped_histograms.py
86
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 615 milliseconds