Searched refs:wibble (Results 1 - 25 of 25) sorted by relevance

/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp10.cpp4 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 123wibble; // expected-error {{invalid suffix 'wibble'}}
11 123.0wibble; // 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/
H A Dc-index-pch.c6 // ALL: FunctionDecl=wibble
8 void wibble(int i);
H A Dcomplete-preamble.h2 void wibble();
H A Dpreamble.c8 int wibble(int);
22 // CHECK: preamble.c:8:5: FunctionDecl=wibble:8:5 Extent=[8:1 - 8:16]
32 // CHECK-CC: FunctionDecl:{ResultType int}{TypedText wibble}{LeftParen (}{Placeholder int}{RightParen )} (50)
H A Dfix-its.c4 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
H A Dlinkage.c12 static int wibble(int);
32 // CHECK: FunctionDecl=wibble:12:12linkage=Internal
H A Dcomplete-recovery.m10 blarg * blah = wibble;
/external/clang/test/Modules/Inputs/
H A Dweird_objc.h1 typedef struct objc_object { void *super; int wibble; } *id; member in struct:objc_object
/external/clang/test/CXX/class.derived/class.virtual/
H A Dp12.cpp12 // CHECK: xp->test24_B::wibble()
14 virtual void wibble();
18 xp->test24_B::wibble();
/external/clang/test/PCH/
H A Dfloating-literal.c17 float wibble = 1.0E40; variable
18 // CHECK: float wibble = 1.0E+40;
/external/clang/test/Parser/
H A Dtop-level-semi-cxx0x.cpp8 void wibble();
/external/clang/test/SemaCXX/
H A Dqualified-names-diag.cpp3 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;
H A Dwarn-missing-noreturn.cpp108 void wibble() __attribute((__noreturn__));
112 void wibble();
116 thing.wibble();
H A Daddress-of.cpp14 static void wibble() { function in class:c
H A Dattr-noreturn.cpp80 template<typename> void wibble() __attribute__((__noreturn__));
81 template<typename> voidfn wibble; member in namespace:PR12948
/external/clang/test/Sema/
H A Dpredefined-function.c34 int wibble(); // expected-note {{previous declaration is here}}
35 float wibble() // expected-error {{conflicting types for 'wibble'}} function
H A Ddesignated-initializers.c179 union wibble { union
184 const union wibble wobble = { .arr2[0] = 0xffff,
188 const union wibble wobble2 = { .arr2 = {4, 5, 6}, 7 }; // expected-warning{{excess elements in union initializer}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/
H A Dp1.cpp29 template<typename T> void wibble(T);
38 template<typename T> void NS::wibble(T); // expected-warning {{extra qualification}}
44 template<typename T> void NS::wibble(T) { } // expected-warning{{extra qualification on member 'wibble'}} function in class:NS::NS
/external/llvm/test/MC/AArch64/
H A Darm64-mapping-across-sections.s6 // .wibble should *not* inherit .text's mapping symbol. It's a completely different section.
7 .section .wibble
20 // + .wibble to have $x at 0
26 // CHECK-NEXT: 00000000 .wibble 00000000 $x
H A Dmapping-across-sections.s6 // .wibble should *not* inherit .text's mapping symbol. It's a completely different section.
7 .section .wibble
20 // + .wibble to have $x at 0
26 // CHECK-NEXT: 00000000 .wibble 00000000 $x
H A Dbasic-a64-diagnostics.s2393 prfm wibble, [sp]
2407 // CHECK-ERROR-NEXT: prfm wibble, [sp]
/external/llvm/test/MC/ARM/
H A Dmulti-section-mapping.s6 @ .wibble should *not* inherit .text's mapping symbol. It's a completely different section.
7 .section .wibble
26 @ + .wibble to have $a at 0
31 @ CHECK-NEXT: 00000000 .wibble 00000000 $a
/external/clang/test/FixIt/
H A Dtypo.cpp39 namespace wibble = blarg; // expected-error{{no namespace named 'blarg'; did you mean 'blargh'?}}
84 wibble::yarn str5; // expected-error{{no type named 'yarn' in namespace 'otherstd'; did you mean 'nonstd::yarn'?}}
92 return wibble::narf; // expected-error{{no member named 'narf' in namespace 'otherstd'; did you mean 'nonstd::narf'?}}
/external/clang/test/SemaTemplate/
H A Dinstantiation-default-1.cpp13 void wibble();
20 d3->wibble();
H A Doverload-candidates.cpp124 void wibble() {} function in namespace:PR15673
125 void wobble() { wibble<int>(); } // expected-error {{no matching function for call to 'wibble'}}

Completed in 4705 milliseconds