OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cint
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/SemaCXX/
cv-unqual-rvalues.cpp
18
typedef const int
cint
;
typedef
19
g(
cint
(0)); // expected-error{{no matching function for call to 'g'}}
default-assignment-operator.cpp
9
class X : Base { // // expected-error {{cannot define the implicit copy assignment operator for 'X', because non-static const member '
cint
' can't use copy assignment operator}} \
13
const int
cint
; // expected-note {{declared here}}
member in class:X
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p1.cpp
34
typedef const int
cint
;
typedef
35
extern
cint
car1[10];
/external/clang/test/Sema/
block-return.c
127
const int
cint
= 100;
130
int (^NN) (void) = ^{ return
cint
; };
Completed in 88 milliseconds