Searched refs:Inserted (Results 1 - 19 of 19) sorted by relevance

/external/llvm/lib/IR/
H A DPassManager.cpp49 bool Inserted; local
50 std::tie(RI, Inserted) = ModuleAnalysisResults.insert(std::make_pair(
55 if (Inserted)
124 bool Inserted; local
125 std::tie(RI, Inserted) = FunctionAnalysisResults.insert(std::make_pair(
130 if (Inserted) {
H A DPassRegistry.cpp60 bool Inserted = local
62 assert(Inserted && "Pass registered multiple times!");
63 (void)Inserted;
H A DVerifier.cpp729 bool Inserted = SeenIDs.insert(std::make_pair(ID, Op)).second; local
730 Assert1(Inserted,
/external/llvm/lib/Analysis/
H A DCGSCCPassManager.cpp58 bool Inserted; local
59 std::tie(RI, Inserted) = CGSCCAnalysisResults.insert(std::make_pair(
64 if (Inserted) {
/external/llvm/unittests/ADT/
H A DStringMapTest.cpp209 bool Inserted; local
211 std::tie(NewIt, Inserted) =
217 EXPECT_TRUE(Inserted);
220 std::tie(ExistingIt, Inserted) =
224 EXPECT_FALSE(Inserted);
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp654 bool Inserted = false; local
656 i != e && !Inserted; ++i) {
658 Inserted = true;
662 if (!Inserted)
H A DInlineSpiller.cpp495 bool Inserted; local
496 std::tie(SVI, Inserted) =
498 if (!Inserted) {
574 std::tie(SVI, Inserted) =
580 if (Inserted)
607 std::tie(SVI, Inserted) = SibValues.insert(
610 if (Inserted)
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h172 Node *Inserted = GetOrInsertNode(N); local
173 (void)Inserted;
174 assert(Inserted == N && "Node already inserted!");
/external/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp288 bool Inserted; local
289 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0));
290 if (Inserted) {
H A DLoopUnswitch.cpp218 bool Inserted; local
219 std::tie(PropsIt, Inserted) =
224 if (Inserted) {
H A DLoopStrengthReduce.cpp3075 bool Inserted = InsertFormula(LU, LUIdx, F); local
3076 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3087 bool Inserted = InsertFormula(LU, LUIdx, F); local
3088 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3122 SmallPtrSet<const SCEV *, 8> Inserted; local
3135 if (!Inserted.insert(US)) continue;
4716 DenseMap<BasicBlock *, Value *> Inserted; local
4760 Inserted
[all...]
H A DSROA.cpp558 bool Inserted; local
560 std::tie(MTPI, Inserted) =
563 if (!Inserted) {
579 insertUse(II, Offset, Size, /*IsSplittable=*/Inserted && Length);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp146 bool Inserted = CallSiteToFunctionMap.insert( local
148 (void)Inserted;
149 assert(Inserted && "Pair was already in CallSiteToFunctionMap");
/external/clang/lib/AST/
H A DMicrosoftMangle.cpp1000 bool Inserted; local
1001 std::tie(Found, Inserted) =
1003 if (Inserted)
H A DVTableBuilder.cpp2779 bool Inserted; local
2780 std::tie(J, Inserted) = VisitedGroupIndices.insert(
2782 if (Inserted)
/external/clang/lib/CodeGen/
H A DCGCall.cpp940 bool Inserted = FunctionsBeingProcessed.insert(&FI); (void)Inserted; local
941 assert(Inserted && "Recursively being processed?");
H A DMicrosoftCXXABI.cpp1235 bool Inserted; local
1236 std::tie(I, Inserted) = VTablesMap.insert(std::make_pair(ID, nullptr));
1237 if (!Inserted)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2752 bool Inserted = Done.insert(BB);
2753 if (!Inserted)
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas1506 property Inserted: IANTLRInterface read FInserted write FInserted;

Completed in 6277 milliseconds