OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:intptrptr
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/Sema/
warn-cast-qual.c
20
int **
intptrptr
;
local
21
const int **intptrptrc = (const int **)
intptrptr
; // expected-warning {{cast from 'int **' to 'const int **' must have all intermediate pointers const qualified}}
22
volatile int **intptrptrv = (volatile int **)
intptrptr
; // expected-warning {{cast from 'int **' to 'volatile int **' must have all intermediate pointers const qualified}}
/external/clang/test/SemaCXX/
composite-pointer-type.cpp
40
typedef IntPtr *
IntPtrPtr
;
43
IntPtrPtr
j = 0;
Completed in 183 milliseconds