OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wibble
(Results
1 - 18
of
18
) sorted by null
/external/clang/test/CXX/lex/lex.literal/lex.ext/
p10.cpp
4
void operator ""
wibble
(const char *); // expected-warning {{user-defined literal suffixes not starting with '_' are reserved; no literal will invoke this operator}}
5
void operator ""
wibble
(const char *, size_t); // expected-warning {{user-defined literal suffixes not starting with '_' are reserved; no literal will invoke this operator}}
10
123
wibble
; // expected-error {{invalid suffix '
wibble
'}}
11
123.0
wibble
; // expected-error {{invalid suffix '
wibble
'}}
12
const char *p = ""
wibble
; // expected-error {{invalid suffix on literal; C++11 requires a space between literal and identifier}} expected-error {{expected ';'}}
13
const char *q = R"x("hello")x"
wibble
; // expected-error {{invalid suffix on literal; C++11 requires a space between literal and identifier}} expected-error {{expected ';'}}
/external/clang/test/Index/
preamble.c
3
int
wibble
(int);
17
// CHECK: preamble.c:3:5: FunctionDecl=
wibble
:3:5 Extent=[3:1 - 3:16]
24
// CHECK-CC: FunctionDecl:{ResultType int}{TypedText
wibble
}{LeftParen (}{Placeholder int}{RightParen )} (50)
c-index-pch.c
6
// ALL: FunctionDecl=
wibble
8
void
wibble
(int i);
linkage.c
12
static int
wibble
(int);
26
// CHECK: FunctionDecl=
wibble
:12:12linkage=Internal
fix-its.c
4
int
wibble
;
member in struct:X
10
// CHECK: error: no member named 'wobble' in 'struct X'; did you mean '
wibble
'?
11
// CHECK: FIX-IT: Replace [13:12 - 13:18] with "
wibble
"
12
// CHECK: note: '
wibble
' declared here
14
// CHECK: error: no member named 'wabble' in 'struct X'; did you mean '
wibble
'?
15
// CHECK: FIX-IT: Replace [17:6 - 17:12] with "
wibble
"
16
// CHECK: note: '
wibble
' declared here
complete-recovery.m
10
blarg * blah =
wibble
;
/external/clang/test/CXX/class.derived/class.virtual/
p12.cpp
12
// CHECK: xp->test24_B::
wibble
()
14
virtual void
wibble
();
18
xp->test24_B::
wibble
();
/external/clang/test/Parser/
top-level-semi-cxx0x.cpp
7
void
wibble
();
/external/clang/test/SemaCXX/
qualified-names-diag.cpp
3
namespace
wibble
{
namespace in namespace:foo
22
foo::
wibble
::x a;
24
a + b; // expected-error{{invalid operands to binary expression ('foo::
wibble
::x' and '::bar::y' (aka 'int'))}}
26
::foo::
wibble
::bar::wonka::x::y c;
27
c + b; // expected-error{{invalid operands to binary expression ('::foo::
wibble
::bar::wonka::x::y' and '::bar::y' (aka 'int'))}}
32
int ::foo::
wibble
::bar::wonka::x::y::* ptrmem;
address-of.cpp
14
static void
wibble
() {
function in class:c
warn-missing-noreturn.cpp
108
void
wibble
() __attribute((__noreturn__));
112
void
wibble
();
116
thing.
wibble
();
/external/clang/test/Sema/
predefined-function.c
34
int
wibble
(); // expected-note {{previous declaration is here}}
35
float
wibble
() // expected-error {{conflicting types for '
wibble
'}}
function
designated-initializers.c
180
union
wibble
{
union
185
const union
wibble
wobble = { .arr2[0] = 0xffff,
189
const union
wibble
wobble2 = { .arr2 = {4, 5, 6}, 7 }; // expected-warning{{excess elements in union initializer}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/
p1.cpp
29
template<typename T> void
wibble
(T);
36
template<typename T> void NS::
wibble
(T) { } // expected-warning{{extra qualification on member '
wibble
'}}
function in class:NS::NS
/external/clang/test/SemaTemplate/
instantiation-default-1.cpp
13
void
wibble
();
20
d3->
wibble
();
/external/clang/test/FixIt/
typo.cpp
39
namespace
wibble
= blarg; // expected-error{{no namespace named 'blarg'; did you mean 'blargh'?}}
/external/v8/test/mjsunit/third_party/
string-trim.js
100
({toString:function(){return '
wibble
'}})
/external/webkit/LayoutTests/fast/js/resources/
JSON-stringify.js
117
return jsonObject.stringify({get Foo() { this.foo="
wibble
"; return "bar"; }});
126
return jsonObject.stringify({get Foo() { count++; delete this.bar; return "bar"; }, bar: "
wibble
"});
Completed in 951 milliseconds