Home
last modified time | relevance | path

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

12345678910>>...33

/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/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/llvm-project/libcxx/test/std/iterators/iterator.primitives/iterator.basic/
Diterator.pass.cpp33 typedef std::iterator<std::forward_iterator_tag, T> It; in test2() typedef
45 typedef std::iterator<std::bidirectional_iterator_tag, T, short> It; in test3() typedef
57 typedef std::iterator<std::random_access_iterator_tag, T, int, const T*> It; in test4() typedef
69 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/input.output/filesystems/class.path/path.member/path.construct/
Dsource.pass.cpp69 using It = input_iterator<const CharT*>; in RunTestCaseImpl() typedef
75 using It = input_iterator<const CharT*>; in RunTestCaseImpl() typedef
93 using It = const char* const; in test_sfinae() typedef
97 using It = input_iterator<const char*>; in test_sfinae() typedef
108 using It = input_iterator<const char*, Traits>; in test_sfinae() typedef
112 using It = output_iterator<const char*>; in test_sfinae() typedef
/external/llvm-project/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/
Dtypes.pass.cpp70 typedef std::move_iterator<T> It; in main() typedef
75 typedef std::move_iterator<T> It; in main() typedef
82 typedef std::move_iterator<T> It; in main() typedef
87 typedef std::move_iterator<T> It; in main() typedef
92 typedef std::move_iterator<T> It; in main() typedef
/external/llvm-project/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/
Dsource.pass.cpp71 using It = input_iterator<const CharT*>; in RunTestCaseImpl() typedef
77 using It = input_iterator<const CharT*>; in RunTestCaseImpl() typedef
95 using It = const char* const; in test_sfinae() typedef
99 using It = input_iterator<const char*>; in test_sfinae() typedef
110 using It = input_iterator<const char*, Traits>; in test_sfinae() typedef
114 using It = output_iterator<const char*>; in test_sfinae() typedef
/external/llvm-project/clang/test/OpenMP/
Dfor_codegen.cpp643 struct It { struct
644 It() : p(0) {} in It() argument
650 ~It() {} in ~It() argument
652 It(T *p) : p(p) {} in It() function
658 It &operator++() { ++p; return *this; } in operator ++() argument
659 It &operator--() { --p; return *this; } in operator --() argument
660 It &operator+=(unsigned n) { p += n; return *this; } in operator +=() argument
661 It &operator-=(unsigned n) { p -= n; return *this; } in operator -=() argument
667 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/llvm-project/libcxx/test/std/containers/unord/
Diterator_difference_type.pass.cpp22 typedef typename Map::iterator It; in testUnorderedMap() typedef
29 typedef typename Map::const_iterator It; in testUnorderedMap() typedef
36 typedef typename Map::local_iterator It; in testUnorderedMap() typedef
43 typedef typename Map::const_local_iterator It; in testUnorderedMap() typedef
60 typedef typename Set::iterator It; in testUnorderedSet() typedef
68 typedef typename Set::local_iterator It; in testUnorderedSet() typedef
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-loop-convert-extra.cpp209 for (S::const_iterator It = S_const.begin(); It != S_const.end(); ++It) { in refs_and_vals() local
220 for (S::iterator It = Ss.begin(), E = Ss.end(); It != E; ++It) { in refs_and_vals() local
231 for (S::iterator It = Ss.begin(), E = Ss.end(); It != E; ++It) { in refs_and_vals() local
243 for (dependent<int>::iterator It = Dep.begin(), E = Dep.end(); It != E; ++It) { in refs_and_vals() local
374 for (S::iterator It = MAXs.begin(), E = MAXs.end(); It != E; ++It) { in macroConflict() local
383 for (S::const_iterator It = MAXs.begin(), E = MAXs.end(); It != E; ++It) { in macroConflict() local
393 for (T::iterator It = DEFs.begin(), E = DEFs.end(); It != E; ++It) { in macroConflict() local
406 for (T::iterator It = ints.begin(), E = ints.end(); It != E; ++It) { in keywordConflict() local
414 for (U::iterator It = __FUNCTION__s.begin(), E = __FUNCTION__s.end(); in keywordConflict() local
427 for (T::iterator It = Vals.begin(), E = Vals.end(); It != E; ++It) in typeConflict() local
[all …]
Dmodernize-loop-convert-basic.cpp242 for (T::iterator It = Tt.begin(), E = Tt.end(); It != E; ++It) { in f() local
250 for (T::iterator It = Pt->begin(), E = Pt->end(); It != E; ++It) { in f() local
258 for (S::iterator It = Ss.begin(), E = Ss.end(); It != E; ++It) { in f() local
266 for (S::iterator It = Ps->begin(), E = Ps->end(); It != E; ++It) { in f() local
273 for (S::const_iterator It = Ss.cbegin(), E = Ss.cend(); It != E; ++It) { in f() local
280 for (S::iterator It = Ss.begin(), E = Ss.end(); It != E; ++It) { in f() local
287 for (S::iterator It = Ss.begin(), E = Ss.end(); It != E; ++It) { in f() local
294 for (S::iterator It = Ss.begin(), E = Ss.end(); It != E; ++It) { in f() local
301 for (S::iterator It = Ss.begin(), E = Ss.end(); It != E; ++It) { in f() local
309 for (U::iterator It = Uu.begin(), E = Uu.end(); It != E; ++It) { in f() local
[all …]
/external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/
Dsource.pass.cpp136 using It = input_iterator<const CharT*>; in RunTestCase() typedef
149 using It = input_iterator<const CharT*>; in RunTestCase() typedef
160 using It = input_iterator<const CharT*>; in RunTestCase() typedef
183 using It = const char* const; in test_sfinae() typedef
188 using It = input_iterator<const char*>; in test_sfinae() typedef
200 using It = input_iterator<const char*, Traits>; in test_sfinae() typedef
205 using It = output_iterator<const char*>; in test_sfinae() typedef
/external/llvm-project/libcxx/test/std/containers/sequences/list/list.cons/
Dinput_iterator.pass.cpp92 using It = random_access_iterator<int*>; in test_emplacable_concept() typedef
110 using It = input_iterator<int*>; in test_emplacable_concept() typedef
139 using It = random_access_iterator<int*>; in test_emplacable_concept_with_alloc() typedef
158 using It = input_iterator<int*>; in test_emplacable_concept_with_alloc() typedef
186 using It = forward_iterator<int*>; in test_ctor_under_alloc() typedef
198 using It = input_iterator<int*>; in test_ctor_under_alloc() typedef
217 using It = forward_iterator<int*>; in test_ctor_under_alloc_with_alloc() typedef
231 using It = input_iterator<int*>; in test_ctor_under_alloc_with_alloc() typedef
/external/libcxx/test/std/containers/sequences/list/list.cons/
Dinput_iterator.pass.cpp92 using It = random_access_iterator<int*>; in test_emplacable_concept() typedef
110 using It = input_iterator<int*>; in test_emplacable_concept() typedef
139 using It = random_access_iterator<int*>; in test_emplacable_concept_with_alloc() typedef
158 using It = input_iterator<int*>; in test_emplacable_concept_with_alloc() typedef
186 using It = forward_iterator<int*>; in test_ctor_under_alloc() typedef
198 using It = input_iterator<int*>; in test_ctor_under_alloc() typedef
217 using It = forward_iterator<int*>; in test_ctor_under_alloc_with_alloc() typedef
231 using It = input_iterator<int*>; in test_ctor_under_alloc_with_alloc() typedef
/external/llvm-project/libcxx/test/std/input.output/filesystems/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-project/clang/lib/AST/Interp/
DRecord.cpp31 auto It = FieldMap.find(FD); in getField() local
37 auto It = BaseMap.find(FD); in getBase() local
43 auto It = VirtualBaseMap.find(FD); in getVirtualBase() local
/external/llvm-project/llvm/include/llvm/ADT/
DCoalescingBitVector.h86 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count() local
107 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set() local
120 const auto It = Intervals.find(Index); in test() local
135 auto It = Intervals.find(Index); in reset() local
164 for (auto It = RHS.Intervals.begin(), End = RHS.Intervals.end(); variable
200 auto It = Intervals.find(OlapStart); in intersectWithComplement() local
350 auto It = const_iterator(UnderlyingIt); in find() local
370 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; in print() local
/external/llvm-project/llvm/tools/llvm-mca/
DCodeRegion.cpp43 auto It = ActiveRegions.find(Description); in beginRegion() local
76 auto It = ActiveRegions.begin(); in endRegion() local
90 auto It = ActiveRegions.find(Description); in endRegion() local
/external/llvm-project/llvm/unittests/Support/
DSuffixTreeTest.cpp26 for (auto It = ST.begin(); It != ST.end(); It++) in TEST() local
48 for (auto It = ST.begin(); It != ST.end(); It++) in TEST() local
86 for (auto It = ST.begin(); It != ST.end(); It++) in TEST() local
112 for (auto It = ST.begin(); It != ST.end(); It++) in TEST() local
125 for (auto It = ST.begin(); It != ST.end(); It++) in TEST() local
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerDataFlowTrace.h52 auto It = Functions.find(FunctionId); in GetCounter() local
61 auto It = Functions.find(FunctionId); in GetNumberOfBlocks() local
68 auto It = Functions.find(FunctionId); in GetNumberOfCoveredBlocks() local
121 auto It = Traces.find(InputSha1); in Get() local
/external/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerDataFlowTrace.h52 auto It = Functions.find(FunctionId); in GetCounter() local
61 auto It = Functions.find(FunctionId); in GetNumberOfBlocks() local
68 auto It = Functions.find(FunctionId); in GetNumberOfCoveredBlocks() local
121 auto It = Traces.find(InputSha1); in Get() local
/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
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local
/external/llvm-project/llvm/include/llvm/XRay/
DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local

12345678910>>...33