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

/external/llvm/lib/IR/
H A DPassRegistry.cpp59 bool Inserted = local
61 assert(Inserted && "Pass registered multiple times!");
62 (void)Inserted;
H A DVerifier.cpp1222 bool Inserted = SeenIDs.insert(std::make_pair(ID, Op)).second; local
1223 Assert(Inserted,
/external/llvm/include/llvm/CodeGen/
H A DMachineDominators.h236 bool Inserted = NewBBs.insert(NewBB).second; local
237 (void)Inserted;
238 assert(Inserted &&
/external/chromium-trace/trace-viewer/third_party/webapp2/docs/_themes/webapp2/
H A Dpygapp2.py48 Generic.Inserted: "nobold noitalic #000",
/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.cpp661 bool Inserted = false; local
663 i != e && !Inserted; ++i) {
665 Inserted = true;
669 if (!Inserted)
H A DInlineSpiller.cpp494 bool Inserted; local
495 std::tie(SVI, Inserted) =
497 if (!Inserted) {
576 std::tie(SVI, Inserted) =
582 if (Inserted)
609 std::tie(SVI, Inserted) = SibValues.insert(
612 if (Inserted)
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h173 Node *Inserted = GetOrInsertNode(N); local
174 (void)Inserted;
175 assert(Inserted == N && "Node already inserted!");
/external/llvm/include/llvm/IR/
H A DPassManager.h463 bool Inserted; local
464 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair(
469 if (Inserted) {
/external/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp292 bool Inserted; local
293 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(ConstInt, 0));
294 if (Inserted) {
H A DLoopUnswitch.cpp224 bool Inserted; local
225 std::tie(PropsIt, Inserted) =
230 if (Inserted) {
H A DLoopStrengthReduce.cpp3069 bool Inserted = InsertFormula(LU, LUIdx, F); local
3070 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3081 bool Inserted = InsertFormula(LU, LUIdx, F); local
3082 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
4711 DenseMap<BasicBlock *, Value *> Inserted; local
4757 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
H A DSROA.cpp848 bool Inserted;
850 std::tie(MTPI, Inserted) =
853 if (!Inserted) {
869 insertUse(II, Offset, Size, /*IsSplittable=*/Inserted && Length);
/external/llvm/lib/MC/
H A DMCContext.cpp285 bool Inserted; local
286 std::tie(I, Inserted) = ELFRelSecNames.insert(std::make_pair(Name, true));
/external/llvm/tools/dsymutil/
H A DDwarfLinker.cpp338 bool Inserted; local
342 std::tie(It, Inserted) = Strings.insert(std::make_pair(S, Entry));
343 if (Inserted || It->getValue().first == 0) {
/external/clang/lib/AST/
H A DVTableBuilder.cpp2941 bool Inserted; local
2942 std::tie(J, Inserted) = VisitedGroupIndices.insert(
2944 if (Inserted)
/external/clang/lib/CodeGen/
H A DCGCall.cpp1250 bool Inserted = FunctionsBeingProcessed.insert(&FI).second;
1251 (void)Inserted;
1252 assert(Inserted && "Recursively being processed?");
H A DMicrosoftCXXABI.cpp1465 bool Inserted; local
1466 std::tie(I, Inserted) = VTablesMap.insert(std::make_pair(ID, nullptr));
1467 if (!Inserted)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2796 bool Inserted = Done.insert(BB).second;
2797 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 569 milliseconds