HomeSort by relevance Sort by last modified time
    Searched full:specifier (Results 1 - 25 of 808) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/class.derived/
p1.cpp 4 // : base-specifier-list
5 // base-specifier-list:
6 // base-specifier ...[opt]
7 // base-specifier-list , base-specifier ...[opt]
8 // base-specifier:
9 // attribute-specifier-seq[opt] base-type-specifier
10 // attribute-specifier-seq[opt] virtual access-specifier[opt] base-type-specifie
    [all...]
  /external/clang/test/SemaCXX/
PR9460.cpp 7 a; // expected-error {{requires a type specifier}}
13 basic_string<char> struct{ // expected-error {{cannot combine with previous 'type-name' declaration specifier}}
14 a(){ // expected-error {{requires a type specifier}}
auto-cxx0x.cpp 3 auto int a; // expected-warning {{'auto' storage class specifier is not permitted in C++11, and will not be supported in future releases}}
4 int auto b; // expected-error{{cannot combine with previous 'int' declaration specifier}}
implicit-int.cpp 3 x; // expected-error{{C++ requires a type specifier for all declarations}}
5 f(int y) { return y; } // expected-error{{C++ requires a type specifier for all declarations}}
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/clang/test/Sema/
implicit-int.c 3 foo() { // expected-warning {{type specifier missing, defaults to 'int'}}
7 y; // expected-warning {{type specifier missing, defaults to 'int'}}
10 void f((x)); // expected-warning {{type specifier missing, defaults to 'int'}}
23 ILPAD(); // expected-warning {{type specifier missing, defaults to 'int'}}
27 __extension__ __attribute__((packed)) x : 4; // expected-warning {{type specifier missing, defaults to 'int'}}
format-strings-darwin.c 25 // expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'd'?}}
26 // expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'd'?}} expected-warning@-8 {{format specifies type 'int' but the argument has type 'long'}}
27 // expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'u'?}}
28 // expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'u'?}} expected-warning@-8 {{format specifies type 'unsigned int' but the argument has type 'long'}}
29 // expected-warning@-8 {{'O' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'o'?}}
30 // expected-warning@-8 {{'O' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'o'?}} expected-warning@-8 {{format specifies type 'unsigned int' but the argument has type 'long'}}
32 // expected-warning@-15 {{invalid conversion specifier 'D'}}
33 // expected-warning@-15 {{invalid conversion specifier 'D'}}
34 // expected-warning@-15 {{invalid conversion specifier 'U'}}
35 // expected-warning@-15 {{invalid conversion specifier 'U'}
    [all...]
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'?}}
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/
p3-0x.cpp 10 operator struct S {} (); // expected-error{{'K::S' can not be defined in a type specifier}}
21 new struct T {}; // expected-error {{'T' can not be defined in a type specifier}}
22 new struct A {}; // expected-error {{'A' can not be defined in a type specifier}}
24 try {} catch (struct U {}) {} // expected-error {{'U' can not be defined in a type specifier}}
26 (void)(struct V { V(int); })0; // expected-error {{'V' can not be defined in a type specifier}}
28 (void)dynamic_cast<struct W {}*>((K*)0); // expected-error {{'W' can not be defined in a type specifier}}
29 (void)static_cast<struct X {}*>(0); // expected-error {{'X' can not be defined in a type specifier}}
30 (void)reinterpret_cast<struct Y {}*>(0); // expected-error {{'Y' can not be defined in a type specifier}}
31 (void)const_cast<struct Z {}*>((const Z*)0); // expected-error {{'Z' can not be defined in a type specifier}}
34 void g() throw (struct Ex {}) { // expected-error {{'Ex' can not be defined in a type specifier}}
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 11 // a C++ nested-name-specifier.
33 /// \brief Represents a C++ nested name specifier, such as
38 /// specifier. Nested name specifiers are made up of a sequence of
40 /// (for dependent names), decltype specifier, or the global specifier ('::').
42 /// nested-namespace-specifier.
53 /// \brief The nested name specifier that precedes this nested name
54 /// specifier.
56 /// The pointer is the nested-name-specifier that precedes this
61 /// \brief The last component in the nested name specifier, whic
    [all...]
  /external/clang/test/Parser/
opencl-storage-class.cl 5 static int a; // expected-error {{OpenCL does not support the 'static' storage class specifier}}
6 register int b; // expected-error {{OpenCL does not support the 'register' storage class specifier}}
7 extern int c; // expected-error {{OpenCL does not support the 'extern' storage class specifier}}
8 auto int d; // expected-error {{OpenCL does not support the 'auto' storage class specifier}}
check-syntax-1.m 3 int @interface bla ; // expected-error {{cannot combine with previous 'int' declaration specifier}}
14 (void) x; // expected-error {{method type specifier must start with '-' or '+'}}
15 (int)im; // expected-error {{method type specifier must start with '-' or '+'}} \
cxx-undeclared-identifier.cpp 4 static a(4); // expected-error {{requires a type specifier}}
5 b(int n); // expected-error {{requires a type specifier}}
7 itn f(char *p, *q); // expected-error {{unknown type name 'itn'}} expected-error {{requires a type specifier}}
12 S::f() {} // expected-error {{requires a type specifier}}
cxx11-type-specifier.cpp 3 // Tests for parsing of type-specifier-seq
18 (void) new struct S {}; // expected-error{{'S' can not be defined in a type specifier}}
19 (void) new enum E { e }; // expected-error{{'E' can not be defined in a type specifier}}
22 // And for trailing-type-specifier-seq
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/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/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/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_configuration.py 74 for category, specifier in test_configuration.items():
75 self.add_specifier(category, specifier)
79 def add_specifier(self, category, specifier):
80 self._specifier_to_category[specifier] = category
93 def specifier_priority(self, specifier):
94 return self.category_priority(self._specifier_to_category[specifier])
96 def category_for_specifier(self, specifier):
97 return self._specifier_to_category.get(specifier)
101 for specifier in specifiers:
102 category_slots[self.specifier_priority(specifier)].append(specifier
    [all...]
  /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/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 328 milliseconds

1 2 3 4 5 6 7 8 91011>>