HomeSort by relevance Sort by last modified time
    Searched full:specifier (Results 1 - 25 of 2789) 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/SemaObjCXX/Inputs/
nullability-consistency-1.h 1 void f1(int *ptr); // expected-warning{{pointer is missing a nullability type specifier}}
7 void f3(int *ptr) { // expected-warning{{pointer is missing a nullability type specifier}}
12 void mf(int *ptr); // expected-warning{{pointer is missing a nullability type specifier}}
13 int X:: *memptr; // expected-warning{{member pointer is missing a nullability type specifier}}
nullability-consistency-3.h 1 void double_declarator1(int *_Nonnull *); // expected-warning{{pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)}}
nullability-consistency-4.h 1 void double_declarator1(int * * _Nonnull); // expected-warning{{pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)}}
nullability-consistency-2.h 3 void g2(int (^block)(int, int)); // expected-warning{{block pointer is missing a nullability type specifier}}
6 id // expected-warning{{missing a nullability type specifier}}
8 * // expected-warning{{missing a nullability type specifier}}
16 @property (readonly, weak) SomeClass *property3; // expected-warning{{missing a nullability type specifier}}
20 @property (readonly, weak) SomeClass *property4; // expected-warning{{missing a nullability type specifier}}
nullability-consistency-6.h 1 int *ptr; // expected-warning {{missing a nullability type specifier}}
5 extern void **blah; // expected-warning 2{{missing a nullability type specifier}}
  /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}}
nullability-declspec.cpp 5 _Nullable int *ip1; // expected-error{{nullability specifier '_Nullable' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the pointer?}}
6 _Nullable int (*fp1)(int); // expected-error{{nullability specifier '_Nullable' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the function pointer?}}
7 _Nonnull int (^bp1)(int); // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the block pointer?}}
8 _Nonnull int X::*pmd1; // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the member pointer?}}
9 _Nonnull int (X::*pmf1)(int); // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the member function pointer?}
    [all...]
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}}
  /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...]
  /external/clang/test/FixIt/
fixit-nullability-declspec.cpp 7 _Nullable int *ip1; // expected-error{{nullability specifier '_Nullable' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the pointer?}}
8 _Nullable int (*fp1)(int); // expected-error{{nullability specifier '_Nullable' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the function pointer?}}
9 _Nonnull int (^bp1)(int); // expected-error{{nullability specifier '_Nonnull' cannot be applied to non-pointer type 'int'; did you mean to apply the specifier to the block pointer?}}
  /external/clang/test/CXX/dcl.dcl/dcl.link/
p2.cpp 11 extern u8"C" {} // expected-error {{string literal in language linkage specifier cannot have an encoding-prefix}}
12 extern L"C" {} // expected-error {{string literal in language linkage specifier cannot have an encoding-prefix}}
13 extern u"C++" {} // expected-error {{string literal in language linkage specifier cannot have an encoding-prefix}}
14 extern U"C" {} // expected-error {{string literal in language linkage specifier cannot have an encoding-prefix}}
  /external/llvm/test/Assembler/
invalid-datalayout1.ll 3 ; CHECK: Unknown specifier in datalayout string
invalid-datalayout10.ll 3 ; CHECK: Expected mangling specifier in datalayout string
  /external/clang/test/SemaObjC/
