OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isZeroInitializable
(Results
1 - 12
of
12
) sorted by null
/external/clang/lib/CodeGen/
CodeGenTypes.h
246
///
IsZeroInitializable
- Return whether a type can be
248
bool
isZeroInitializable
(QualType T);
250
///
IsZeroInitializable
- Return whether a record type can be
252
bool
isZeroInitializable
(const CXXRecordDecl *RD);
CGRecordLayout.h
142
bool
IsZeroInitializable
: 1;
152
bool
IsZeroInitializable
,
156
IsZeroInitializable
(
IsZeroInitializable
),
173
bool
isZeroInitializable
() const {
174
return
IsZeroInitializable
;
CodeGenTypes.cpp
707
bool CodeGenTypes::
isZeroInitializable
(QualType T) {
718
return
isZeroInitializable
(RD);
723
return getCXXABI().
isZeroInitializable
(MPT);
729
bool CodeGenTypes::
isZeroInitializable
(const CXXRecordDecl *RD) {
730
return getCGRecordLayout(RD).
isZeroInitializable
();
CGCXXABI.h
162
virtual bool
isZeroInitializable
(const MemberPointerType *MPT);
CGExprAgg.cpp
452
CGF.getTypes().
isZeroInitializable
(elementType))) {
[
all
...]
CGCXXABI.cpp
114
bool CGCXXABI::
isZeroInitializable
(const MemberPointerType *MPT) {
CGExprConstant.cpp
[
all
...]
CGRecordLayoutBuilder.cpp
74
///
IsZeroInitializable
- Whether this struct can be C++
76
bool
IsZeroInitializable
;
194
IsZeroInitializable
(true), IsZeroInitializableAsBase(true),
566
assert(
IsZeroInitializable
&&
569
IsZeroInitializable
= IsZeroInitializableAsBase =
586
if (
IsZeroInitializable
)
587
IsZeroInitializable
= baseLayout.isZeroInitializableAsBase();
[
all
...]
MicrosoftCXXABI.cpp
241
virtual bool
isZeroInitializable
(const MemberPointerType *MPT);
667
bool MicrosoftCXXABI::
isZeroInitializable
(const MemberPointerType *MPT) {
[
all
...]
CGExprCXX.cpp
416
// TODO:
isZeroInitializable
can be over-conservative in the case where a
418
if (!CGF.CGM.getTypes().
isZeroInitializable
(Base)) {
[
all
...]
ItaniumCXXABI.cpp
62
bool
isZeroInitializable
(const MemberPointerType *MPT);
717
bool ItaniumCXXABI::
isZeroInitializable
(const MemberPointerType *MPT) {
[
all
...]
CodeGenFunction.cpp
[
all
...]
Completed in 2014 milliseconds