OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:int_ptr_2
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/SemaObjCXX/Inputs/
nullability-pragmas-1.h
68
typedef int *
int_ptr_2
;
typedef
76
int_ptr_2
ip2;
77
float *fp2 = ip2; // expected-error{{cannot initialize a variable of type 'float *' with an lvalue of type '
int_ptr_2
' (aka 'int *')}}
97
void f25(
int_ptr_2
x); // expected-warning{{pointer is missing a nullability type specifier}}
/external/clang/test/SemaCXX/
address-space-conversion.cpp
15
typedef int __attribute__((address_space(2))) *
int_ptr_2
;
typedef
25
void test_const_cast(int_ptr ip, int_ptr_1 ip1,
int_ptr_2
ip2,
35
(void)const_cast<
int_ptr_2
>(ip); // expected-error{{is not allowed}}
36
(void)const_cast<
int_ptr_2
>(ip1); // expected-error{{is not allowed}}
Completed in 40 milliseconds