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

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
pr18284-crash-on-invalid.cpp 8 A::RunTest() {} // expected-error {{C++ requires a type specifier for all declarations}}
19 A::RunTest() {} // expected-error {{C++ requires a type specifier for all declarations}}
auto-cxx0x.cpp 4 auto int a; // expected-warning {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
5 int auto b; // expected-error{{cannot combine with previous 'int' declaration specifier}}
auto-cxx98.cpp 3 auto int a; // expected-warning {{'auto' storage class specifier is redundant and incompatible with C++11}}
4 int auto b; // expected-warning {{'auto' storage class specifier is redundant and incompatible with C++11}}
PR10458.cpp 5 for (auto &i : arr) { // expected-warning {{'auto' type specifier is a C++11 extension}} expected-warning {{range-based for loop is a C++11 extension}}
PR9459.cpp 6 template<typename>struct ts{}ap() // expected-error {{expected ';' after struct}} expected-error {{requires a type specifier}}
  /external/wpa_supplicant_8/src/eap_common/
eap_gpsk_common.h 41 u8 specifier[2]; member in struct:eap_gpsk_csuite
48 int eap_gpsk_supported_ciphersuite(int vendor, int specifier);
50 int specifier,
57 int specifier,
62 size_t eap_gpsk_mic_len(int vendor, int specifier);
64 int specifier, const u8 *data, size_t len, u8 *mic);
  /external/clang/test/Sema/
