/external/libcxx/test/std/iterators/iterator.primitives/iterator.basic/ |
D | iterator.pass.cpp | 32 typedef std::iterator<std::forward_iterator_tag, T> It; in test2() typedef 44 typedef std::iterator<std::bidirectional_iterator_tag, T, short> It; in test3() typedef 56 typedef std::iterator<std::random_access_iterator_tag, T, int, const T*> It; in test4() typedef 68 typedef std::iterator<std::input_iterator_tag, T, long, const T*, const T&> It; in test5() typedef
|
/external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/ |
D | types.pass.cpp | 69 typedef std::move_iterator<T> It; in main() typedef 74 typedef std::move_iterator<T> It; in main() typedef 81 typedef std::move_iterator<T> It; in main() typedef 86 typedef std::move_iterator<T> It; in main() typedef 91 typedef std::move_iterator<T> It; in main() typedef
|
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.construct/ |
D | source.pass.cpp | 70 using It = input_iterator<const CharT*>; in RunTestCase() typedef 76 using It = input_iterator<const CharT*>; in RunTestCase() typedef 86 using It = const char* const; in test_sfinae() typedef 90 using It = input_iterator<const char*>; in test_sfinae() typedef 101 using It = input_iterator<const char*, Traits>; in test_sfinae() typedef 105 using It = output_iterator<const char*>; in test_sfinae() typedef
|
/external/clang/test/OpenMP/ |
D | for_codegen.cpp | 436 struct It { struct 437 It() : p(0) {} in It() function 443 ~It() {} in ~It() argument 445 It(T *p) : p(p) {} in It() argument 451 It &operator++() { ++p; return *this; } in operator ++() argument 452 It &operator--() { --p; return *this; } in operator --() argument 453 It &operator+=(unsigned n) { p += n; return *this; } in operator +=() argument 454 It &operator-=(unsigned n) { p -= n; return *this; } in operator -=() argument 460 It<T> operator+(It<T> a, typename It<T>::difference_type n) { return a.p + n; } in operator +() argument
|
/external/libcxx/test/std/containers/unord/ |
D | iterator_difference_type.pass.cpp | 23 typedef typename Map::iterator It; in testUnorderedMap() typedef 30 typedef typename Map::const_iterator It; in testUnorderedMap() typedef 37 typedef typename Map::local_iterator It; in testUnorderedMap() typedef 44 typedef typename Map::const_local_iterator It; in testUnorderedMap() typedef 61 typedef typename Set::iterator It; in testUnorderedSet() typedef 69 typedef typename Set::local_iterator It; in testUnorderedSet() typedef
|
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.assign/ |
D | source.pass.cpp | 137 using It = input_iterator<const CharT*>; in RunTestCase() typedef 150 using It = input_iterator<const CharT*>; in RunTestCase() typedef 161 using It = input_iterator<const CharT*>; in RunTestCase() typedef 184 using It = const char* const; in test_sfinae() typedef 189 using It = input_iterator<const char*>; in test_sfinae() typedef 201 using It = input_iterator<const char*, Traits>; in test_sfinae() typedef 206 using It = output_iterator<const char*>; in test_sfinae() typedef
|
/external/llvm/lib/Target/AMDGPU/ |
D | R600OptimizeVectorRegisters.cpp | 52 for (MachineRegisterInfo::def_instr_iterator It = MRI.def_instr_begin(Reg), in isImplicitlyDef() local 150 for (DenseMap<unsigned, unsigned>::iterator It = ToMerge->RegToChan.begin(), in tryMergeVector() local 190 for (DenseMap<unsigned, unsigned>::iterator It = RSI->RegToChan.begin(), in RebuildVector() local 219 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in RebuildVector() local 236 for (InstructionSetMap::iterator It = PreviousRegSeqByReg.begin(), in RemoveMI() local 241 for (InstructionSetMap::iterator It = PreviousRegSeqByUndefCount.begin(), in RemoveMI() local 267 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in areAllUsesSwizzeable() local 310 It = RSI.RegToChan.begin(), E = RSI.RegToChan.end(); It != E; ++It) { in trackRSI() local 339 It = MRI->def_instr_begin(Reg), E = MRI->def_instr_end(); in runOnMachineFunction() local
|
D | AMDILCFGStructurizer.cpp | 342 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in getSCCNum() local 350 LoopLandInfoMap::const_iterator It = LLInfoMap.find(LoopRep); in getLoopLandInfo() local 365 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in isRetiredBlock() local 401 int AMDGPUCFGStructurizer::countActiveBlock(MBBVector::const_iterator It, in countActiveBlock() 565 MachineBasicBlock::succ_iterator It = MBB->succ_begin(); in getFalseBranch() local 596 for (MachineBasicBlock::iterator It = MBB->begin(); It != MBB->end(); in getLastDebugLocInBB() local 607 MachineBasicBlock::reverse_iterator It = MBB->rbegin(); in getNormalBlockBranchInstr() local 616 for (MachineBasicBlock::reverse_iterator It = MBB->rbegin(), E = MBB->rend(); in getLoopendBlockBranchInstr() local 631 MachineBasicBlock::reverse_iterator It = MBB->rbegin(); in getReturnInstr() local 654 for (MachineBasicBlock::succ_iterator It = SrcMBB->succ_begin(), in cloneSuccessorList() local [all …]
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | BlotMapVector.h | 74 typename MapTy::iterator It = Map.find(Key); in find() local 81 typename MapTy::const_iterator It = Map.find(Key); in find() local 91 typename MapTy::iterator It = Map.find(Key); in blot() local
|
/external/libcxx/test/std/experimental/filesystem/class.path/path.itr/ |
D | iterator.pass.cpp | 40 using It = path::iterator; in checkIteratorConcepts() typedef 68 using It = path::iterator; in checkBeginEndBasic() typedef
|
/external/libcxx/test/std/containers/associative/ |
D | iterator_types.pass.cpp | 23 typedef typename Map::iterator It; in testMap() typedef 30 typedef typename Map::const_iterator It; in testMap() typedef 45 typedef typename Set::iterator It; in testSet() typedef
|
/external/clang/include/clang/AST/ |
D | DeclLookups.h | 27 StoredDeclsMap::iterator It, End; variable 36 all_lookups_iterator(StoredDeclsMap::iterator It, in all_lookups_iterator()
|
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ |
D | uninitialized_default_construct.pass.cpp | 61 using It = forward_iterator<ThrowsCounted*>; in test_ctor_throws() typedef 77 using It = forward_iterator<Counted*>; in test_counted() typedef 93 using It = forward_iterator<int*>; in test_value_initialized() typedef
|
D | uninitialized_default_construct_n.pass.cpp | 60 using It = forward_iterator<ThrowsCounted*>; in test_ctor_throws() typedef 76 using It = forward_iterator<Counted*>; in test_counted() typedef 94 using It = forward_iterator<int*>; in test_value_initialized() typedef
|
/external/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ |
D | uninitialized_value_construct.pass.cpp | 60 using It = forward_iterator<ThrowsCounted*>; in test_ctor_throws() typedef 76 using It = forward_iterator<Counted*>; in test_counted() typedef 92 using It = forward_iterator<int*>; in test_value_initialized() typedef
|
D | uninitialized_value_construct_n.pass.cpp | 59 using It = forward_iterator<ThrowsCounted*>; in test_ctor_throws() typedef 77 using It = forward_iterator<Counted*>; in test_counted() typedef 95 using It = forward_iterator<int*>; in test_value_initialized() typedef
|
/external/libcxx/test/std/iterators/iterator.primitives/iterator.traits/ |
D | const_pointer.pass.cpp | 29 typedef std::iterator_traits<const A*> It; in main() typedef
|
D | pointer.pass.cpp | 29 typedef std::iterator_traits<A*> It; in main() typedef
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | GetElementPtrTypeIterator.h | 33 static generic_gep_type_iterator begin(Type *Ty, ItTy It) { in begin() 39 static generic_gep_type_iterator end(ItTy It) { in end()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | LoopUnroll.cpp | 45 ValueToValueMapTy::iterator It = VMap.find(Op); in RemapInstruction() local 52 ValueToValueMapTy::iterator It = VMap.find(PN->getIncomingBlock(i)); in RemapInstruction() local 244 for (unsigned It = 1; It != Count; ++It) { in UnrollLoop() local 281 ValueToValueMapTy::iterator It = LastValueMap.find(Incoming); in UnrollLoop() local
|
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/ |
D | p1.cpp | 58 struct It { struct 59 int val; 60 operator int &() { return val; } in operator int&() 66 constexpr int operator*(const C::It &) { return 0; } in operator *()
|
/external/llvm/include/llvm/IR/ |
D | GetElementPtrTypeIterator.h | 37 ItTy It) { in begin() 45 static generic_gep_type_iterator end(ItTy It) { in end()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Options.h | 112 auto It = Options.find(&detail::OptionKey<ValT, Base, Mem>::ID); in get() local
|
/external/llvm/include/llvm/Support/ |
D | Options.h | 112 auto It = Options.find(&detail::OptionKey<ValT, Base, Mem>::ID); in get() local
|
/external/clang/unittests/Tooling/ |
D | TestVisitor.h | 138 It = ExpectedMatches.begin(), End = ExpectedMatches.end(); in ~ExpectedLocationVisitor() local 153 It = DisallowedMatches.begin(), End = DisallowedMatches.end(); in Match() local 160 It = ExpectedMatches.begin(), End = ExpectedMatches.end(); in Match() local
|