/third_party/json/include/nlohmann/detail/iterators/ |
D | iterator_traits.hpp | 21 template<typename It, typename = void> 24 template<typename It> 26 It, 27 void_t<typename It::difference_type, typename It::value_type, typename It::pointer, 28 typename It::reference, typename It::iterator_category >> 30 using difference_type = typename It::difference_type; 31 using value_type = typename It::value_type; 32 using pointer = typename It::pointer; 33 using reference = typename It::reference; 34 using iterator_category = typename It::iterator_category;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | R600OptimizeVectorRegisters.cpp | 168 for (DenseMap<unsigned, unsigned>::iterator It = ToMerge->RegToChan.begin(), in tryMergeVector() local 169 E = ToMerge->RegToChan.end(); It != E; ++It) { in tryMergeVector() 171 Untouched->RegToChan.find((*It).first); in tryMergeVector() 174 ((*It).second, (*PosInUntouched).second)); in tryMergeVector() 180 ((*It).second, Untouched->UndefReg[CurrentUndexIdx++])); in tryMergeVector() 208 for (DenseMap<unsigned, unsigned>::iterator It = RSI->RegToChan.begin(), in RebuildVector() local 209 E = RSI->RegToChan.end(); It != E; ++It) { in RebuildVector() 211 unsigned SubReg = (*It).first; in RebuildVector() 212 unsigned Swizzle = (*It).second; in RebuildVector() 235 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in RebuildVector() local [all …]
|
D | AMDILCFGStructurizer.cpp | 211 int countActiveBlock(MBBVector::const_iterator It, 346 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in getSCCNum() local 347 if (It == BlockInfoMap.end()) in getSCCNum() 349 return (*It).second->SccNum; in getSCCNum() 354 LoopLandInfoMap::const_iterator It = LLInfoMap.find(LoopRep); in getLoopLandInfo() local 355 if (It == LLInfoMap.end()) in getLoopLandInfo() 357 return (*It).second; in getLoopLandInfo() 369 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in isRetiredBlock() local 370 if (It == BlockInfoMap.end()) in isRetiredBlock() 372 return (*It).second->IsRetired; in isRetiredBlock() [all …]
|
D | R600MachineScheduler.cpp | 161 for (MachineInstr::mop_iterator It = SU->getInstr()->operands_begin(), in schedNode() local 162 E = SU->getInstr()->operands_end(); It != E; ++It) { in schedNode() 163 MachineOperand &MO = *It; in schedNode() 320 for (std::vector<SUnit *>::reverse_iterator It = Q.rbegin(), E = Q.rend(); in PopInst() local 321 It != E; ++It) { in PopInst() 322 SUnit *SU = *It; in PopInst() 327 Q.erase((It + 1).base()); in PopInst() 363 for (MachineInstr::mop_iterator It = MI->operands_begin(), in AssignSlot() local 364 E = MI->operands_end(); It != E; ++It) { in AssignSlot() 365 MachineOperand &MO = *It; in AssignSlot()
|
D | GCNRegPressure.cpp | 378 for (auto &It : LiveRegs) { in advanceBeforeNext() local 379 const LiveInterval &LI = LIS.getInterval(It.first); in advanceBeforeNext() 383 auto PrevMask = It.second; in advanceBeforeNext() 384 It.second &= ~S.LaneMask; in advanceBeforeNext() 385 CurPressure.inc(It.first, PrevMask, It.second, *MRI); in advanceBeforeNext() 389 auto PrevMask = It.second; in advanceBeforeNext() 390 It.second = LaneBitmask::getNone(); in advanceBeforeNext() 391 CurPressure.inc(It.first, PrevMask, It.second, *MRI); in advanceBeforeNext() 393 if (It.second.none()) in advanceBeforeNext() 394 LiveRegs.erase(It.first); in advanceBeforeNext() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | Range.cpp | 24 auto It = llvm::upper_bound(Ranges, Range); in insert() local 25 auto It2 = It; in insert() 28 if (It != It2) { in insert() 30 It = Ranges.erase(It, It2); in insert() 32 if (It != Ranges.begin() && Range.Start < It[-1].End) in insert() 33 It[-1].End = std::max(It[-1].End, Range.End); in insert() 35 Ranges.insert(It, Range); in insert() 39 auto It = std::partition_point( in contains() local 42 return It != Ranges.begin() && Addr < It[-1].End; in contains() 48 auto It = std::partition_point( in contains() local [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | controlFlowInstanceOfGuardPrimitives.types | 11 console.log("Aha!! It's a Date in " + thing.getFullYear()); 12 >console.log("Aha!! It's a Date in " + thing.getFullYear()) : void 16 >"Aha!! It's a Date in " + thing.getFullYear() : string 17 >"Aha!! It's a Date in " : "Aha!! It's a Date in " 29 console.log("Aha!! It's a string of length " + thing.length); 30 >console.log("Aha!! It's a string of length " + thing.length) : void 34 >"Aha!! It's a string of length " + thing.length : string 35 >"Aha!! It's a string of length " : "Aha!! It's a string of length " 41 console.log("Aha!! It's the number " + thing.toPrecision(3)); 42 >console.log("Aha!! It's the number " + thing.toPrecision(3)) : void [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SwiftErrorValueTracking.cpp | 29 auto It = VRegDefMap.find(Key); in getOrCreateVReg() local 34 if (It == VRegDefMap.end()) { in getOrCreateVReg() 42 return It->second; in getOrCreateVReg() 53 auto It = VRegDefUses.find(Key); in getOrCreateVRegDefAt() local 54 if (It != VRegDefUses.end()) in getOrCreateVRegDefAt() 55 return It->second; in getOrCreateVRegDefAt() 68 auto It = VRegDefUses.find(Key); in getOrCreateVRegUseAt() local 69 if (It != VRegDefUses.end()) in getOrCreateVRegUseAt() 70 return It->second; in getOrCreateVRegUseAt() 266 for (auto It = Begin; It != End; ++It) { in preassignVRegs() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/ |
D | Graph.h | 213 auto It = NL.find(A); in begin() local 214 if (It == NL.end()) in begin() 216 return iterator(It->second.begin(), &M, A); in begin() 220 auto It = NL.find(A); in cbegin() local 221 if (It == NL.end()) in cbegin() 223 return const_iterator(It->second.begin(), &M, A); in cbegin() 229 auto It = NL.find(A); in end() local 230 if (It == NL.end()) in end() 232 return iterator(It->second.end(), &M, A); in end() 235 auto It = NL.find(A); in cend() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | CFG.h | 47 USE_iterator It; variable 51 while (!It.atEnd()) { in advancePastNonTerminators() 52 if (auto *Inst = dyn_cast<Instruction>(*It)) in advancePastNonTerminators() 56 ++It; in advancePastNonTerminators() 65 explicit inline PredIterator(Ptr *bb) : It(bb->user_begin()) { in PredIterator() 68 inline PredIterator(Ptr *bb, bool) : It(bb->user_end()) {} in PredIterator() 70 inline bool operator==(const Self& x) const { return It == x.It; } 74 assert(!It.atEnd() && "pred_iterator out of range!"); 75 return cast<Instruction>(*It)->getParent(); 80 assert(!It.atEnd() && "pred_iterator out of range!"); [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | LoopUnrollAndJam.cpp | 314 for (unsigned It = 1; It != Count; ++It) { in UnrollAndJamLoop() local 321 BasicBlock *New = CloneBasicBlock(*BB, VMap, "." + Twine(It)); in UnrollAndJamLoop() 350 PrevItValueMap[New] = (It == 1 ? *BB : LastValueMap[*BB]); in UnrollAndJamLoop() 355 const_cast<Value *>(It == 1 ? VI->first : LastValueMap[VI->first]); in UnrollAndJamLoop() 363 DT->addNewBlock(New, ForeBlocksLast[It - 1]); in UnrollAndJamLoop() 365 DT->addNewBlock(New, SubLoopBlocksLast[It - 1]); in UnrollAndJamLoop() 367 DT->addNewBlock(New, AftBlocksLast[It - 1]); in UnrollAndJamLoop() 393 for (PHINode &Phi : ForeBlocksFirst[It]->phis()) { in UnrollAndJamLoop() 394 Value *OldValue = Phi.getIncomingValueForBlock(AftBlocksLast[It]); in UnrollAndJamLoop() 401 Phi.setIncomingBlock(0, ForeBlocksLast[It - 1]); in UnrollAndJamLoop() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCPreEmitPeephole.cpp | 244 MachineBasicBlock::reverse_iterator It = Br, Er = MBB.rend(); in runOnMachineFunction() local 245 for (It++; It != Er; It++) { in runOnMachineFunction() 246 if (It->modifiesRegister(CRBit, TRI)) { in runOnMachineFunction() 247 if ((It->getOpcode() == PPC::CRUNSET || in runOnMachineFunction() 248 It->getOpcode() == PPC::CRSET) && in runOnMachineFunction() 249 It->getOperand(0).getReg() == CRBit) in runOnMachineFunction() 250 CRSetMI = &*It; in runOnMachineFunction() 253 if (It->readsRegister(CRBit, TRI)) in runOnMachineFunction() 268 MachineBasicBlock::iterator It = Br, Er = MBB.end(); in runOnMachineFunction() local 269 for (; It != Er; It++) { in runOnMachineFunction() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/ |
D | algorithm.h | 77 template <typename It> 78 It RotateImpl(It first, It middle, It last, std::true_type) { in RotateImpl() 82 template <typename It> 83 It RotateImpl(It first, It middle, It last, std::false_type) { in RotateImpl()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
D | BlotMapVector.h | 80 typename MapTy::iterator It = Map.find(Key); in find() local 81 if (It == Map.end()) in find() 83 return Vector.begin() + It->second; in find() 87 typename MapTy::const_iterator It = Map.find(Key); in find() local 88 if (It == Map.end()) in find() 90 return Vector.begin() + It->second; in find() 97 typename MapTy::iterator It = Map.find(Key); in blot() local 98 if (It == Map.end()) in blot() 100 Vector[It->second].first = KeyT(); in blot() 101 Map.erase(It); in blot()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | InstructionPrecedenceTracking.cpp | 79 auto It = FirstSpecialInsts.find(BB); in validate() local 81 if (It == FirstSpecialInsts.end()) in validate() 86 assert(It->second == &Insn && in validate() 91 assert(It->second == nullptr && in validate() 98 for (auto &It : FirstSpecialInsts) in validateAll() local 99 validate(It.first); in validateAll() 117 for (auto It : FirstSpecialInsts) in clear() local 118 OI.invalidateBlock(It.first); in clear()
|
D | PhiValues.cpp | 100 auto It = ReachableMap.find(OpDepthNumber); in processPhi() local 101 if (It != ReachableMap.end()) in processPhi() 102 Reachable.insert(It->second.begin(), It->second.end()); in processPhi() 153 auto It = TrackedValues.find_as(V); in invalidateValue() local 154 if (It != TrackedValues.end()) in invalidateValue() 155 TrackedValues.erase(It); in invalidateValue() 173 auto It = NonPhiReachableMap.find(N); in print() local 174 if (It == NonPhiReachableMap.end()) in print() 176 else if (It->second.empty()) in print() 179 for (Value *V : It->second) in print()
|
/third_party/node/test/parallel/ |
D | test-fs-cp.mjs | 33 // It copies a nested folder structure with files and folders. 41 // It copies a nested folder structure with mode flags. 65 // It does not throw errors when directory is copied over and force is false. 80 // It overwrites existing files if force is true. 92 // It does not fail if the same directory is copied to dest twice, 105 // It copies file itself, rather than symlink, when dereference is true. 122 // It throws error when verbatimSymlinks is not a boolean. 134 // It rejects if options.mode is invalid. 143 // It throws an error when both dereference and verbatimSymlinks are enabled. 153 // It resolves relative symlinks to their absolute path by default. [all …]
|
/third_party/vixl/test/ |
D | test-api.cc | 199 typedef CPUFeatures::const_iterator It; in TEST() typedef 201 It it0; in TEST() 202 It it1_neon(&f1, CPUFeatures::kNEON); in TEST() 203 It it2_neon(&f2, CPUFeatures::kNEON); in TEST() 204 It it2_crc32(&f2, CPUFeatures::kCRC32); in TEST() 205 It it3(&f3); in TEST() 247 VIXL_STATIC_ASSERT(std::is_copy_constructible<It>::value); in TEST() 248 VIXL_STATIC_ASSERT(std::is_copy_assignable<It>::value); in TEST() 249 VIXL_STATIC_ASSERT(std::is_destructible<It>::value); in TEST() 252 It test0 = it0; in TEST() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMCallingConv.cpp | 232 for (SmallVectorImpl<CCValAssign>::iterator It = PendingMembers.begin(); in CC_ARM_AAPCS_Custom_Aggregate() local 233 It != PendingMembers.end(); ++It) { in CC_ARM_AAPCS_Custom_Aggregate() 234 It->convertToReg(RegResult); in CC_ARM_AAPCS_Custom_Aggregate() 235 State.addLoc(*It); in CC_ARM_AAPCS_Custom_Aggregate() 248 for (auto &It : PendingMembers) { in CC_ARM_AAPCS_Custom_Aggregate() local 250 It.convertToMem(State.AllocateStack(Size, Size)); in CC_ARM_AAPCS_Custom_Aggregate() 252 It.convertToReg(State.AllocateReg(RegList[RegIdx++])); in CC_ARM_AAPCS_Custom_Aggregate() 254 State.addLoc(It); in CC_ARM_AAPCS_Custom_Aggregate() 270 for (auto &It : PendingMembers) { in CC_ARM_AAPCS_Custom_Aggregate() local 271 It.convertToMem(State.AllocateStack(Size, Align)); in CC_ARM_AAPCS_Custom_Aggregate() [all …]
|
/third_party/spirv-tools/source/opt/ |
D | function.h | 191 template <class It> 192 void ReorderBasicBlocks(It begin, It end); 194 template <class It> 195 bool ContainsAllBlocksInTheFunction(It begin, It end); 278 template <class It> 279 void Function::ReorderBasicBlocks(It begin, It end) { in ReorderBasicBlocks() 293 template <class It> 294 bool Function::ContainsAllBlocksInTheFunction(It begin, It end) { in ContainsAllBlocksInTheFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonFrameLowering.cpp | 686 MachineBasicBlock::iterator It = RetI; in insertEpilogueInBlock() local 687 ++It; in insertEpilogueInBlock() 689 while (It != MBB.end()) { in insertEpilogueInBlock() 690 if (!It->isLabel()) in insertEpilogueInBlock() 691 It = MBB.erase(It); in insertEpilogueInBlock() 693 ++It; in insertEpilogueInBlock() 850 MachineBasicBlock::iterator It = I.getIterator(); in findCFILocation() local 853 return std::next(It); in findCFILocation() 858 auto T = It.getInstrIterator(); in findCFILocation() 866 return HasCall ? It : std::next(It); in findCFILocation() [all …]
|
D | HexagonFrameLowering.h | 128 bool expandCopy(MachineBasicBlock &B, MachineBasicBlock::iterator It, 131 bool expandStoreInt(MachineBasicBlock &B, MachineBasicBlock::iterator It, 134 bool expandLoadInt(MachineBasicBlock &B, MachineBasicBlock::iterator It, 137 bool expandStoreVecPred(MachineBasicBlock &B, MachineBasicBlock::iterator It, 140 bool expandLoadVecPred(MachineBasicBlock &B, MachineBasicBlock::iterator It, 143 bool expandStoreVec2(MachineBasicBlock &B, MachineBasicBlock::iterator It, 146 bool expandLoadVec2(MachineBasicBlock &B, MachineBasicBlock::iterator It, 149 bool expandStoreVec(MachineBasicBlock &B, MachineBasicBlock::iterator It, 152 bool expandLoadVec(MachineBasicBlock &B, MachineBasicBlock::iterator It,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SetVector.h | 58 template<typename It> 59 SetVector(It Start, It End) { in SetVector() 149 template<typename It> 150 void insert(It Start, It End) { in insert() 303 template<typename It> 304 SmallSetVector(It Start, It End) { in SmallSetVector()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64CallingConvention.cpp | 48 for (auto &It : PendingMembers) { in finishStackBlock() local 49 It.convertToMem(State.AllocateStack( in finishStackBlock() 51 State.addLoc(It); in finishStackBlock() 122 for (auto &It : PendingMembers) { in CC_AArch64_Custom_Block() local 123 It.convertToReg(RegResult); in CC_AArch64_Custom_Block() 124 State.addLoc(It); in CC_AArch64_Custom_Block() 133 for (auto &It : PendingMembers) { in CC_AArch64_Custom_Block() local 135 State.addLoc(CCValAssign::getReg(It.getValNo(), MVT::i32, RegResult, in CC_AArch64_Custom_Block()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceLoopAnalyzer.cpp | 237 for (auto It = LoopStack.rbegin(); It != LoopStack.rend(); ++It) { in processNode() local 238 (*It)->setOnStack(false); in processNode() 239 (*It)->incrementLoopNestDepth(); in processNode() 241 if (*It == &Node) { in processNode() 242 (*It)->setDeleted(); in processNode() 245 for (auto LoopIter = It.base() - 1; LoopIter != LoopStack.end(); in processNode() 250 LoopStack.erase(It.base() - 1, LoopStack.end()); in processNode()
|