OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:specifier
(Results
1 - 25
of
1138
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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
}}
nullability-pragmas-1.h
11
void f1(int *x); // expected-warning{{pointer is missing a nullability type
specifier
}}
41
void f18(A **); // expected-warning 2{{pointer is missing a nullability type
specifier
}}
42
void f19(CFErrorRefPtr error); // expected-warning{{pointer is missing a nullability type
specifier
}}
45
void g2(int (^ *bp)(int, int)); // expected-warning{{block pointer is missing a nullability type
specifier
}}
46
// expected-warning@-1{{pointer is missing a nullability type
specifier
}}
47
void g3(block_ptr *bp); // expected-warning{{block pointer is missing a nullability type
specifier
}}
48
// expected-warning@-1{{pointer is missing a nullability type
specifier
}}
50
void g5(int (**fp)(int, int)); // expected-warning 2{{pointer is missing a nullability type
specifier
}}
59
// expected-warning@-1{{pointer is missing a nullability type
specifier
}}
62
@property NSError **anError; // expected-warning 2{{pointer is missing a nullability type
specifier
}}
[
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
}}
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/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
}}
21
new struct T {}; // expected-error {{'T' cannot be defined in a type
specifier
}}
22
new struct A {}; // expected-error {{'A' cannot be defined in a type
specifier
}}
24
try {} catch (struct U {}) {} // expected-error {{'U' cannot be defined in a type
specifier
}}
26
(void)(struct V { V(int); })0; // expected-error {{'V' cannot be defined in a type
specifier
}}
28
(void)dynamic_cast<struct W {}*>((K*)0); // expected-error {{'W' cannot be defined in a type
specifier
}}
29
(void)static_cast<struct X {}*>(0); // expected-error {{'X' cannot be defined in a type
specifier
}}
30
(void)reinterpret_cast<struct Y {}*>(0); // expected-error {{'Y' cannot be defined in a type
specifier
}}
31
(void)const_cast<struct Z {}*>((const Z*)0); // expected-error {{'Z' cannot be defined in a type
specifier
}}
34
void g() throw (struct Ex {}) { // expected-error {{'Ex' cannot be defined in a type
specifier
}}
[
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/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' cannot be defined in a type
specifier
}}
19
(void) new enum E { e }; // expected-error{{'E' cannot be defined in a type
specifier
}}
22
// And for trailing-type-
specifier
-seq
/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
invalid-datalayout11.ll
3
; CHECK: Unexpected trailing characters after mangling
specifier
in datalayout string
/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
...]
/external/clang/test/SemaObjC/
override-nullability.m
12
- (nullable id)bad:(nonnull id)obj; // expected-warning {{conflicting nullability
specifier
on return types, 'nullable' conflicts with existing
specifier
'nonnull'}} \
13
// expected-warning {{conflicting nullability
specifier
on parameter types, 'nonnull' conflicts with existing
specifier
'nullable'}}
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
NotARotationMatrixException.java
40
* @param
specifier
format
specifier
(to be translated)
45
public NotARotationMatrixException(String
specifier
, Object ... parts) {
46
super(
specifier
, parts);
52
* @param
specifier
format
specifier
(to be translated)
56
public NotARotationMatrixException(Localizable
specifier
, Object ... parts) {
57
super(
specifier
, parts);
Completed in 1013 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>