OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RDecl
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprMember.cpp
646
RecordDecl *
RDecl
= RTy->getDecl();
662
DeclContext *DC =
RDecl
;
SemaInit.cpp
777
const RecordDecl *
RDecl
= RType->getDecl();
778
if (
RDecl
->isUnion() && ILE->getInitializedFieldInUnion())
781
else if (
RDecl
->isUnion() && isa<CXXRecordDecl>(
RDecl
) &&
782
cast<CXXRecordDecl>(
RDecl
)->hasInClassInitializer()) {
783
for (auto *Field :
RDecl
->fields()) {
795
if (
RDecl
->hasFlexibleArrayMember())
802
if (auto *CXXRD = dyn_cast<CXXRecordDecl>(
RDecl
)) {
813
for (auto *Field :
RDecl
->fields()) {
828
if (
RDecl
->isUnion()
[
all
...]
SemaDecl.cpp
16901
CXXRecordDecl*
RDecl
= cast<CXXRecordDecl>(RT->getDecl());
16902
if (
RDecl
->getDefinition()) {
16963
CXXRecordDecl *
RDecl
= cast<CXXRecordDecl>(RT->getDecl());
16964
if (
RDecl
->getDefinition()) {
16975
if (
RDecl
->hasNonTrivialCopyConstructor())
16977
else if (!
RDecl
->hasTrivialDefaultConstructor())
16979
else if (
RDecl
->hasNonTrivialCopyAssignment())
16981
else if (
RDecl
->hasNonTrivialDestructor())
16986
getLangOpts().ObjCAutoRefCount &&
RDecl
->hasObjectMember()) {
17005
DiagnoseNontrivial(
RDecl
, member)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp
7560
RecordDecl *
RDecl
= cast<RecordType>(CT)->getDecl();
7561
S +=
RDecl
->isUnion() ? '(' : '{';
7563
if (const IdentifierInfo *II =
RDecl
->getIdentifier()) {
7565
if (const auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(
RDecl
)) {
7576
if (!
RDecl
->isUnion()) {
7577
getObjCEncodingForStructureImpl(
RDecl
, S, FD, true, NotEncodedT);
7579
for (const auto *Field :
RDecl
->fields()) {
7602
S +=
RDecl
->isUnion() ? ')' : '}';
7760
void ASTContext::getObjCEncodingForStructureImpl(RecordDecl *
RDecl
,
7765
assert(
RDecl
&& "Expected non-null RecordDecl")
[
all
...]
Completed in 39 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026