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

<<11121314151617181920>>

  /external/parameter-framework/upstream/parameter/
SyncerSet.cpp 63 SyncerSetConstIterator it; local
65 for (it = _syncerSet.begin(); it != _syncerSet.end(); ++it) {
67 ISyncer *pSyncer = *it;
  /external/pdfium/core/fpdfapi/render/
cpdf_docrenderdata.cpp 33 for (auto it = m_Type3FaceMap.begin(); it != m_Type3FaceMap.end();) {
34 auto curr_it = it++;
40 for (auto it = m_TransferFuncMap.begin(); it != m_TransferFuncMap.end();) {
41 auto curr_it = it++;
49 auto it = m_Type3FaceMap.find(pFont); local
50 if (it != m_Type3FaceMap.end())
51 return it->second;
59 auto it = m_Type3FaceMap.find(pFont) local
128 auto it = m_TransferFuncMap.find(pObj); local
    [all...]
  /frameworks/av/media/libmedia/include/media/
CounterMetric.h 79 for (auto it = values_.begin(); it != values_.end(); it++) {
80 function(it->first, it->second);
  /frameworks/av/media/libstagefright/foundation/
AAtomizer.cpp 43 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/
RecurrenceRuleTest.java 60 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
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(); local
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.next())
101 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
115 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
125 final Iterator<Range<ZonedDateTime>> it = r.cycleIterator(); local
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOTPLT.cpp 45 iterator it = begin(); local
48 ++it;
52 for (; it != end(); ++it) {
53 llvm::cast<HexagonGOTEntry>(*it).setValue(pPLT.addr());
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
info_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
76 for (typename Other_Map_Type::const_iterator it = other.begin();
77 it != other.end(); ++it)
79 key_const_reference r_key =(key_const_reference)PB_DS_V2F(*it);
88 if (p_mapped_value->second != it->second)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
info_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
76 for (typename Other_Map_Type::const_iterator it = other.begin();
77 it != other.end(); ++it)
79 key_const_reference r_key =(key_const_reference)PB_DS_V2F(*it);
88 if (p_mapped_value->second != it->second)
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
compact_ids_pass.cpp 36 auto it = result_id_mapping.find(id);
37 if (it == result_id_mapping.end()) {
41 it = insertion_result.first;
44 if (id != it->second) {
46 id = it->second;
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 72 Iterator<Integer> it = col.iterator(); local
74 while (it.hasNext()) {
75 ss.add(it.next());
77 it = ss.iterator();
78 for (int counter = 0; it.hasNext(); counter++) {
79 int nextValue = it.next().intValue();
94 for (int counter = 0; it.hasNext(); counter++) {
97 objArray[counter] == it.next());
103 for (int counter = 0; it.hasNext(); counter++) {
106 objArray[counter] == it.next())
    [all...]
  /external/compiler-rt/lib/builtins/arm/
comparesf2.S 53 // effect this at all, but it *does* make sure that the C flag is clear for
59 it ne
66 it pl
79 it lo
86 it hi
90 // 0 if a >= b. All that remains to be done is to set it to 1 if a > b.
93 it ne
117 it ne
119 it pl
121 it l
    [all...]
  /external/webrtc/webrtc/voice_engine/
shared_data.cc 76 ChannelManager::Iterator it(&_channelManager);
79 for (ChannelManager::Iterator it(&_channelManager); it.IsValid();
80 it.Increment()) {
81 if (it.GetChannel()->Sending())
89 ChannelManager::Iterator it(&_channelManager);
92 for (ChannelManager::Iterator it(&_channelManager); it.IsValid();
93 it.Increment()) {
94 if (it.GetChannel()->Playing()
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOTPLT.cpp 42 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).setValue(plt_addr + 6)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 72 Iterator<Integer> it = col.iterator(); local
74 while (it.hasNext()) {
75 ss.add(it.next());
77 it = ss.iterator();
78 for (int counter = 0; it.hasNext(); counter++) {
79 int nextValue = it.next().intValue();
94 for (int counter = 0; it.hasNext(); counter++) {
97 objArray[counter] == it.next());
103 for (int counter = 0; it.hasNext(); counter++) {
106 objArray[counter] == it.next())
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue22794.go 9 type it struct { type
15 i1 := it{Floats: true}
16 if i1.floats { // ERROR "(type it .* field or method floats, but does have Floats)"
18 i2 := &it{floats: false} // ERROR "(but does have Floats)"
19 _ = &it{InneR: "foo"} // ERROR "(but does have inner)"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue22794.go 9 type it struct { type
15 i1 := it{Floats: true}
16 if i1.floats { // ERROR "(type it .* field or method floats, but does have Floats)"
18 i2 := &it{floats: false} // ERROR "(but does have Floats)"
19 _ = &it{InneR: "foo"} // ERROR "(but does have inner)"
  /external/webp/src/enc/
frame_enc.c 235 // should be prob[VP8EncBands[n]], but it's equivalent for n=0 or 1
306 static void CodeResiduals(VP8BitWriter* const bw, VP8EncIterator* const it,
311 const int i16 = (it->mb_->type_ == 1);
312 const int segment = it->mb_->segment_;
313 VP8Encoder* const enc = it->enc_;
315 VP8IteratorNzToBytes(it);
321 it->top_nz_[8] = it->left_nz_[8] =
322 PutCoeffs(bw, it->top_nz_[8] + it->left_nz_[8], &res)
560 VP8EncIterator it; local
722 VP8EncIterator it; local
765 VP8EncIterator it; local
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
ctor.pass.cpp 72 RDI it(testPath, ec);
74 TEST_CHECK(it == endIt);
77 RDI it(testPath, opts, ec);
79 TEST_CHECK(it == endIt);
99 RDI it(testDir);
100 TEST_REQUIRE(it != RDI{});
110 RDI it(testDir, ec);
112 TEST_CHECK(it == RDI{});
118 RDI it(testDir, directory_options::skip_permission_denied, ec);
120 TEST_CHECK(it == RDI{})
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
ctor.pass.cpp 68 RDI it(testPath, ec);
70 TEST_CHECK(it == endIt);
73 RDI it(testPath, opts, ec);
75 TEST_CHECK(it == endIt);
95 RDI it(testDir);
96 TEST_REQUIRE(it != RDI{});
106 RDI it(testDir, ec);
108 TEST_CHECK(it == RDI{});
114 RDI it(testDir, directory_options::skip_permission_denied, ec);
116 TEST_CHECK(it == RDI{})
    [all...]
  /system/core/libsysutils/src/
SocketListener.cpp 66 SocketClientCollection::iterator it; local
67 for (it = mClients->begin(); it != mClients->end();) {
68 (*it)->decRef();
69 it = mClients->erase(it);
138 SocketClientCollection::iterator it; local
139 for (it = mClients->begin(); it != mClients->end();) {
140 delete (*it);
159 SocketClientCollection::iterator it; local
252 SocketClientCollection::iterator it; local
    [all...]
  /system/tools/hidl/c2hal/
AST.cpp 141 auto it = mDeclarations->begin(); local
142 while (it != mDeclarations->end()) {
143 if ((*it)->decType() == CompositeDeclaration::type()
144 && ((CompositeDeclaration *) (*it))->isInterface()) {
146 mInterfaces->push_back((CompositeDeclaration *) *it);
147 it = mDeclarations->erase(it);
149 it++;
160 auto it = mDeclarations->begin(); local
161 while (it != mDeclarations->end())
187 auto it = mDeclarations->begin(); local
202 auto it = mDeclarations->begin(); local
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
session_info.cc 39 for (PacketIterator it = packets_.begin(); it != packets_.end(); ++it)
40 if ((*it).dataPtr != NULL) {
42 (*it).dataPtr = new_base_ptr + ((*it).dataPtr - old_base_ptr);
148 for (PacketIteratorConst it = packets_.begin(); it != packets_.end(); ++it)
149 length += (*it).sizeBytes
160 PacketIterator it; local
247 PacketIterator it = packets_.begin(); local
429 PacketIterator it = packets_.begin(); local
    [all...]
  /system/core/libmemunreachable/
HeapWalker.cpp 58 // for example mprotect(PROT_NONE) on a native heap page. If so, it will be
63 AllocationMap::iterator it = allocations_.find(Range{value, value + 1}); local
64 if (it != allocations_.end()) {
65 *range = it->first;
66 *info = &it->second;
106 for (auto it = roots_.begin(); it != roots_.end(); it++) {
107 RecurseRoot(*it);
125 for (auto it = allocations_.begin(); it != allocations_.end(); it++)
    [all...]
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
LayoutBinderWriter.kt 47 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.isBinder
    [all...]
  /frameworks/av/services/oboeservice/
AAudioStreamTracker.cpp 37 auto it = mStreamsByHandle.find(streamHandle); local
38 if (it != mStreamsByHandle.end()) {
39 sp<AAudioServiceStreamBase> tempStream = it->second;
42 // But it is safer to check for <= 0 than == 0.
45 mStreamsByHandle.erase(it);
55 auto it = mStreamsByHandle.find(streamHandle); local
56 if (it != mStreamsByHandle.end()) {
57 serviceStream = it->second;
70 auto it = mStreamsByHandle.begin(); local
71 while (it != mStreamsByHandle.end())
    [all...]

Completed in 399 milliseconds

<<11121314151617181920>>