OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ILE
(Results
1 - 25
of
30
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SlotIndexes.cpp
251
for (const IndexListEntry &
ILE
: indexList) {
252
dbgs() <<
ILE
.getIndex() << " ";
254
if (
ILE
.getInstr()) {
255
dbgs() << *
ILE
.getInstr();
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprConstant.cpp
554
InitListExpr *
ILE
, QualType StructTy);
576
bool Build(InitListExpr *
ILE
, bool AllowOverwrite);
673
bool ConstStructBuilder::Build(InitListExpr *
ILE
, bool AllowOverwrite) {
674
RecordDecl *RD =
ILE
->getType()->castAs<RecordType>()->getDecl();
692
!declaresSameEntity(
ILE
->getInitializedFieldInUnion(), Field))
702
if (ElementNo <
ILE
->getNumInits())
703
Init =
ILE
->getInit(ElementNo++);
860
InitListExpr *
ILE
,
865
if (!Builder.Build(
ILE
, /*AllowOverwrite*/false))
1194
llvm::Constant *EmitArrayInitialization(InitListExpr *
ILE
, QualType T)
[
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
...]
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
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp
461
InitListExpr *
ILE
, bool &RequiresSecondPass,
465
InitListExpr *
ILE
, bool &RequiresSecondPass,
468
InitListExpr *
ILE
, bool &RequiresSecondPass,
613
const InitializedEntity &ParentEntity, InitListExpr *
ILE
,
618
if (Init >=
ILE
->getNumInits() || !
ILE
->getInit(Init)) {
621
: PerformEmptyInit(
ILE
->getEndLoc(), BaseEntity);
628
assert(Init <
ILE
->getNumInits() && "should have been expanded");
629
ILE
->setInit(Init, BaseInit.getAs<Expr>());
632
dyn_cast<InitListExpr>(
ILE
->getInit(Init)))
[
all
...]
SemaTemplateDeduction.cpp
3952
InitListExpr *
ILE
, TemplateDeductionInfo &Info,
3964
if (!
ILE
->getNumInits())
3979
for (Expr *E :
ILE
->inits())
3985
for (Expr *E :
ILE
->inits()) {
4004
llvm::APInt Size(S.Context.getIntWidth(T),
ILE
->getNumInits());
4033
if (InitListExpr *
ILE
= dyn_cast<InitListExpr>(Arg))
4034
return DeduceFromInitializerList(S, TemplateParams, ParamType,
ILE
, Info,
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);
SemaDeclCXX.cpp
3729
void CheckInitListExpr(InitListExpr *
ILE
) {
3731
for (auto Child :
ILE
->children()) {
3751
InitListExpr *
ILE
= dyn_cast<InitListExpr>(E);
3753
if (
ILE
&& Field) {
3757
CheckInitListExpr(
ILE
);
3786
if (InitListExpr *
ILE
= dyn_cast<InitListExpr>(ArgExpr))
3787
if (
ILE
->getNumInits() == 1)
3788
ArgExpr =
ILE
->getInit(0);
SemaExprCXX.cpp
3293
if (const InitListExpr *
ILE
= dyn_cast<const InitListExpr>(E)) {
3294
if (
ILE
->getNumInits() == 1)
3295
E = dyn_cast<const CXXNewExpr>(
ILE
->getInit(0)->IgnoreParenImpCasts());
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp
467
if (const auto *
ILE
= dyn_cast<InitListExpr>(E->IgnoreParenCasts())) {
468
return isConstant(
ILE
);
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTNodeTraverser.h
670
void VisitInitListExpr(const InitListExpr *
ILE
) {
671
if (auto *Filler =
ILE
->getArrayFiller()) {
JSONNodeDumper.h
283
void VisitInitListExpr(const InitListExpr *
ILE
);
TextNodeDumper.h
258
void VisitInitListExpr(const InitListExpr *
ILE
);
RecursiveASTVisitor.h
562
auto
ILE
= static_cast<CLASS *>(S); \
563
if (auto Syn =
ILE
->isSemanticForm() ?
ILE
->getSyntacticForm() :
ILE
) \
565
if (auto Sem =
ILE
->isSemanticForm() ?
ILE
:
ILE
->getSemanticForm()) \
/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
...]
JSONNodeDumper.cpp
1293
void JSONNodeDumper::VisitInitListExpr(const InitListExpr *
ILE
) {
1294
if (const FieldDecl *FD =
ILE
->getInitializedFieldInUnion())
ExprConstant.cpp
9317
APValue &Result, const InitListExpr *
ILE
,
10405
APValue &Result, const InitListExpr *
ILE
,
10407
assert(!
ILE
->isValueDependent());
10408
assert(
ILE
->isRValue() &&
ILE
->getType()->isArrayType() &&
10411
.VisitInitListExpr(
ILE
, AllocType);
10431
if (const InitListExpr *
ILE
= dyn_cast<InitListExpr>(FillerExpr)) {
10432
for (unsigned I = 0, E =
ILE
->getNumInits(); I != E; ++I) {
10433
if (MaybeElementDependentArrayFiller(
ILE
->getInit(I)))
/src/external/apache2/llvm/dist/clang/lib/Analysis/
ThreadSafety.cpp
1405
else if (const auto *
ILE
= dyn_cast_or_null<IntegerLiteral>(BrE))
1406
branch =
ILE
->getValue().getBoolValue();
1428
} else if (const auto *
ILE
= dyn_cast<IntegerLiteral>(E)) {
1429
TCond =
ILE
->getValue().getBoolValue();
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/gpl3/binutils/dist/zlib/os400/
zlib.inc
3
*
ILE
RPG400 version by Patrick Monnerat, DATASPHERE.
/src/external/gpl3/binutils.old/dist/zlib/os400/
zlib.inc
3
*
ILE
RPG400 version by Patrick Monnerat, DATASPHERE.
/src/external/gpl3/gdb.old/dist/zlib/os400/
zlib.inc
3
*
ILE
RPG400 version by Patrick Monnerat, DATASPHERE.
/src/external/gpl3/gdb/dist/zlib/os400/
zlib.inc
3
*
ILE
RPG400 version by Patrick Monnerat, DATASPHERE.
/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
,
Completed in 163 milliseconds
1
2
Indexes created Mon Jun 08 00:24:58 UTC 2026