HomeSort by relevance Sort by last modified time
    Searched full:specifier (Results 51 - 75 of 1138) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjCXX/Inputs/nullability-consistency-system/
nullability-consistency-system.h 5 // expected-warning@-2{{pointer is missing a nullability type specifier}}
  /external/clang/test/SemaTemplate/
elaborated-type-specifier.cpp 25 enum T::foo; // expected-error{{nested name specifier for a declaration cannot depend on a template parameter}}
26 enum T::bar { // expected-error{{nested name specifier for a declaration cannot depend on a template parameter}}
33 class T::bar; // expected-error{{nested name specifier for a declaration cannot depend on a template parameter}}
34 class T::bar { int x; }; // expected-error{{nested name specifier for a declaration cannot depend on a template parameter}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p2.cpp 10 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
15 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
20 // expected-warning@-2 {{'register' storage class specifier is deprecated}}
28 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
32 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
41 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
45 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
49 // expected-warning@-2 {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
54 // expected-warning@-2 {{'register' storage class specifier is deprecated}}
  /external/clang/test/SemaCXX/
virtuals.cpp 8 void i() = 1; // expected-error {{initializer on function does not look like a pure-specifier}}
9 void j() = 0u; // expected-error {{initializer on function does not look like a pure-specifier}}
51 virtual virtual void func(); // expected-warning {{duplicate 'virtual' declaration specifier}}
56 // DR (filed but no number yet): reject meaningless pure-specifier on a friend declaration.
58 struct B { friend int A::f() = 0; }; // expected-error {{friend declaration cannot have a pure-specifier}}
61 friend int C::f() = 0; // expected-error {{friend declaration cannot have a pure-specifier}}
  /libcore/ojluni/src/main/java/java/util/
MissingFormatArgumentException.java 29 * Unchecked exception thrown when there is a format specifier which does not
47 * specifier.
50 * Format specifier which does not have a corresponding argument
59 * Returns the unmatched format specifier.
61 * @return The unmatched format specifier
68 return "Format specifier '" + s + "'";
  /external/clang/test/Sema/
nullability.c 16 typedef int * _Nonnull _Nonnull redundant_1; // expected-warning{{duplicate nullability specifier '_Nonnull'}}
19 typedef int * _Nonnull _Nullable conflicting_1; // expected-error{{nullability specifier '_Nonnull' conflicts with existing specifier '_Nullable'}}
20 typedef int * _Null_unspecified _Nonnull conflicting_2; // expected-error{{nullability specifier '_Null_unspecified' conflicts with existing specifier '_Nonnull'}}
26 typedef nonnull_int_ptr _Nullable conflicting_2; // expected-error{{nullability specifier '_Nullable' conflicts with existing specifier '_Nonnull'}}
28 typedef nonnull_int_ptr_typedef _Nullable conflicting_2; // expected-error{{nullability specifier '_Nullable' conflicts with existing specifier '_Nonnull'}}
30 typedef nonnull_int_ptr_typedef_typedef _Null_unspecified conflicting_3; // expected-error{{nullability specifier '_Null_unspecified' conflicts with existing specifier '_Nonnull'}
    [all...]
c89.c 42 test7; /* expected-warning {{declaration specifier missing, defaulting to 'int'}} */
44 void test8(int, x); /* expected-warning {{declaration specifier missing, defaulting to 'int'}} */
47 int a(sometype, y) {return 0;} /* expected-warning {{declaration specifier missing, defaulting to 'int'}} \
96 const const int c_i; /* expected-warning {{duplicate 'const' declaration specifier}} */
98 volatile vol_int volvol_i; /* expected-warning {{duplicate 'volatile' declaration specifier}} */
99 typedef volatile vol_int volvol_int; /* expected-warning {{duplicate 'volatile' declaration specifier}} */
104 const CI mine1[5][5]; /* expected-warning {{duplicate 'const' declaration specifier}} */
107 const array_of_CI mine2; /* expected-warning {{duplicate 'const' declaration specifier}} */
invalid-struct-init.c 5 _efree((p)); // expected-error{{type name requires a specifier or qualifier}} \
6 expected-warning {{type specifier missing, defaults to 'int'}}
pragma-section-invalid.c 3 // expected-error@+1 {{argument to 'section' attribute is not valid for this target: mach-o section specifier requires a segment and section separated by a comma}}
format-strings-gnu.c 20 // expected-warning@-4 {{length modifier 'L' results in undefined behavior or no effect with 'd' conversion specifier}}
23 // expected-warning@-6 {{length modifier 'L' results in undefined behavior or no effect with 'd' conversion specifier}}
28 printf("%Z\n", quiteLong); // expected-warning{{invalid conversion specifier 'Z'}}
34 printf("%Lc", 'a'); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 'c' conversion specifier}}
35 printf("%Ls", "a"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}}
47 printf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}}
57 scanf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}}
  /external/clang/test/Parser/
