/external/clang/test/CXX/dcl.decl/dcl.meaning/ |
p1-0x.cpp | 3 // The nested-name-specifier of a qualified declarator-id shall not begin with a decltype-specifier. 21 int decltype(tfoo<T>())::i; // expected-error{{nested name specifier 'decltype(tfoo<T>())::' for declaration does not refer into a class, class template or class template partial specialization}} 23 void decltype(tfoo<T>())::func() { // expected-error{{nested name specifier 'decltype(tfoo<T>())::' for declaration does not refer into a class, class template or class template partial specialization}}
|
/external/clang/test/CXX/temp/temp.res/temp.local/ |
p3.cpp | 28 expected-error{{requires a type specifier}}
|
/external/clang/test/CodeGen/ |
arm-vector-align.c | 12 // Radar 9311427: Check that alignment specifier is used in Neon load/store
|
/external/clang/test/CodeGenOpenCL/ |
address-spaces-mangling.cl | 5 // no specifier given address space so we get multiple definition
|
/external/clang/test/Modules/Inputs/merge-using-decls/ |
b.h | 39 // Mismatch in nested-name-specifier.
|
/external/clang/test/Parser/ |
atomic.c | 5 typedef _Atomic _Atomic _Atomic(int) atomic_int; // expected-warning {{duplicate '_Atomic' declaration specifier}}
|
colon-colon-parentheses.cpp | 25 // expected-error@+4{{C++ requires a type specifier for all declarations}}
|
declarators.c | 9 int f4(*XX)(void); /* expected-error {{cannot return}} expected-warning {{type specifier missing, defaults to 'int'}} */ 64 static f; // expected-warning {{type specifier missing, defaults to 'int'}} 65 static g = 4; // expected-warning {{type specifier missing, defaults to 'int'}} 66 static h // expected-warning {{type specifier missing, defaults to 'int'}}
|
/external/clang/test/Sema/ |
block-args.c | 40 int (^f)() = ^((x)) { }; // expected-error {{expected ')'}} expected-warning {{type specifier missing}} expected-note {{to match this}}
|
block-printf-attribute-1.c | 20 vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
|
/external/clang/test/SemaCXX/ |
crashes.cpp | 179 member(); // expected-error{{C++ requires a type specifier for all declarations}} 180 static member(); // expected-error{{C++ requires a type specifier for all declarations}} 235 appendList(int[]...); // expected-error {{C++ requires a type specifier for all declarations}} 236 appendList(int[]...) { } // expected-error {{C++ requires a type specifier for all declarations}}
|
unknown-type-name.cpp | 75 int f1(undeclared, int); // expected-error{{requires a type specifier}} 102 // have a dependent nested name specifier. 105 // FIXME: We know which type specifier should have been specified here. Provide 108 A<T>::g() { } // expected-error{{requires a type specifier}}
|
warn-static-const-float.cpp | 13 // expected-error@20 {{in-class initializer for static data member of type 'const double' requires 'constexpr' specifier}}
|
/external/clang/test/SemaObjC/ |
protocols.m | 65 - (int)test:(int)param, ..; // expected-warning{{type specifier missing}} \
|
/external/compiler-rt/test/tsan/ |
test.h | 39 // On FreeBSD, the %p conversion specifier works as 0x%x and thus does not match
|
/external/libxml2/result/SVG/ |
transform.xml | 17 because the CSS unit specifier has been provided. -->
|
/external/libxml2/test/SVG/ |
transform.xml | 21 because the CSS unit specifier has been provided. -->
|
/external/llvm/test/MC/AArch64/ |
dot-req-diagnostics.s | 11 // CHECK-ERROR: error: vector register without type specifier expected
|
/libcore/luni/src/main/java/java/util/ |
DuplicateFormatFlagsException.java | 21 * out in the format specifier.
|
IllegalFormatException.java | 22 * contains either an illegal syntax or format specifier is transferred as a
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xresource.h | 194 _Xconst char* /* specifier */, 208 _Xconst char* /* specifier */, 342 char *specifier; /* Resource specifier */ member in struct:__anon30007
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
Xresource.h | 192 _Xconst char* /* specifier */, 206 _Xconst char* /* specifier */, 340 char *specifier; /* Resource specifier */ member in struct:__anon31870
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/ |
xm-mingw32.h | 32 /* MSVCRT does not support the "ll" format specifier for printing
|
/external/clang/include/clang/Basic/ |
DiagnosticParseKinds.td | 54 def ext_duplicate_declspec : ExtWarn<"duplicate '%0' declaration specifier">, 56 def warn_duplicate_declspec : Warning<"duplicate '%0' declaration specifier">, 59 "plain '_Complex' requires a type specifier; assuming '_Complex double'">; 187 "'%0' qualifier may not appear after the virtual specifier '%1'">; 228 def err_expected_semi_for : Error<"expected ';' in 'for' statement specifier">; 285 "'auto' type specifier is a C++11 extension">, InGroup<CXX11>; 287 "'auto' storage class specifier is redundant and incompatible with C++11">, 290 "'auto' storage class specifier is not permitted in C++11, and will not " 293 "'decltype(auto)' type specifier is a C++14 extension">, InGroup<CXX14>; 295 "'decltype(auto)' type specifier is incompatible with C++ standards before [all...] |
/frameworks/base/core/java/android/hardware/hdmi/ |
HdmiTimerRecordSources.java | 405 * External source specifier types. 412 * [External Source Specifier] because it covers both external plug type and external specifier. 419 // External source has one byte field for [External Source Specifier]. 448 int specifier = recordSource[TimerInfo.BASIC_INFO_SIZE]; local 449 if (specifier == EXTERNAL_SOURCE_SPECIFIER_EXTERNAL_PLUG) { 450 // One byte for specifier. 452 } else if (specifier == EXTERNAL_SOURCE_SPECIFIER_EXTERNAL_PHYSICAL_ADDRESS) { 453 // One byte for specifier. 456 // Invalid specifier [all...] |