HomeSort by relevance Sort by last modified time
    Searched refs:it (Results 126 - 150 of 10401) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_iterlen.py 8 The desired invariant is: len(it)==len(list(it)).
13 but it=iter(xrange(10)) starts at ten, and then goes to nine after it.next().
29 the new items. If it shrinks to a point before the most recent iteration,
58 # don't rely on it in your own programs
66 it = self.it
68 self.assertEqual(len(it), i)
69 it.next(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_iterlen.py 8 The desired invariant is: len(it)==len(list(it)).
13 but it=iter(xrange(10)) starts at ten, and then goes to nine after it.next().
29 the new items. If it shrinks to a point before the most recent iteration,
58 # don't rely on it in your own programs
66 it = self.it
68 self.assertEqual(len(it), i)
69 it.next(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_iterlen.py 8 The desired invariant is: len(it)==len(list(it)).
13 but it=iter(xrange(10)) starts at ten, and then goes to nine after it.next().
29 the new items. If it shrinks to a point before the most recent iteration,
58 # don't rely on it in your own programs
66 it = self.it
68 self.assertEqual(len(it), i)
69 it.next(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_iterlen.py 8 The desired invariant is: len(it)==len(list(it)).
13 but it=iter(xrange(10)) starts at ten, and then goes to nine after it.next().
29 the new items. If it shrinks to a point before the most recent iteration,
58 # don't rely on it in your own programs
66 it = self.it
68 self.assertEqual(len(it), i)
69 it.next(
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
Scaling.h 23 * NOTE It is assumed that the matrix does not have empty row or column,
41 * \tparam _MatrixType the type of the matrix. It should be a real square sparsematrix
95 for (typename MatrixType::InnerIterator it(m_matrix, k); it; ++it)
97 if ( Dr(it.row()) < abs(it.value()) )
98 Dr(it.row()) = abs(it.value());
100 if ( Dc(it.col()) < abs(it.value())
    [all...]
  /external/vulkan-validation-layers/layers/
vk_layer_table.cpp 31 device_table_map::const_iterator it = tableMap.find((void *)key); local
32 assert(it != tableMap.end() && "Not able to find device dispatch entry");
33 return it->second;
38 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key); local
39 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
40 return it->second;
44 device_table_map::const_iterator it = map.find((void *)key); local
45 if (it != map.end()) {
46 delete it->second;
47 map.erase(it);
52 instance_table_map::const_iterator it = map.find((void *)key); local
65 device_table_map::const_iterator it = map.find((void *)key); local
72 instance_table_map::const_iterator it = map.find((void *)key); local
105 instance_table_map::const_iterator it = map.find((void *)key); local
130 device_table_map::const_iterator it = map.find((void *)key); local
    [all...]
  /system/update_engine/payload_generator/
graph_utils.cc 42 for (vector<Extent>::const_iterator it = extents.begin();
43 it != extents.end(); ++it) {
44 if (it->start_block() != kSparseHole)
45 weight += it->num_blocks();
68 for (vector<Extent>::const_iterator it = extents.begin(), e = extents.end();
69 it != e; ++it) {
70 const Extent& extent = *it;
81 for (Vertex::EdgeMap::iterator it = edge_map->begin()
    [all...]
  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 34 for (changeset_ty::const_iterator it = S.begin(),
35 ie = S.end(); it != ie; ++it, ++idx)
36 ((idx < N) ? LHS : RHS).insert(*it);
60 for (changesetlist_ty::const_iterator it = Sets.begin(),
61 ie = Sets.end(); it != ie; ++it)
62 Split(*it, SplitSets);
73 for (changesetlist_ty::const_iterator it = Sets.begin(),
74 ie = Sets.end(); it != ie; ++it)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
DeltaAlgorithm.cpp 34 for (changeset_ty::const_iterator it = S.begin(),
35 ie = S.end(); it != ie; ++it, ++idx)
36 ((idx < N) ? LHS : RHS).insert(*it);
60 for (changesetlist_ty::const_iterator it = Sets.begin(),
61 ie = Sets.end(); it != ie; ++it)
62 Split(*it, SplitSets);
73 for (changesetlist_ty::const_iterator it = Sets.begin(),
74 ie = Sets.end(); it != ie; ++it)
    [all...]
  /external/webrtc/webrtc/video/
encoder_state_feedback.cc 69 SsrcEncoderMap::iterator it = encoders_.begin(); local
70 while (it != encoders_.end()) {
71 if (it->second == encoder) {
72 encoders_.erase(it++);
74 ++it;
85 SsrcEncoderMap::iterator it = encoders_.find(ssrc); local
86 if (it == encoders_.end())
89 it->second->OnReceivedIntraFrameRequest(ssrc);
94 SsrcEncoderMap::iterator it = encoders_.find(ssrc); local
95 if (it == encoders_.end()
103 SsrcEncoderMap::iterator it = encoders_.find(ssrc); local
113 SsrcEncoderMap::iterator it = encoders_.find(old_ssrc); local
    [all...]
  /external/webrtc/webrtc/base/
sigslot.h 14 // all of the thread safety support on platforms where it is
30 // compilers do this by default, but you may need to define it
34 // Unix/Linux/BSD, etc. - If you're using gcc, it is assumed that you have Posix threads
79 // using the same threading requirements. E.g. it is possible to connect a
82 // If has_slots is single threaded the user must ensure that it is not trying
431 const_iterator it = hs.m_senders.begin(); local
434 while(it != itEnd)
436 (*it)->slot_duplicate(&hs, this);
437 m_senders.insert(*it);
438 ++it;
462 const_iterator it = m_senders.begin(); local
493 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
513 typename connections_list::const_iterator it = m_connected_slots.begin(); local
521 typename connections_list::const_iterator it = m_connected_slots.begin(); local
539 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
556 typename connections_list::iterator it = m_connected_slots.begin(); local
576 typename connections_list::iterator it = m_connected_slots.begin(); local
597 typename connections_list::iterator it = m_connected_slots.begin(); local
630 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
645 typename connections_list::iterator it = m_connected_slots.begin(); local
667 typename connections_list::const_iterator it = m_connected_slots.begin(); local
675 typename connections_list::const_iterator it = m_connected_slots.begin(); local
693 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
710 typename connections_list::iterator it = m_connected_slots.begin(); local
730 typename connections_list::iterator it = m_connected_slots.begin(); local
769 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
784 typename connections_list::iterator it = m_connected_slots.begin(); local
806 typename connections_list::const_iterator it = m_connected_slots.begin(); local
814 typename connections_list::const_iterator it = m_connected_slots.begin(); local
832 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
849 typename connections_list::iterator it = m_connected_slots.begin(); local
869 typename connections_list::iterator it = m_connected_slots.begin(); local
907 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
922 typename connections_list::iterator it = m_connected_slots.begin(); local
944 typename connections_list::const_iterator it = m_connected_slots.begin(); local
952 typename connections_list::const_iterator it = m_connected_slots.begin(); local
970 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
987 typename connections_list::iterator it = m_connected_slots.begin(); local
1007 typename connections_list::iterator it = m_connected_slots.begin(); local
1045 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
1060 typename connections_list::iterator it = m_connected_slots.begin(); local
1082 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1090 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1108 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
1125 typename connections_list::iterator it = m_connected_slots.begin(); local
1145 typename connections_list::iterator it = m_connected_slots.begin(); local
1185 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
1200 typename connections_list::iterator it = m_connected_slots.begin(); local
1222 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1230 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1248 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
1265 typename connections_list::iterator it = m_connected_slots.begin(); local
1285 typename connections_list::iterator it = m_connected_slots.begin(); local
1325 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
1340 typename connections_list::iterator it = m_connected_slots.begin(); local
1362 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1370 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1388 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
1405 typename connections_list::iterator it = m_connected_slots.begin(); local
1425 typename connections_list::iterator it = m_connected_slots.begin(); local
1465 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
1480 typename connections_list::iterator it = m_connected_slots.begin(); local
1502 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1510 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1528 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
1545 typename connections_list::iterator it = m_connected_slots.begin(); local
1565 typename connections_list::iterator it = m_connected_slots.begin(); local
1606 typename connections_list::const_iterator it = s.m_connected_slots.begin(); local
1621 typename connections_list::iterator it = m_connected_slots.begin(); local
1643 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1651 typename connections_list::const_iterator it = m_connected_slots.begin(); local
1669 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
1686 typename connections_list::iterator it = m_connected_slots.begin(); local
1706 typename connections_list::iterator it = m_connected_slots.begin(); local
2211 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2228 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2275 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2292 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2340 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2357 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2406 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2423 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2473 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2490 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2544 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2562 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2618 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2636 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2693 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2711 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2769 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
2787 typename connections_list::const_iterator itNext, it = m_connected_slots.begin(); local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
gUnitTestResult.stg 35 <failure:{<it.header>
36 expected: <it.expectedResult>
37 actual: <it.actualResult>
42 <invalid:{<it.header>
43 invalid input: <it.actual>
  /external/webrtc/talk/app/webrtc/
jsepicecandidate.cc 78 for (std::vector<JsepIceCandidate*>::iterator it = candidates_.begin();
79 it != candidates_.end(); ++it) {
80 delete *it;
87 for (std::vector<JsepIceCandidate*>::const_iterator it = candidates_.begin();
88 it != candidates_.end(); ++it) {
89 if ((*it)->sdp_mid() == candidate->sdp_mid() &&
90 (*it)->sdp_mline_index() == candidate->sdp_mline_index() &&
91 (*it)->candidate().IsEquivalent(candidate->candidate()))
    [all...]
  /external/webrtc/webrtc/
common.h 74 for (OptionMap::iterator it = options_.begin();
75 it != options_.end(); ++it) {
76 delete it->second;
118 OptionMap::const_iterator it = options_.find(identifier<T>()); local
119 if (it != options_.end()) {
120 const T* t = static_cast<Option<T>*>(it->second)->value;
130 BaseOption*& it = options_[identifier<T>()]; local
131 delete it;
132 it = new Option<T>(value)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
delay_peak_detector.cc 51 std::list<Peak>::const_iterator it; local
52 for (it = peak_history_.begin(); it != peak_history_.end(); ++it) {
53 max_height = std::max(max_height, it->peak_height_packets);
60 std::list<Peak>::const_iterator it; local
61 for (it = peak_history_.begin(); it != peak_history_.end(); ++it) {
62 max_period = std::max(max_period, it->period_ms)
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.cpp 34 for (iterator it = begin(), ie = end(); it != ie; ++it, ++buffer) {
35 GOTPLTEntry* got = &(llvm::cast<GOTPLTEntry>((*it)));
55 iterator it = begin(); local
56 llvm::cast<GOTPLTEntry>(*it++).setValue(0); // PLT lazy resolver
57 llvm::cast<GOTPLTEntry>(*it++).setValue(0); // Module pointer
59 for (; it != end(); ++it)
60 llvm::cast<GOTPLTEntry>(*it).setValue(pltAddr)
    [all...]
  /frameworks/compile/mclinker/unittests/
StringTableTest.cpp 18 // create testee. modify it if need
56 StringTable::iterator it = m_pTestee->begin(); local
57 ASSERT_STREQ(*it, "Hello");
58 ++it;
59 ASSERT_STREQ(*it, "World");
60 ++it;
61 ASSERT_STREQ(*it, "Media");
62 ++it;
63 ASSERT_STREQ(*it, "Tek");
64 ++it;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
148 for (typename inode::iterator it =
150 it != static_cast<inode_pointer>(p_nd)->end();
151 ++it)
153 node_pointer p_child =* it;
168 erase(const_iterator it)
172 if (it == end()
249 iterator it = begin(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
148 for (typename inode::iterator it =
150 it != static_cast<inode_pointer>(p_nd)->end();
151 ++it)
153 node_pointer p_child =* it;
168 erase(const_iterator it)
172 if (it == end()
249 iterator it = begin(); local
    [all...]
  /external/webrtc/webrtc/test/
histogram.cc 45 auto it = histograms_.find(name); local
46 return reinterpret_cast<Histogram*>(&it->second);
55 auto it = histograms_.find(name); local
56 return reinterpret_cast<Histogram*>(&it->second);
73 const auto it = histograms_.find(name); local
74 if (it == histograms_.end()) {
77 return it->second.last_;
82 const auto it = histograms_.find(name); local
83 if (it == histograms_.end()) {
86 return it->second.total_
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Collection.h 64 * It also set the key as the unique identifier of the policy element.
94 CollectionConstIterator it = (*this).find(key); local
95 return (it == (*this).end()) ? NULL : it->second;
112 CollectionConstIterator it; local
113 for (it = (*this).begin(); it != (*this).end(); ++it) {
114 T *element = it->second;
127 CollectionIterator it; local
    [all...]
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
arguments_and_options.h 46 const auto &it = mOptions.find(optionName); local
47 ASSERT(it != mOptions.end());
48 return it->second;
52 const auto &it = mArguments.find(name); local
53 return it != mArguments.end() && !it->second.empty();
57 const auto &it = mArguments.find(name); local
58 ASSERT(it != mArguments.end() && !it->second.empty());
59 return it->second.front()
63 const auto &it = mArguments.find(name); local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
armv8-a-it-bad.s 5 @ Wide instruction in IT block is deprecated.
6 it eq label
9 @ This IT block is not deprecated.
10 it eq label
13 @ IT block of more than one instruction is deprecated.
18 @ Even for auto IT blocks
24 @ This automatic IT block is valid
34 @ Test automatic IT block generation at end of a file.
39 it eq label
42 it e label
45 it eq label
48 it eq label
51 it eq label
54 it eq label
57 it eq label
60 it eq label
64 it eq label
67 it eq label
71 it eq label
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_docpagedata.cpp 39 for (auto& it : m_PatternMap)
40 delete it.second;
43 for (auto& it : m_FontMap)
44 delete it.second;
47 for (auto& it : m_ColorSpaceMap)
48 delete it.second;
63 for (auto& it : m_PatternMap) {
64 CPDF_CountedPattern* ptData = it.second;
71 for (auto& it : m_PatternMap) {
72 CPDF_CountedPattern* ptData = it.second
126 auto it = m_FontMap.find(pFontDict); local
275 auto it = m_ColorSpaceMap.find(pCSObj); local
336 auto it = m_PatternMap.find(pPatternObj); local
395 auto it = m_ImageMap.find(dwStreamObjNum); local
406 auto it = m_ImageMap.find(dwStreamObjNum); local
442 auto it = m_IccProfileMap.find(pProfileStream); local
450 auto it = m_FontFileMap.find(pFontStream); local
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/transformations/ast/body/
AnnotationMemberDeclarationTransformationsTest.java 16 * JavaParser is distributed in the hope that it will be useful,
117 AnnotationMemberDeclaration it = consider("int foo();"); local
118 it.addAnnotation("myAnno");
119 assertTransformedToString("@myAnno()" + EOL + "int foo();", it);
124 AnnotationMemberDeclaration it = consider("int foo();"); local
125 it.addAnnotation("myAnno");
126 it.addAnnotation("myAnno2");
127 assertTransformedToString("@myAnno()" + EOL + "@myAnno2()" + EOL + "int foo();", it);
132 AnnotationMemberDeclaration it = consider("@myAnno int foo();"); local
133 it.getAnnotations().remove(0)
139 AnnotationMemberDeclaration it = consider("@myAnno" + EOL + "int foo();"); local
146 AnnotationMemberDeclaration it = consider("@myAnno int foo();"); local
155 AnnotationMemberDeclaration it = consider("int foo();"); local
163 AnnotationMemberDeclaration it = consider("\/** Cool this annotation!*\/ int foo();"); local
170 AnnotationMemberDeclaration it = consider("\/** Cool this annotation!*\/ int foo();"); local
    [all...]

Completed in 2262 milliseconds

1 2 3 4 56 7 8 91011>>