cxx-concept-declaration.cpp 24 template<typename T> concept concept bool C6 = true; // expected-warning {{duplicate 'concept' declaration specifier}}
26 template<typename T> concept concept bool C7() { return true; } // expected-warning {{duplicate 'concept' declaration specifier}}
typeof.c 8 int typeof (int) aIntInt; // expected-error{{cannot combine with previous 'int' declaration specifier}}
10 int int ttt; // expected-error{{cannot combine with previous 'int' declaration specifier}}
cxx-class.cpp 28 virtual int vf0() = 0l; // expected-error {{does not look like a pure-specifier}}
29 virtual int vf1() = 1; // expected-error {{does not look like a pure-specifier}}
30 virtual int vf2() = 00; // expected-error {{does not look like a pure-specifier}}
31 virtual int vf3() = 0x0; // expected-error {{does not look like a pure-specifier}}
32 virtual int vf4() = 0.0; // expected-error {{does not look like a pure-specifier}}
36 virtual int vf7() = { 0 }; // expected-error {{does not look like a pure-specifier}}
57 // check that we don't consume the token after the access specifier
64 // consume the token after the access specifier if it's a semicolon
108 struct A::B; // expected-error {{forward declaration of struct cannot have a nested name specifier}}
109 union N::C; // expected-error {{forward declaration of union cannot have a nested name specifier}}
    [all...]
nullability.c 3 _Nonnull int *ptr; // expected-warning{{type nullability specifier '_Nonnull' is a Clang extension}}
cxx0x-decl.cpp 29 int *const const p = 0; // expected-error {{duplicate 'const' declaration specifier}}
30 const const int *q = 0; // expected-error {{duplicate 'const' declaration specifier}}
33 void f() const const; // expected-error {{duplicate 'const' declaration specifier}}
109 constexpr constexpr int f(); // expected-warning {{duplicate 'constexpr' declaration specifier}}
110 constexpr int constexpr a = 0; // expected-warning {{duplicate 'constexpr' declaration specifier}}
113 friend constexpr int constexpr friend f(); // expected-warning {{duplicate 'friend' declaration specifier}} \
114 // expected-warning {{duplicate 'constexpr' declaration specifier}}
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-7.h 35 - (instancetype)init; // expected-warning{{pointer is missing a nullability type specifier}}
36 - (instancetype)initWithA:( A*)a __attribute__((objc_designated_initializer)); // expected-warning 2{{pointer is missing a nullability type specifier}}
  /ndk/tests/device/test-stlport_shared-exception/jni/
template1.cpp 1 // Test whether exception specifier dependent on template parameter
  /ndk/tests/device/test-stlport_static-exception/jni/
template1.cpp 1 // Test whether exception specifier dependent on template parameter
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
p1.cpp 11 struct N::A; // expected-error {{cannot have a nested name specifier}}
13 template<typename T> struct N::B; // expected-error {{cannot have a nested name specifier}}
23 template<typename T> struct D::A; // expected-error {{cannot have a nested name specifier}}
  /external/clang/test/SemaObjC/
