OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ILE
(Results
1 - 8
of
8
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprAgg.cpp
458
if (auto *
ILE
= dyn_cast<InitListExpr>(E)) {
459
if (
ILE
->getNumInits())
461
return isTrivialFiller(
ILE
->getArrayFiller());
1886
const InitListExpr *
ILE
= dyn_cast<InitListExpr>(E);
1887
while (
ILE
&&
ILE
->isTransparent())
1888
ILE
= dyn_cast<InitListExpr>(
ILE
->getInit(0));
1889
if (!
ILE
|| !CGF.getTypes().isZeroInitializable(
ILE
->getType())
[
all
...]
CGExprCXX.cpp
1031
if (const InitListExpr *
ILE
= dyn_cast<InitListExpr>(Init)) {
1034
if (
ILE
->isStringLiteralInit()) {
1046
EmitAggExpr(
ILE
->getInit(0), Slot);
1050
cast<ConstantArrayType>(
ILE
->getType()->getAsArrayTypeUnsafe())
1070
InitListElements =
ILE
->getNumInits();
1098
for (unsigned i = 0, e =
ILE
->getNumInits(); i != e; ++i) {
1110
StoreAnyExprIntoOneUnit(*this,
ILE
->getInit(i),
1111
ILE
->getInit(i)->getType(), CurPtr,
1121
Init =
ILE
->getArrayFiller();
1200
if (auto *
ILE
= dyn_cast<InitListExpr>(Init)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp
3150
const InitListExpr *
ILE
= cast<InitListExpr>(this);
3151
assert(
ILE
->isSemanticForm() && "InitListExpr must be in semantic form");
3152
if (
ILE
->getType()->isArrayType()) {
3153
unsigned numInits =
ILE
->getNumInits();
3155
if (!
ILE
->getInit(i)->isConstantInitializer(Ctx, false, Culprit))
3161
if (
ILE
->getType()->isRecordType()) {
3163
RecordDecl *RD =
ILE
->getType()->castAs<RecordType>()->getDecl();
3166
if (RD->isUnion() &&
ILE
->getInitializedFieldInUnion() != Field)
3173
if (ElementNo <
ILE
->getNumInits()) {
3174
const Expr *Elt =
ILE
->getInit(ElementNo++)
[
all
...]
ItaniumMangle.cpp
4518
auto *
ILE
= cast<InitListExpr>(SILE->getSubExpr()->IgnoreImplicit());
4519
mangleInitListElements(
ILE
);
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp
543
CFGBlock *VisitInitListExpr(InitListExpr *
ILE
, AddStmtChoice asc);
1451
auto *
ILE
= cast<InitListExpr>(Child);
1452
if (
ILE
->isTransparent()) {
1453
findConstructionContexts(Layer,
ILE
->getInit(0));
2359
CFGBlock *CFGBuilder::VisitInitListExpr(InitListExpr *
ILE
, AddStmtChoice asc) {
2360
if (asc.alwaysAdd(*this,
ILE
)) {
2362
appendStmt(Block,
ILE
);
2366
reverse_children RChildren(
ILE
);
/src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp
3301
InitListExpr *
ILE
=
3308
ILE
, false);
3397
InitListExpr *
ILE
=
3403
superType, VK_RValue,
ILE
,
RewriteObjC.cpp
2731
InitListExpr *
ILE
=
2738
ILE
, false);
2827
InitListExpr *
ILE
=
2833
superType, VK_RValue,
ILE
,
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp
11540
if (InitListExpr *
ILE
= dyn_cast<InitListExpr>(ArgExpr))
11541
if (
ILE
->getNumInits() == 1)
11542
ArgExpr =
ILE
->getInit(0);
11823
if (auto *
ILE
= dyn_cast<InitListExpr>(Init)) {
11824
for (auto I :
ILE
->inits()) {
13090
const auto *
ILE
= cast<InitListExpr>(var->getInit());
13091
unsigned NumInits =
ILE
->getNumInits();
13094
const auto *Init =
ILE
->getInit(I);
13108
const auto *Init =
ILE
->getInit(J);
Completed in 84 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026