Home
last modified time | relevance | path

Searched defs:It (Results 1 – 25 of 182) sorted by relevance

12345678

/external/libcxx/test/std/iterators/iterator.primitives/iterator.basic/
Diterator.pass.cpp32 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/
Dtypes.pass.cpp69 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/
Dsource.pass.cpp70 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/
Dfor_codegen.cpp436 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/
Diterator_difference_type.pass.cpp23 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/
Dsource.pass.cpp137 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/
DR600OptimizeVectorRegisters.cpp52 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
DAMDILCFGStructurizer.cpp342 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/
DBlotMapVector.h74 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/
Diterator.pass.cpp40 using It = path::iterator; in checkIteratorConcepts() typedef
68 using It = path::iterator; in checkBeginEndBasic() typedef
/external/libcxx/test/std/containers/associative/
Diterator_types.pass.cpp23 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/
DDeclLookups.h27 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/
Duninitialized_default_construct.pass.cpp61 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
Duninitialized_default_construct_n.pass.cpp60 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/
Duninitialized_value_construct.pass.cpp60 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
Duninitialized_value_construct_n.pass.cpp59 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/
Dconst_pointer.pass.cpp29 typedef std::iterator_traits<const A*> It; in main() typedef
Dpointer.pass.cpp29 typedef std::iterator_traits<A*> It; in main() typedef
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DGetElementPtrTypeIterator.h33 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/
DLoopUnroll.cpp45 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/
Dp1.cpp58 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/
DGetElementPtrTypeIterator.h37 ItTy It) { in begin()
45 static generic_gep_type_iterator end(ItTy It) { in end()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DOptions.h112 auto It = Options.find(&detail::OptionKey<ValT, Base, Mem>::ID); in get() local
/external/llvm/include/llvm/Support/
DOptions.h112 auto It = Options.find(&detail::OptionKey<ValT, Base, Mem>::ID); in get() local
/external/clang/unittests/Tooling/
DTestVisitor.h138 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

12345678