format-strings-utf8.m 15 // CHECK: <string>invalid conversion specifier &apos;\u25b9&apos;</string>
16 // CHECK: <string>invalid conversion specifier &apos;\u25b9&apos;</string>
17 // CHECK: <string>invalid conversion specifier &apos;\U00010348&apos;</string>
18 // CHECK: <string>invalid conversion specifier &apos;\U00010348&apos;</string>
19 // CHECK: <string>invalid conversion specifier &apos;\xe2&apos;</string>
20 // CHECK: <string>invalid conversion specifier &apos;\u25b9&apos;</string>
21 // CHECK: <string>invalid conversion specifier &apos;\u25b9&apos;</string>
22 // CHECK: <string>invalid conversion specifier &apos;\U00010348&apos;</string>
23 // CHECK: <string>invalid conversion specifier &apos;\U00010348&apos;</string>
24 // CHECK: <string>invalid conversion specifier &apos;\xe2&apos;</string
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/
p3-0x.cpp 10 operator struct S {} (); // expected-error{{'K::S' cannot be defined in a type specifier}}
24 new struct T {}; // expected-error {{'T' cannot be defined in a type specifier}}
25 new struct A {}; // expected-error {{'A' cannot be defined in a type specifier}}
27 try {} catch (struct U {}) {} // expected-error {{'U' cannot be defined in a type specifier}}
29 (void)(struct V { V(int); })0; // expected-error {{'V' cannot be defined in a type specifier}}
31 (void)dynamic_cast<struct W {}*>((K*)0); // expected-error {{'W' cannot be defined in a type specifier}}
32 (void)static_cast<struct X {}*>(0); // expected-error {{'X' cannot be defined in a type specifier}}
33 (void)reinterpret_cast<struct Y {}*>(0); // expected-error {{'Y' cannot be defined in a type specifier}}
34 (void)const_cast<struct Z {}*>((const Z*)0); // expected-error {{'Z' cannot be defined in a type specifier}}
37 void g() throw (struct Ex {}) { // expected-error {{'Ex' cannot be defined in a type specifier}}
    [all...]
  /frameworks/base/core/java/android/net/
StringNetworkSpecifier.java 32 public final String specifier; field in class:StringNetworkSpecifier
34 public StringNetworkSpecifier(String specifier) {
35 Preconditions.checkStringNotEmpty(specifier);
36 this.specifier = specifier;
47 return TextUtils.equals(specifier, ((StringNetworkSpecifier) o).specifier);
52 return Objects.hashCode(specifier);
57 return specifier;
67 dest.writeString(specifier);
    [all...]
  /external/clang/test/Parser/
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 '+'}} \
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 11 // a C++ nested-name-specifier.
34 /// \brief Represents a C++ nested name specifier, such as
39 /// specifier. Nested name specifiers are made up of a sequence of
41 /// (for dependent names), decltype specifier, or the global specifier ('::').
43 /// nested-namespace-specifier.
54 /// \brief The nested name specifier that precedes this nested name
55 /// specifier.
57 /// The pointer is the nested-name-specifier that precedes this
62 /// \brief The last component in the nested name specifier, whic
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 11 // a C++ nested-name-specifier.
34 /// \brief Represents a C++ nested name specifier, such as
39 /// specifier. Nested name specifiers are made up of a sequence of
41 /// (for dependent names), decltype specifier, or the global specifier ('::').
43 /// nested-namespace-specifier.
54 /// \brief The nested name specifier that precedes this nested name
55 /// specifier.
57 /// The pointer is the nested-name-specifier that precedes this
62 /// \brief The last component in the nested name specifier, whic
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
NestedNameSpecifier.h 11 // a C++ nested-name-specifier.
34 /// \brief Represents a C++ nested name specifier, such as
39 /// specifier. Nested name specifiers are made up of a sequence of
41 /// (for dependent names), decltype specifier, or the global specifier ('::').
43 /// nested-namespace-specifier.
54 /// \brief The nested name specifier that precedes this nested name
55 /// specifier.
57 /// The pointer is the nested-name-specifier that precedes this
62 /// \brief The last component in the nested name specifier, whic
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
NestedNameSpecifier.h 11 // a C++ nested-name-specifier.
34 /// \brief Represents a C++ nested name specifier, such as
39 /// specifier. Nested name specifiers are made up of a sequence of
41 /// (for dependent names), decltype specifier, or the global specifier ('::').
43 /// nested-namespace-specifier.
54 /// \brief The nested name specifier that precedes this nested name
55 /// specifier.
57 /// The pointer is the nested-name-specifier that precedes this
62 /// \brief The last component in the nested name specifier, whic
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
NestedNameSpecifier.h 11 // a C++ nested-name-specifier.
34 /// \brief Represents a C++ nested name specifier, such as
39 /// specifier. Nested name specifiers are made up of a sequence of
41 /// (for dependent names), decltype specifier, or the global specifier ('::').
43 /// nested-namespace-specifier.
54 /// \brief The nested name specifier that precedes this nested name
55 /// specifier.
57 /// The pointer is the nested-name-specifier that precedes this
62 /// \brief The last component in the nested name specifier, whic
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
NestedNameSpecifier.h 11 // a C++ nested-name-specifier.
34 /// \brief Represents a C++ nested name specifier, such as
39 /// specifier. Nested name specifiers are made up of a sequence of
41 /// (for dependent names), decltype specifier, or the global specifier ('::').
43 /// nested-namespace-specifier.
54 /// \brief The nested name specifier that precedes this nested name
55 /// specifier.
57 /// The pointer is the nested-name-specifier that precedes this
62 /// \brief The last component in the nested name specifier, whic
    [all...]

Completed in 2322 milliseconds

1 2 3 4 5 6 7 8 91011>>