/external/clang/test/Index/ |
complete-preamble.h | 2 void wibble();
|
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
|
c-index-pch.c | 6 // ALL: FunctionDecl=wibble 8 void wibble(int i);
|
/external/clang/test/Modules/Inputs/ |
weird_objc.h | 1 typedef struct objc_object { void *super; int wibble; } *id; member in struct:objc_object
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
iwmmxt-bad.s | 9 tmcr wibble,r1 10 wldrw wibble,[r1] 11 wstrw wibble,[r1]
|
mapshort.s | 23 wibble: label
|
iwmmxt-bad.l | 10 [^:]*:9: Error: iWMMXt control register expected -- `tmcr wibble,r1' 11 [^:]*:10: Error: iWMMXt data or control register expected -- `wldrw wibble,\[r1\]' 12 [^:]*:11: Error: iWMMXt data or control register expected -- `wstrw wibble,\[r1\]'
|
/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/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 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/CodeCompletion/Inputs/ |
macros.h | 4 #define WIBBLE(...)
|
/external/clang/test/Parser/ |
top-level-semi-cxx0x.cpp | 8 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;
|
warn-missing-noreturn.cpp | 108 void wibble() __attribute((__noreturn__)); 112 void wibble(); 116 thing.wibble();
|
/external/clang/test/Sema/ |
predefined-function.c | 33 int wibble(); // expected-note {{previous declaration is here}} 34 float wibble() // expected-error {{conflicting types for 'wibble'}} function
|
/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/SemaTemplate/ |
overload-uneval.cpp | 18 class Wibble 40 Wibble<void*>::It a, b;
|
/external/llvm/test/MC/ELF/ |
undefined-directional.s | 7 # 10 "wibble.s" 8 // CHECK: wibble.s:11:{{[0-9]+}}: error: directional label undefined
|
/external/llvm/test/MC/MachO/ |
undefined-directional.s | 7 # 10 "wibble.s" 8 // CHECK: wibble.s:11:{{[0-9]+}}: error: directional label undefined
|
/external/llvm/test/MC/AArch64/ |
arm64-mapping-across-sections.s | 6 // .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
|
mapping-across-sections.s | 6 // .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
|
/external/llvm/test/MC/ARM/ |
multi-section-mapping.s | 6 @ .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/llvm/test/CodeGen/X86/ |
dbg-changes-codegen.ll | 22 ; struct Wibble { 26 ; void bar(Wibble *c) { 35 %struct.Wibble = type { i32 } 39 @wibble1 = global %struct.Wibble* null, align 8 40 @wibble2 = global %struct.Wibble* null, align 8 55 %0 = load %struct.Wibble*, %struct.Wibble** @wibble1, align 8 57 %1 = load %struct.Wibble*, %struct.Wibble** @wibble2, align 8 58 %cmp.i = icmp ugt %struct.Wibble* %1, % [all...] |
/external/clang/test/PCH/ |
floating-literal.c | 18 float wibble = 1.0E40; variable 19 // CHECK: float wibble = 1.0E+40;
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/ |
p1.cpp | 29 template<typename T> void wibble(T); 39 template<typename T> void NS::wibble(T); // expected-warning {{extra qualification}} 45 template<typename T> void NS::wibble(T) { } // expected-warning{{extra qualification on member 'wibble'}} function in class:NS::NS
|
/external/clang/test/Lexer/ |
preamble.c | 7 #elif WIBBLE 11 #ifdef WIBBLE 32 // CHECK-NEXT: #elif WIBBLE
|