nullability.m 38 // expected-note@-1{{use nullability type specifier '_Nonnull' to affect the innermost pointer type of 'NSFoo **'}}
39 - (nonnull NSFoo * _Nullable)conflictingMethod1; // expected-error{{nullability specifier '_Nullable' conflicts with existing specifier '_Nonnull'}}
40 - (nonnull NSFoo * _Nonnull)redundantMethod1; // expected-warning{{duplicate nullability specifier '_Nonnull'}}
44 // expected-note@-1{{use nullability type specifier '_Nullable' to affect the innermost pointer type of 'NSFoo **'}}
45 @property(null_unspecified,retain) NSFoo * _Nullable conflictingProperty1; // expected-error{{nullability specifier '_Nullable' conflicts with existing specifier '_Null_unspecified'}}
46 @property(retain,nonnull) NSFoo * _Nonnull redundantProperty1; // expected-warning{{duplicate nullability specifier '_Nonnull'}}
48 @property(null_unspecified,retain,nullable) NSFoo *conflictingProperty3; // expected-error{{nullability specifier 'nullable' conflicts with existing specifier 'null_unspecified'}
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_gpsk_common.c 21 * @specifier: CSuite/Specifier
24 int eap_gpsk_supported_ciphersuite(int vendor, int specifier)
27 specifier == EAP_GPSK_CIPHER_AES)
31 specifier == EAP_GPSK_CIPHER_SHA256)
151 WPA_PUT_BE16(pos, csuite_specifier); /* CSuite/Specifier */
264 * @specifier: CSuite/Specifier
280 int specifier,
291 vendor, specifier);
    [all...]
  /external/clang/lib/Parse/
ParseTentative.cpp 39 /// 'namespace' identifier = qualified-namespace-specifier ';'
42 /// 'using' typename[opt] '::'[opt] nested-name-specifier
47 /// 'using' 'namespace' '::'[opt] nested-name-specifier[opt]
76 /// decl-specifier-seq init-declarator-list[opt] ';'
81 /// attribute-specifier-seqopt type-specifier-seq declarator
100 // We don't have to parse all of the decl-specifier-seq part. There's only
101 // an ambiguity if the first decl-specifier is
102 // simple-type-specifier/typename-specifier followed by a '(', which ma
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/
p1.cpp 34 // with a nested-name-specifier.
37 struct NS::X; // expected-error {{forward declaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}}
38 template<typename T> struct NS::Y; // expected-error {{forward declaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}}
  /external/clang/test/CXX/except/except.spec/
p1.cpp 58 void g2(bool b) noexcept(b); // expected-error {{argument to noexcept specifier must be a constant expression}} expected-note {{read of non-const variable 'b'}} expected-note {{here}}
77 static int f() noexcept(1/X) { return 10; } // expected-error{{argument to noexcept specifier must be a constant expression}} expected-note{{division by zero}}
81 int (*p)() noexcept(1/X); // expected-error{{argument to noexcept specifier must be a constant expression}} expected-note{{division by zero}}
  /external/clang/lib/Basic/
Warnings.cpp 133 // table. It also has the "specifier" form of -Werror=foo and -Werror-foo.
135 StringRef Specifier;
136 if (Opt.size() > 5) { // Specifier must be present.
143 Specifier = Opt.substr(6);
146 if (Specifier.empty()) {
153 // Set the warning as error flag for this specifier.
154 Diags.setDiagnosticGroupWarningAsError(Specifier, isPositive);
155 } else if (DiagIDs->getDiagnosticsInGroup(Flavor, Specifier, _Diags)) {
156 EmitUnknownDiagWarning(Diags, Flavor, "-Werror=", Specifier);
163 StringRef Specifier;
    [all...]

Completed in 3616 milliseconds

1 23 4 5 6 7 8 91011>>