/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/ |
D | DWARFLinkerDeclContext.cpp | 183 bool Inserted; in getChildDeclContext() local 187 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext() 188 assert(Inserted && "Failed to insert DeclContext"); in getChildDeclContext() 189 (void)Inserted; in getChildDeclContext()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | PassRegistry.cpp | 59 bool Inserted = in registerPass() local 61 assert(Inserted && "Pass registered multiple times!"); in registerPass() 62 (void)Inserted; in registerPass()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | CFGMST.h | 256 bool Inserted; in addEdge() local 257 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Src, nullptr)); in addEdge() 258 if (Inserted) { in addEdge() 263 std::tie(Iter, Inserted) = BBInfos.insert(std::make_pair(Dest, nullptr)); in addEdge() 264 if (Inserted) in addEdge()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | FunctionComparator.h | 73 bool Inserted; in getNumber() local 74 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber() 75 if (Inserted) in getNumber()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
D | Profile.cpp | 212 bool Inserted; in mergeProfilesByThread() local 213 std::tie(PathDataIt, Inserted) = It->second->insert({NewPathID, Data}); in mergeProfilesByThread() 214 if (!Inserted) { in mergeProfilesByThread() 245 bool Inserted; in mergeProfilesByStack() local 246 std::tie(PathDataIt, Inserted) = PathData.insert({NewPathID, Data}); in mergeProfilesByStack() 247 if (!Inserted) { in mergeProfilesByStack()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Signposts.cpp | 49 const auto &Inserted = Signposts.insert( in getSignpostForTimer() local 51 return Inserted.first->second; in getSignpostForTimer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | PassManager.h | 710 bool Inserted; in invalidateImpl() local 711 std::tie(IMapI, Inserted) = in invalidateImpl() 713 (void)Inserted; in invalidateImpl() 714 assert(Inserted && "Should not have already inserted this ID, likely " in invalidateImpl() 891 bool Inserted = in invalidate() local 894 (void)Inserted; in invalidate() 895 assert(Inserted && "Should never have already inserted this ID, likely " in invalidate() 942 bool Inserted; in getResultImpl() local 943 std::tie(RI, Inserted) = AnalysisResults.insert(std::make_pair( in getResultImpl() 948 if (Inserted) { in getResultImpl()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineDominators.h | 245 bool Inserted = NewBBs.insert(NewBB).second; in recordSplitCriticalEdge() local 246 (void)Inserted; in recordSplitCriticalEdge() 247 assert(Inserted && in recordSplitCriticalEdge()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CGSCCPassManager.cpp | 464 bool Inserted = RetainedEdges.insert(&CalleeN).second; in updateCGAndAnalysisManagerForFunctionPass() local 465 (void)Inserted; in updateCGAndAnalysisManagerForFunctionPass() 466 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForFunctionPass() 486 bool Inserted = RetainedEdges.insert(&RefereeN).second; in updateCGAndAnalysisManagerForFunctionPass() local 487 (void)Inserted; in updateCGAndAnalysisManagerForFunctionPass() 488 assert(Inserted && "We should never visit a function twice."); in updateCGAndAnalysisManagerForFunctionPass()
|
D | LazyCallGraph.cpp | 317 bool Inserted = SCCSet.insert(C).second; in verify() local 318 assert(Inserted && "Found a duplicate SCC!"); in verify() 1730 bool Inserted = in buildRefSCCs() local 1732 (void)Inserted; in buildRefSCCs() 1733 assert(Inserted && "Cannot already have this RefSCC in the index map!"); in buildRefSCCs()
|
D | BranchProbabilityInfo.cpp | 474 bool Inserted; in isSCCHeader() local 476 std::tie(HeaderMapIt, Inserted) = HeaderMap.insert(std::make_pair(BB, false)); in isSCCHeader() 477 if (Inserted) { in isSCCHeader()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/ |
D | RemarkLinker.cpp | 55 auto Inserted = Remarks.insert(std::move(Remark)); in keep() local 56 return **Inserted.first; in keep()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SwiftErrorValueTracking.cpp | 127 bool Inserted = false; in createEntriesInEntryBlock() local 140 Inserted = true; in createEntriesInEntryBlock() 143 return Inserted; in createEntriesInEntryBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | ConstantHoisting.cpp | 374 bool Inserted; in collectConstantCandidates() local 376 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates() 377 if (Inserted) { in collectConstantCandidates() 422 bool Inserted; in collectConstantCandidates() local 424 std::tie(Itr, Inserted) = ConstCandMap.insert(std::make_pair(Cand, 0)); in collectConstantCandidates() 425 if (Inserted) { in collectConstantCandidates()
|
D | SpeculateAroundPHIs.cpp | 469 bool Inserted = SpecCostMap.insert({I, Cost}).second; in findProfitablePHIs() local 470 (void)Inserted; in findProfitablePHIs() 471 assert(Inserted && "Must not re-insert a cost during the DFS!"); in findProfitablePHIs()
|
D | SimpleLoopUnswitch.cpp | 1416 bool Inserted = ExitLoopMap.insert({PredBB, ExitL}).second; in buildClonedLoops() local 1417 (void)Inserted; in buildClonedLoops() 1418 assert(Inserted && "Should only visit an unlooped block once!"); in buildClonedLoops() 1815 bool Inserted = NewExitLoopBlocks.insert(PredBB).second; in rebuildLoopAfterUnswitch() local 1816 (void)Inserted; in rebuildLoopAfterUnswitch() 1817 assert(Inserted && "Should only visit an unlooped block once!"); in rebuildLoopAfterUnswitch() 2364 bool Inserted = DTCostMap.insert({&N, Cost}).second; in computeDomSubtreeCost() local 2365 (void)Inserted; in computeDomSubtreeCost() 2366 assert(Inserted && "Should not insert a node while visiting children!"); in computeDomSubtreeCost()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LoopRotationUtils.cpp | 82 bool Inserted = VM.insert({K, V}).second; in InsertNewValueIntoMap() local 83 assert(Inserted); in InsertNewValueIntoMap() 84 (void)Inserted; in InsertNewValueIntoMap()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | FoldingSet.h | 458 T *Inserted = GetOrInsertNode(N); in InsertNode() local 459 (void)Inserted; in InsertNode() 460 assert(Inserted == N && "Node already inserted!"); in InsertNode()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/ |
D | OES_texture_env_crossbar.txt | 121 Inserted after the second paragraph of F.2.12: 131 Inserted after the third paragraph of F.2.12:
|
/third_party/openGLES/extensions/OES/ |
D | OES_texture_env_crossbar.txt | 131 Inserted after the second paragraph of F.2.12: 141 Inserted after the third paragraph of F.2.12:
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_texture_env_crossbar.txt | 143 Inserted after the second paragraph of F.2.12: 153 Inserted after the third paragraph of F.2.12:
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_texture_env_crossbar.txt | 153 Inserted after the second paragraph of F.2.12: 163 Inserted after the third paragraph of F.2.12:
|
/third_party/libnl/doc/stylesheets/ |
D | pygments.css | 18 .highlight .gi { color: #00A000 } /* Generic.Inserted */
|
/third_party/boost/libs/python/doc/html/numpy/_static/ |
D | pygments.css | 17 .highlight .gi { color: #00A000 } /* Generic.Inserted */
|
/third_party/boost/libs/gil/doc/html/_static/ |
D | pygments.css | 17 .highlight .gi { color: #00A000 } /* Generic.Inserted */
|