/external/clang/test/CXX/temp/ |
p3.cpp | 15 expected-error {{requires a type specifier}}
|
/external/clang/test/FixIt/ |
fixit-eof-space.c | 7 // CHECK: :9:8: warning: duplicate 'extern' declaration specifier
|
/external/clang/test/PCH/ |
cxx-friends.h | 13 // We used to inject this into future_base with no access specifier,
|
/external/clang/test/Parser/ |
cxx11-base-spec-attributes.cpp | 9 struct G : [[noreturn]] A {}; // expected-error {{'noreturn' attribute cannot be applied to a base specifier}}
|
cxx-decl.cpp | 3 const char const *x10; // expected-error {{duplicate 'const' declaration specifier}} 22 y:a a2; // expected-error {{unexpected ':' in nested name specifier}} 59 Type = (y:b) 4; // expected-error {{unexpected ':' in nested name specifier}} 61 (y:b) // expected-error {{unexpected ':' in nested name specifier}} 184 template<typename T = struct X { int i; }> struct S {}; // expected-error {{'PR15017::X' cannot be defined in a type specifier}} 237 friend void friend f(); // expected-warning {{duplicate 'friend' declaration specifier}} 238 friend struct B friend; // expected-warning {{duplicate 'friend' declaration specifier}} 244 test6a { ;// expected-error {{C++ requires a type specifier for all declarations}} \
|
cxx0x-in-cxx98.cpp | 28 auto Auto::n = 0; // expected-warning {{'auto' type specifier is a C++11 extension}} 30 // expected-warning@-1 {{'auto' type specifier is a C++11 extension}}
|
/external/clang/test/SemaObjC/ |
stmts.m | 14 } @catch (static NSObject *y) { // expected-error {{@catch parameter cannot have storage specifier 'static'}}
|
/external/llvm/lib/MC/ |
MCSectionMachO.cpp | 121 // the attribute specifier. 166 /// ParseSectionSpecifier - Parse the section specifier indicated by "Spec". 170 /// specifier is present, this returns a string indicating the problem. 193 return "mach-o section specifier requires a segment whose length is " 198 return "mach-o section specifier requires a segment and section " 202 return "mach-o section specifier requires a section whose length is " 221 return "mach-o section specifier uses an unknown section type"; 229 // S_SYMBOL_STUBS always require a symbol stub size specifier. 231 return "mach-o section specifier of type 'symbol_stubs' requires a size " 232 "specifier"; [all...] |
/libcore/ojluni/src/main/java/java/util/ |
MissingFormatWidthException.java | 45 * specifier. 48 * The format specifier which does not have a width 57 * Returns the format specifier which does not have a width. 59 * @return The format specifier which does not have a width
|
/external/clang/test/SemaCXX/ |
nested-name-spec.cpp | 119 return E::X; // expected-warning{{use of enumeration in a nested name specifier is a C++11 extension}} 170 Y::foo y; // expected-error{{incomplete type 'Y' named in nested name specifier}} 190 foo<somens:a> a2; // expected-error {{unexpected ':' in nested name specifier}} 228 A::execute(path); // expected-error {{incomplete type 'test3::A' named in nested name specifier}} 335 struct S1b { int f(C1:C2); }; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 341 C1::C2 f(C1:C2); // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 349 int g : B1:B2; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 357 int f[C2:N1]; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 364 int f(int xx[B1::B3 ? C2::N1 : B1:B2]); // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 367 int f(int xx[B1:B3 ? C2::N1 : B1::B2]); // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?} [all...] |
inherit.cpp | 8 class B3 : virtual virtual A { }; // expected-error{{duplicate 'virtual' in base specifier}} 19 class F : public I { }; // expected-error{{base specifier must name a class}}
|
nullability.cpp | 16 typedef nullptr_t _Nonnull nonnull_nullptr_t; // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'nullptr_t'}} 26 typedef _Nonnull T type; // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'int'}} 27 // expected-error@-1{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'nullptr_t'}} 39 typedef _Nonnull AddNonNull<T> invalid1; // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'AddNonNull<T>'}} 40 typedef _Nonnull AddNonNull2 invalid2; // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'AddNonNull2<T>'}} 41 typedef _Nonnull AddNonNull2<T> invalid3; // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'AddNonNull2<T>'}} 46 typedef _Nonnull AddNonNull<T> (*invalid4); // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'AddNonNull<T>'}}
|
/external/clang/test/Sema/ |
format-strings.c | 123 printf("%Ln", 0); // expected-warning{{length modifier 'L' results in undefined behavior or no effect with 'n' conversion specifier}} 129 printf("%s%lb%d","unix",10,20); // expected-warning {{invalid conversion specifier 'b'}} 130 fprintf(fp,"%%%l"); // expected-warning {{incomplete format specifier}} 132 snprintf(buf, 2, "%%%%%ld%;%d", 1, 2, 3); // expected-warning{{format specifies type 'long' but the argument has type 'int'}} expected-warning {{invalid conversion specifier ';'}} 210 printf("%@", 12); // expected-warning{{invalid conversion specifier '@'}} 217 printf("%**\n"); // expected-warning{{invalid conversion specifier '*'}} 220 printf("%W%d\n", x, x); // expected-warning{{invalid conversion specifier 'W'}} 221 printf("%"); // expected-warning{{incomplete format specifier}} 223 printf("%.", x); // expected-warning{{incomplete format specifier}} 227 printf("%qp", (void *)0); // expected-warning{{length modifier 'q' results in undefined behavior or no effect with 'p' conversion specifier}} [all...] |
format-strings-c90.c | 11 /* TODO: Warn that the 'a' conversion specifier is a C99 feature. */ 27 expected-warning{{'S' conversion specifier is not supported by ISO C}} */
|
invalid-decl.c | 9 typedef xtype (*x)(void* handle); // expected-error {{function cannot return function type}} expected-warning {{type specifier missing, defaults to 'int'}} expected-warning {{type specifier missing, defaults to 'int'}}
|
/external/android-clat/ |
logging.c | 28 * fmt - printf format specifier 42 * fmt - printf format specifier
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap_gpsk.c | 32 int vendor; /* CSuite/Specifier */ 33 int specifier; /* CSuite/Specifier */ member in struct:eap_gpsk_data 205 data->specifier = EAP_GPSK_CIPHER_RESERVED; 208 int vendor, specifier; local 210 specifier = WPA_GET_BE16(csuite->specifier); 212 i, vendor, specifier); 214 data->specifier == EAP_GPSK_CIPHER_RESERVED && 215 eap_gpsk_supported_ciphersuite(vendor, specifier) & 494 int vendor, specifier; local [all...] |
/external/clang/lib/Sema/ |
SemaCXXScopeSpec.cpp | 64 /// scope specifier. 66 /// \param SS the C++ scope specifier as it appears in the source 69 /// this scope specifier, so we can retrieve the declaration context of a 73 /// \returns the declaration context represented by the scope specifier @p SS, 83 // If this nested-name-specifier refers to the current 98 // We are entering the context of the nested name specifier, so try to 99 // match the nested name specifier to either a primary class template 107 // If the type of the nested name specifier is the same as the 115 // If the type of the nested name specifier is the same as the 124 // The nested name specifier refers to a member of a class template [all...] |
/external/clang/test/Index/ |
complete-constructor-params.cpp | 31 // CHECK-CC1-NEXT: Nested name specifier 44 // CHECK-CC2-NEXT: Nested name specifier 56 // CHECK-CC3-NEXT: Nested name specifier 68 // CHECK-CC4-NEXT: Nested name specifier 81 // CHECK-CC5-NEXT: Nested name specifier 93 // CHECK-CC6-NEXT: Nested name specifier 105 // CHECK-CC7-NEXT: Nested name specifier 116 // CHECK-CC8-NEXT: Nested name specifier 127 // CHECK-CC9-NEXT: Nested name specifier 139 // CHECK-CC10-NEXT: Nested name specifier [all...] |
/external/clang/lib/AST/ |
NestedNameSpecifier.cpp | 11 // a C++ nested-name-specifier. 54 Mockup.Specifier = II; 66 "Broken nested name specifier"); 70 Mockup.Specifier = const_cast<NamespaceDecl *>(NS); 82 "Broken nested name specifier"); 86 Mockup.Specifier = Alias; 98 Mockup.Specifier = const_cast<Type*>(T); 108 Mockup.Specifier = II; 127 Mockup.Specifier = RD; 132 if (!Specifier) [all...] |
/external/clang/lib/Parse/ |
ParseDeclCXX.cpp | 56 /// 'namespace' identifier '=' qualified-namespace-specifier ';' 269 // Parse (optional) nested-name-specifier. 422 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt] 425 /// 'using' 'namespace' ::[opt] nested-name-specifier[opt] 444 // Parse (optional) nested-name-specifier. 485 /// 'using' 'typename'[opt] ::[opt] nested-name-specifier 490 /// 'using' identifier attribute-specifier-seq[opt] = type-id ; 508 // FIXME: This is wrong; we should parse this as a typename-specifier. 518 // Parse nested-name-specifier. 525 // Check nested-name specifier [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_gpsk.c | 35 int specifier; /* CSuite/Specifier */ member in struct:eap_gpsk_data 79 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, 87 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, 154 miclen = eap_gpsk_mic_len(data->vendor, data->specifier); 175 WPA_PUT_BE16(csuite->specifier, data->specifier); 182 data->specifier, start, pos - start, pos) < 0) 375 WPA_GET_BE16(csuite->specifier)); 380 data->specifier = WPA_GET_BE16(csuite->specifier) [all...] |
/external/llvm/lib/DebugInfo/PDB/ |
PDBContext.cpp | 34 DILineInfoSpecifier Specifier) { 36 Result.FunctionName = getFunctionName(Address, Specifier.FNKind); 58 Specifier.FLIKind != DILineInfoSpecifier::FileLineInfoKind::None) 67 DILineInfoSpecifier Specifier) { 78 getLineInfoForAddress(LineInfo->getVirtualAddress(), Specifier); 86 DILineInfoSpecifier Specifier) { 88 DILineInfo Frame = getLineInfoForAddress(Address, Specifier);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/ |
MessageFactory.java | 38 * @param pattern Format specifier. 53 * @param specific Format specifier (may be null). 54 * @param general Format specifier (may be null).
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
PDBContext.h | 45 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override; 48 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override; 51 DILineInfoSpecifier Specifier = DILineInfoSpecifier()) override;
|