/external/clang/test/CodeCompletion/Inputs/ |
macros.h | 4 #define 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/Index/ |
fix-its.c | 4 int wibble; member in struct:X 10 // CHECK: error: no member named 'wobble' in 'struct X'; did you mean '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
|
c-index-pch.c | 6 // ALL: FunctionDecl=wibble 8 void wibble(int i);
|
linkage.c | 12 static int wibble(int); 24 // CHECK: FunctionDecl=wibble:12:12linkage=Internal
|
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)
|
nested-macro-instantiations.cpp | 3 #define WIBBLE(x) BAR(x) 5 WIBBLE(int x); 10 // CHECK-WITH-NESTED: nested-macro-instantiations.cpp:5:1: macro expansion=WIBBLE:3:9 Extent=[5:1 - 5:14] 18 // CHECK-WITHOUT-NESTED: nested-macro-instantiations.cpp:5:1: macro expansion=WIBBLE:3:9 Extent=[5:1 - 5:14]
|
annotate-tokens-pp.c | 4 #define WIBBLE(X, Y) X##Y 5 NOTHING(more,junk) float WIBBLE(int, float); 50 // CHECK: Identifier: "WIBBLE" [4:9 - 4:15] macro definition=WIBBLE 51 // CHECK: Punctuation: "(" [4:15 - 4:16] macro definition=WIBBLE 52 // CHECK: Identifier: "X" [4:16 - 4:17] macro definition=WIBBLE 53 // CHECK: Punctuation: "," [4:17 - 4:18] macro definition=WIBBLE 54 // CHECK: Identifier: "Y" [4:19 - 4:20] macro definition=WIBBLE 55 // CHECK: Punctuation: ")" [4:20 - 4:21] macro definition=WIBBLE 56 // CHECK: Identifier: "X" [4:22 - 4:23] macro definition=WIBBLE [all...] |
/external/clang/test/SemaCXX/ |
unknown-type-name.cpp | 5 struct Wibble { 8 typedef Wibble foo; 12 foo::bar x; // expected-error{{no type named 'bar' in 'N::Wibble'}} 15 foo::bar = 4; // expected-error{{no member named 'bar' in 'N::Wibble'}}
|
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;
|
warn-missing-noreturn.cpp | 108 void wibble() __attribute((__noreturn__)); 112 void wibble(); 116 thing.wibble();
|
pseudo-destructors.cpp | 13 typedef Foo Wibble; 37 f->N::~Wibble(); // FIXME: technically, Wibble isn't a class-name
|
address-of.cpp | 14 static void wibble() { function in class:c
|
/external/clang/test/SemaObjC/ |
at-defs.m | 17 struct wibble { 26 printf("12: %d\n", ((struct wibble*)a)->foo); 27 printf("%d: %d\n", ((char*)&(((struct wibble*)a)->foo)) - (char*)a, ((char*)&(a->foo)) - (char*)a);
|
/external/clang/test/Parser/ |
top-level-semi-cxx0x.cpp | 7 void 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/SemaTemplate/ |
overload-uneval.cpp | 17 class Wibble 39 Wibble<void*>::It a, b;
|
class-template-spec.cpp | 110 template<template<class T> class Wibble> 111 class Wibble<int> { }; // expected-error{{cannot specialize a template template parameter}}
|
instantiation-default-1.cpp | 13 void wibble(); 20 d3->wibble();
|
/external/clang/test/Lexer/ |
preamble.c | 7 #elif WIBBLE 11 #ifdef WIBBLE 32 // CHECK-NEXT: #elif WIBBLE
|
/external/clang/test/Modules/ |
macros.c | 36 #__export_macro__ WIBBLE // expected-error{{no macro named 'WIBBLE' to export}}
|
/external/clang/test/ASTMerge/Inputs/ |
interface1.m | 69 - (float)wibble:(int)a1 second:(int)a2;
|
interface2.m | 68 - (float)wibble:(int)a1 second:(int)a2;
|
/external/clang/test/CodeCompletion/ |
macros.c | 33 // CC2: WIBBLE
|