Searched refs:it (Results 1 - 25 of 565) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/LD/
H A DMergedStringTable.cpp19 string_map_iterator it, end = m_StringMap.end(); local
21 for (it = m_StringMap.begin(); it != end; ++it) {
22 it->setValue(offset);
23 offset += it->getKey().size() + 1;
30 string_map_iterator it, end = m_StringMap.end(); local
31 for (it = m_StringMap.begin(); it != end; ++it) {
[all...]
H A DBranchIslandFactory.cpp46 for (SectionData::iterator it = sd.begin(), ie = sd.end(); it != ie;
47 ++it) {
48 if ((*it).getOffset() + (*it).size() > group_end) {
49 Fragment* frag = (*it).getPrevNode();
55 group_end = (*it).getOffset() + m_MaxFwdBranchRange;
81 for (iterator it = begin(), ie = end(), prev = ie; it != ie;
82 prev = it,
[all...]
H A DStubFactory.cpp28 for (StubPoolType::iterator it = m_StubPool.begin(), ie = m_StubPool.end();
29 it != ie;
30 ++it)
31 delete (*it);
112 for (StubPoolType::const_iterator it = m_StubPool.begin(),
113 ie = m_StubPool.end(); it != ie; ++it) {
114 if ((*it)->isMyDuty(pReloc, pSource, pTargetSymValue))
115 return (*it);
121 for (StubPoolType::const_iterator it
[all...]
/frameworks/minikin/tests/unittest/
H A DBidiUtilsTest.cpp37 auto it = bidiText.begin(); local
38 EXPECT_NE(bidiText.end(), it);
39 EXPECT_EQ(Range(0, ltrLength), (*it).range);
40 EXPECT_FALSE((*it).isRtl);
41 ++it;
42 EXPECT_EQ(bidiText.end(), it);
46 auto it = bidiText.begin(); local
47 EXPECT_NE(bidiText.end(), it);
48 EXPECT_EQ(Range(0, ltrLength), (*it).range);
49 EXPECT_FALSE((*it)
55 auto it = bidiText.begin(); local
64 auto it = bidiText.begin(); local
73 auto it = bidiText.begin(); local
82 auto it = bidiText.begin(); local
96 auto it = bidiText.begin(); local
105 auto it = bidiText.begin(); local
114 auto it = bidiText.begin(); local
123 auto it = bidiText.begin(); local
132 auto it = bidiText.begin(); local
141 auto it = bidiText.begin(); local
158 auto it = bidiText.begin(); local
173 auto it = bidiText.begin(); local
188 auto it = bidiText.begin(); local
203 auto it = bidiText.begin(); local
218 auto it = bidiText.begin(); local
229 auto it = bidiText.begin(); local
246 auto it = bidiText.begin(); local
261 auto it = bidiText.begin(); local
276 auto it = bidiText.begin(); local
291 auto it = bidiText.begin(); local
306 auto it = bidiText.begin(); local
317 auto it = bidiText.begin(); local
335 auto it = bidiText.begin(); local
354 auto it = bidiText.begin(); local
373 auto it = bidiText.begin(); local
392 auto it = bidiText.begin(); local
411 auto it = bidiText.begin(); local
422 auto it = bidiText.begin(); local
440 auto it = bidiText.begin(); local
459 auto it = bidiText.begin(); local
478 auto it = bidiText.begin(); local
497 auto it = bidiText.begin(); local
516 auto it = bidiText.begin(); local
527 auto it = bidiText.begin(); local
[all...]
H A DStringPieceTest.cpp122 SplitIterator it(s, ',');
123 EXPECT_FALSE(it.hasNext());
127 SplitIterator it(s, ',');
128 EXPECT_TRUE(it.hasNext());
129 EXPECT_EQ("abcde", it.next());
130 EXPECT_FALSE(it.hasNext());
134 SplitIterator it(s, ',');
135 EXPECT_TRUE(it.hasNext());
136 EXPECT_EQ("a", it.next());
137 EXPECT_TRUE(it
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DSectionsCmd.cpp24 for (iterator it = begin(), ie = end(); it != ie; ++it) {
25 if (*it != NULL)
26 delete *it;
33 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
34 switch ((*it)->getKind()) {
39 (*it)
[all...]
H A DOutputSectDesc.cpp35 for (iterator it = begin(), ie = end(); it != ie; ++it) {
36 if (*it != NULL)
37 delete *it;
100 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
101 switch ((*it)->getKind()) {
105 (*it)
[all...]
/frameworks/av/media/libstagefright/
H A DFrameRenderTracker.cpp58 for (std::list<Info>::iterator it = mRenderQueue.begin();
59 it != mRenderQueue.end(); ++it) {
60 if (it->mGraphicBuffer->handle == buf->handle) {
61 renderInfo = it;
116 for (std::list<Info>::iterator it = mRenderQueue.begin();
117 it != mRenderQueue.end(); ) {
119 if (it->mIndex < 0) {
122 } else if (it->mFence != NULL) {
124 nsecs_t signalTime = it
[all...]
/frameworks/compile/mclinker/unittests/
H A DSymbolTableTest.cpp17 // create testee. modify it if need
37 mcld::SymbolTable<>::iterator it; local
38 it = m_pTestee->begin();
39 ASSERT_EQ(it, m_pTestee->end());
H A DStringTableTest.cpp18 // 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...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOTPLT.cpp34 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)
[all...]
/frameworks/base/core/java/android/util/
H A DFastImmutableArraySet.java26 * so it is worth copying the contents of the set to an array when iterating over it
40 FastIterator<T> it = mIterator;
41 if (it == null) {
42 it = new FastIterator<T>(mContents);
43 mIterator = it;
45 it.mIndex = 0;
47 return it;
/frameworks/support/navigation/testing/ktx/src/main/java/androidx/navigation/testing/
H A DTestNavigator.kt25 get() = mBackStack.map { Pair(it.first!!, it.second) }
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.cpp25 for (SectionData::iterator it = sectData->begin(),
26 end = sectData->end(); it != end; ++it) {
27 if (it->getKind() == Fragment::Region) {
28 return static_cast<RegionFragment*>(&*it);
45 for (ARMInputExMap::iterator it = exMap->begin(), end = exMap->end();
46 it != end; ++it) {
47 ARMExSectionTuple* exTuple = it->second.get();
54 for (Module::obj_iterator it
82 ARMInputExMap::iterator it = exMap->begin(); local
[all...]
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DDataBinderWriter.kt31 layoutBinders.groupBy{it.layoutname }.forEach {
32 val firstVal = it.value[0]
34 if (it.value.size == 1) {
45 it.value.forEach {
46 block("if (\"${it.tag}_0\".equals(tag))") {
47 if (it.isMerge) {
48 tab("return new ${it.`package`}.${it.implementationName}(bindingComponent, new android.view.View[]{view});")
50 tab("return new ${it.`package`}.${it
[all...]
H A DLayoutBinderWriter.kt47 fun String.stripNonJava() = this.split("[^a-zA-Z0-9]".toRegex()).map{ it.trim() }.joinToCamelCaseAsVar()
79 Scope.values().forEach { usedFieldNames[it] = hashSetOf<String>() }
263 flatMap { it.bindings }.
264 firstOrNull { it.bindingAdapterInstanceClass != null }?.bindingAdapterInstanceClass
267 flatMap { it.inverseBindings }.
268 firstOrNull { it.bindingAdapterInstanceClass != null }?.bindingAdapterInstanceClass
276 if (it.value != 0L) {
277 cb(getWordSuffix(it.index), buckets[it.index])
333 layoutBinder.bindingTargets.filter { it
[all...]
/frameworks/base/tools/streaming_proto/
H A DErrors.cpp68 for (vector<Error>::const_iterator it = m_errors.begin(); it != m_errors.end(); it++) {
69 if (it->filename == UNKNOWN_FILE) {
70 fprintf(stderr, "%s", it->message.c_str());
71 } else if (it->lineno == UNKNOWN_LINE) {
72 fprintf(stderr, "%s:%s", it->filename.c_str(), it->message.c_str());
74 fprintf(stderr, "%s:%d:%s", it->filename.c_str(), it
[all...]
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
H A DQueryMethod.kt36 if (it.text.trim() == "?") {
37 Pair(it, parameters.firstOrNull())
38 } else if (it.text.startsWith(":")) {
39 val subName = it.text.substring(1)
40 Pair(it, parameters.firstOrNull {
41 it.sqlName == subName
44 Pair(it, null)
/frameworks/av/include/media/
H A DCounterMetric.h79 for (auto it = values_.begin(); it != values_.end(); it++) {
80 function(it->first, it->second);
/frameworks/av/media/libmedia/include/media/
H A DCounterMetric.h79 for (auto it = values_.begin(); it != values_.end(); it++) {
80 function(it->first, it->second);
/frameworks/av/media/libstagefright/foundation/
H A DAAtomizer.cpp43 List<AString>::iterator it = entry.begin(); local
44 while (it != entry.end()) {
45 if ((*it) == name) {
46 return (*it).c_str();
48 ++it;
/frameworks/base/core/tests/coretests/src/android/util/
H A DRecurrenceRuleTest.java60 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator();
61 assertTrue(it.hasNext());
64 ZonedDateTime.parse("2015-12-14T00:00:00.00Z")), it.next());
65 assertTrue(it.hasNext());
68 ZonedDateTime.parse("2015-11-14T00:00:00.00Z")), it.next());
80 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator();
81 assertTrue(it.hasNext());
84 ZonedDateTime.parse("2010-11-20T00:11:00.00Z")), it.next());
85 assertTrue(it.hasNext());
88 ZonedDateTime.parse("2010-11-17T00:11:00.00Z")), it
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOTPLT.cpp45 iterator it = begin(); local
48 ++it;
52 for (; it != end(); ++it) {
53 llvm::cast<HexagonGOTEntry>(*it).setValue(pPLT.addr());
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOTPLT.cpp42 iterator it = begin(); local
45 ++it;
48 for (; it != end(); ++it) {
49 llvm::cast<X86_32GOTEntry>(*it).setValue(plt_addr + 6);
75 iterator it = begin(); local
78 ++it;
81 for (; it != end(); ++it) {
82 llvm::cast<X86_64GOTEntry>(*it)
[all...]
/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DCollection.h94 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
128 for (it
[all...]

Completed in 637 milliseconds

1234567891011>>