declspec.c 41 const const int pr8264_1 = 0; // expected-warning {{duplicate 'const' declaration specifier}}
42 volatile volatile int pr8264_2; // expected-warning {{duplicate 'volatile' declaration specifier}}
43 char * restrict restrict pr8264_3; // expected-warning {{duplicate 'restrict' declaration specifier}}
45 extern extern int pr8264_4; // expected-warning {{duplicate 'extern' declaration specifier}}
47 register register int x; // expected-warning {{duplicate 'register' declaration specifier}}
50 inline inline void pr8264_6() {} // expected-warning {{duplicate 'inline' declaration specifier}}
51 _Noreturn _Noreturn void pr8264_7(); // expected-warning {{duplicate '_Noreturn' declaration specifier}}
format-strings-non-iso.c 17 printf("%S", L"foo"); // expected-warning{{'S' conversion specifier is not supported by ISO C}}
18 printf("%C", L'x'); // expected-warning{{'C' conversion specifier is not supported by ISO C}}
20 // Combining 'L' with an integer conversion specifier.
21 printf("%Li", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'i' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
22 printf("%Lo", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'o' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
23 printf("%Lu", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'u' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
24 printf("%Lx", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'x' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
25 printf("%LX", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'X' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
crash-invalid-builtin.c 4 __builtin_isinf(...); // expected-warning {{type specifier missing, defaults to 'int'}} expected-error {{ISO C requires a named parameter before '...'}} // expected-error {{conflicting types for '__builtin_isinf'}} // expected-note {{'__builtin_isinf' is a builtin with type 'int ()'}}
non-null-warning.c 20 int *foo1(int * _Nullable x) { // expected-warning {{nullability specifier '_Nullable' conflicts with existing specifier '_Nonnull'}}
32 int *foo3(int * _Nonnull x) { // expected-warning {{nullability specifier '_Nonnull' conflicts with existing specifier '_Nullable'}}
  /external/guava/guava/src/com/google/common/net/
HostSpecifier.java 28 * A syntactically valid host specifier, suitable for use in a URI.
38 * methods. No attempt is made to verify that a provided specifier corresponds
61 * Returns a {@code HostSpecifier} built from the provided {@code specifier},
62 * which is already known to be valid. If the {@code specifier} might be
65 * <p>The specifier must be in one of these formats:
73 * @throws IllegalArgumentException if the specifier is not valid.
75 public static HostSpecifier fromValid(String specifier) {
78 final HostAndPort parsedHost = HostAndPort.fromString(specifier);
82 // Try to interpret the specifier as an IP address. Note we build
113 * {@link #fromValid(String)} for a specifier that is not already known to b
    [all...]
  /external/clang/test/Parser/
cxx-concepts-ambig-constraint-expr.cpp 7 // type-specifier-seq in conversion-type-id
9 unsigned int foo(); // expected-error {{C++ requires a type specifier for all declarations}}
11 // type-specifier-seq in new-type-id
13 unsigned int bar(); // expected-error {{C++ requires a type specifier for all declarations}}
16 struct X { }; // expected-error {{'X' cannot be defined in a type specifier}}
access-spec-attrs.cpp 4 public __attribute__((unavailable)): // expected-error {{access specifier can only have annotation attributes}}
objc-interfaces.m 6 - (int*) foo2 __attribute__((deprecated)) : (int) x1 __attribute__((deprecated)); // expected-error {{expected ';' after method prototype}} expected-error {{method type specifier must start with '-' or '+'}}
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-8.h 10 void func3(int *); // expected-warning{{pointer is missing a nullability type specifier}}
14 void cf1(CFTypeRef * p CF_RETURNS_NOT_RETAINED); // expected-warning {{pointer is missing a nullability type specifier}}
26 void cfp1(CFTypeRefPtr p CF_RETURNS_NOT_RETAINED); // expected-warning {{pointer is missing a nullability type specifier}}
nullability-consistency-5.h 9 void shouldwarn5(int *ptr); //expected-warning{{missing a nullability type specifier}}
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
EstimationException.java 43 * @param specifier format specifier (to be translated)
46 public EstimationException(String specifier, Object ... parts) {
47 this(new DummyLocalizable(specifier), parts);
53 * @param specifier format specifier (to be translated)
57 public EstimationException(Localizable specifier, Object ... parts) {
58 super(specifier, parts);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DerivativeException.java 38 * @param specifier format specifier (to be translated)
41 public DerivativeException(final String specifier, final Object ... parts) {
42 this(new DummyLocalizable(specifier), parts);
47 * @param specifier format specifier (to be translated)
51 public DerivativeException(final Localizable specifier, final Object ... parts) {
52 super(specifier, parts);
IntegratorException.java 37 * @param specifier format specifier (to be translated)
42 public IntegratorException(final String specifier, final Object ... parts) {
43 super(specifier, parts);
48 * @param specifier format specifier (to be translated)
52 public IntegratorException(final Localizable specifier, final Object ... parts) {
53 super(specifier, parts);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
EventException.java 36 * @param specifier format specifier (to be translated)
41 public EventException(final String specifier, final Object ... parts) {
42 super(specifier, parts);
47 * @param specifier format specifier (to be translated)
51 public EventException(final Localizable specifier, final Object ... parts) {
52 super(specifier, parts);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
OptimizationException.java 40 * @param specifier format specifier (to be translated)
45 public OptimizationException(String specifier, Object ... parts) {
46 this(new DummyLocalizable(specifier), parts);
52 * @param specifier format specifier (to be translated)
56 public OptimizationException(Localizable specifier, Object ... parts) {
57 super(specifier, parts);
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
templateid.cpp 3 // elaborated-type-specifier:
4 // class-key '::'? nested-name-specifier? 'template'? simple-template-id
  /external/clang/test/OpenMP/
openmp_check.cpp 6 auto F = [&]() { // expected-error {{expected expression}} expected-error {{expected ';' at end of declaration}} expected-warning {{'auto' type specifier is a C++11 extension}}
13 F(); // expected-error {{C++ requires a type specifier for all declarations}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p3.cpp 11 // FIXME: Add test for "If the inline specifier is used in a friend declaration,
  /external/clang/test/Lexer/
unicode-strings.c 10 // expected-warning@17 {{'char16_t' type specifier is incompatible with C++98}}
11 // expected-warning@18 {{'char32_t' type specifier is incompatible with C++98}}
12 // expected-warning@20 {{'char16_t' type specifier is incompatible with C++98}}
13 // expected-warning@21 {{'char32_t' type specifier is incompatible with C++98}}

Completed in 426 milliseconds

12 3 4 5 6 7 8 91011>>