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

<<11121314151617181920>>

  /frameworks/support/paging/runtime/src/androidTest/java/androidx/paging/
PagedStorageDiffHelperTest.kt 40 verifyZeroInteractions(it)
60 verifyZeroInteractions(it)
69 verify(it).onRemoved(11, 1)
70 verify(it).onInserted(7, 1)
72 verifyNoMoreInteractions(it)
81 verify(it).onRemoved(0, 1)
82 verify(it).onInserted(4, 1)
84 verifyNoMoreInteractions(it)
93 verify(it).onChanged(5, 1, null)
94 verify(it).onChanged(7, 1, null
    [all...]
  /bionic/libc/bionic/
net_if.cpp 88 if_list* it = list; local
89 list = it->next;
90 if (names_too) free(it->data.if_name);
91 free(it);
130 for (if_list* it = list; it != nullptr; it = it->next) {
138 for (if_list* it = list; it != nullptr; it = it->next)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
stats.cc 81 for (FrameStatisticsIterator it = stats_.begin(); it != stats_.end(); ++it) {
82 total_encoding_time_in_us += it->encode_time_in_us;
83 total_decoding_time_in_us += it->decode_time_in_us;
84 total_encoded_frames_lengths += it->encoded_frame_length_in_bytes;
85 if (it->frame_type == webrtc::kVideoFrameKey) {
86 total_encoded_key_frames_lengths += it->encoded_frame_length_in_bytes;
89 total_encoded_nonkey_frames_lengths += it->encoded_frame_length_in_bytes;
114 for (std::vector<FrameStatistic>::iterator it = stats_.begin()
    [all...]
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64GOT.cpp 67 entry_iterator it, end = m_GOTPLT.end(); local
68 for (it = m_GOTPLT.begin(); it != end; ++it) {
69 AArch64GOTEntry* entry = *it;
81 entry_iterator it, end = m_GOT.end(); local
82 for (it = m_GOT.begin(); it != end; ++it) {
83 AArch64GOTEntry* entry = *it;
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.cpp 64 entry_iterator it, end = m_GOTPLT.end(); local
65 for (it = m_GOTPLT.begin(); it != end; ++it) {
66 ARMGOTEntry* entry = *it;
78 entry_iterator it, end = m_GOT.end(); local
79 for (it = m_GOT.begin(); it != end; ++it) {
80 ARMGOTEntry* entry = *it;
    [all...]
  /art/test/983-source-transform-verify/
source_transform_art.cc 60 for (ClassDataItemIterator it(*dex, data_item); it.HasNext(); it.Next()) {
61 if (!it.IsAtMethod() || it.GetMethodCodeItem() == nullptr) {
65 art::CodeItemInstructionAccessor(*dex, it.GetMethodCodeItem())) {
70 LOG(FATAL) << "Unexpected instruction found in " << dex->PrettyMethod(it.GetMemberIndex())
  /external/capstone/suite/MC/ARM/
thumb2-branches.s.cs 14 0x08,0xbf = it eq
16 0x18,0xbf = it ne
18 0xc8,0xbf = it gt
20 0xd8,0xbf = it le
22 0xa8,0xbf = it ge
24 0xb8,0xbf = it lt
38 0x08,0xbf = it eq
56 0x08,0xbf = it eq
58 0x18,0xbf = it ne
60 0xc8,0xbf = it g
    [all...]
  /external/llvm/test/MC/ARM/
virtexts-thumb.s 22 it eq; ereteq
23 it ne; eretne
24 it hs; ereths
25 it lo; eretlo
26 it mi; eretmi
27 it pl; eretpl
28 it vs; eretvs
29 it vc; eretvc
30 it hi; erethi
31 it ls; eretl
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
session_state.cc 25 auto it = tensors_.find(handle); local
26 if (it == tensors_.end()) {
30 *tensor = it->second;
74 auto it = tensors_.find(op_name); local
75 if (it != tensors_.end()) {
77 string key = it->second.GetHandle(op_name);
78 TF_RETURN_IF_ERROR(session_state->AddTensor(key, it->second.tensor));
  /external/webrtc/webrtc/common_video/
i420_buffer_pool.cc 69 for (auto it = buffers_.begin(); it != buffers_.end();) {
70 if ((*it)->width() != width || (*it)->height() != height)
71 it = buffers_.erase(it);
73 ++it;
81 // and it's safe to reuse.
  /external/webrtc/webrtc/modules/desktop_capture/
screen_capturer_helper.cc 95 for (DesktopRegion::Iterator it(region); !it.IsAtEnd(); it.Advance()) {
96 int left = DownToMultiple(it.rect().left(), grid_size_mask);
97 int right = UpToMultiple(it.rect().right(), grid_size, grid_size_mask);
98 int top = DownToMultiple(it.rect().top(), grid_size_mask);
99 int bottom = UpToMultiple(it.rect().bottom(), grid_size, grid_size_mask);
  /frameworks/base/cmds/incidentd/src/
Reporter.cpp 119 // There can't be two at the same time because it's on one thread.
138 for (ReportRequestSet::iterator it = batch.begin(); it != batch.end(); it++) {
139 if ((*it)->fd < 0 && mainFd < 0) {
141 mainDest = (*it)->args.dest();
153 // delete the oldest ones until it's under the limit. Doing this first
169 for (ReportRequestSet::iterator it = batch.begin(); it != batch.end(); it++)
    [all...]
  /frameworks/base/cmds/statsd/src/metrics/duration_helper/
MaxDurationTracker.cpp 46 for (auto it = clonedTracker->mInfos.begin(); it != clonedTracker->mInfos.end();) {
47 if (it->second.state != kStopped) {
48 it->second.lastStartTime = eventTime;
49 it->second.lastDuration = 0;
50 it++;
52 it = clonedTracker->mInfos.erase(it);
162 // Once an atom duration ends, we erase it. Next time, if we see another atom event with the
208 for (auto it = mInfos.begin(); it != mInfos.end();)
279 auto it = mInfos.find(key); local
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_bitrate_estimator_abs_send_time.cc 62 for (typename std::map<K, V>::const_iterator it = map.begin();
63 it != map.end(); ++it) {
64 keys.push_back(it->first);
127 for (std::list<Probe>::const_iterator it = probes_.begin();
128 it != probes_.end();
129 ++it) {
131 int send_delta_ms = it->send_time_ms - prev_send_time;
132 int recv_delta_ms = it->recv_time_ms - prev_recv_time;
143 current.mean_size += it->payload_size
    [all...]
  /external/gflags/src/
gflags_completions.cc 34 // This module implements bash-style completions. It achieves this
37 // 1) Take a to-be-completed word, and examine it for search hints
81 // more easily understood if it is roughly ordered according to
175 // If it's clear this shouldn't happen, we'll set this boolean
188 // order. Once a flag is placed in one of these 'higher' sets, it won't
275 for (vector<string>::const_iterator it = completions.begin();
276 it != completions.end();
277 ++it) {
278 DVLOG(9) << " Completion entry: '" << *it << "'";
279 fprintf(stdout, "%s\n", it->c_str())
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.cpp 119 for (MultipartListType::iterator it = m_MultipartList.begin();
120 it != m_MultipartList.end();
121 ++it) {
123 it->m_pLastLocal = &m_SectionData->back();
124 reserve(it->m_LocalNum);
125 it->m_pLastGlobal = &m_SectionData->back();
126 reserve(it->m_GlobalNum);
127 it->m_pLastTLS = &m_SectionData->back();
128 reserve(it->m_TLSNum);
130 if (it == m_MultipartList.begin())
396 GotEntryMapType::iterator it = m_GotGlobalEntriesMap.find(key); local
434 GotEntryMapType::iterator it = m_GotTLSGdEntriesMap.find(key); local
442 GotEntryMapType::iterator it = m_GotTLSGotEntriesMap.find(key); local
464 GotEntryMapType::iterator it = m_GotLocalEntriesMap.find(key); local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/
DynamicTableModelTest.java 70 Iterator<RectF> it = model.getIterator(tableRect, 10); local
72 while(it.hasNext()) {
73 it.next();
79 // many elements we throw at it:
81 it = model.getIterator(tableRect, 10);
83 while(it.hasNext()) {
84 it.next();
99 Iterator<RectF> it = model.getIterator(tableRect, createdCells); local
104 RectF cellRect = it.next();
113 cellRect = it.next();
157 Iterator<RectF> it = model.getIterator(tableRect, createdCells); local
204 Iterator<RectF> it = model.getIterator(tableRect, createdCells); local
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSUtils.java 111 for (Iterator it = certStore.getMatches(null).iterator(); it.hasNext();)
113 X509CertificateHolder c = (X509CertificateHolder)it.next();
133 for (Iterator it = attrStore.getMatches(null).iterator(); it.hasNext();)
135 X509AttributeCertificateHolder attrCert = (X509AttributeCertificateHolder)it.next();
156 for (Iterator it = crlStore.getMatches(null).iterator(); it.hasNext();)
158 Object rev = it.next();
209 for (Iterator it = otherRevocationInfos.getMatches(null).iterator(); it.hasNext();
307 Iterator it = digests.iterator(); local
319 Iterator it = signers.iterator(); local
    [all...]
  /external/libmojo/mojo/edk/system/
wait_set_dispatcher.cc 84 auto it = waiting_dispatchers_.find(dispatcher_handle); local
85 if (it != waiting_dispatchers_.end()) {
117 auto it = waiting_dispatchers_.find(dispatcher_handle);
118 if (it == waiting_dispatchers_.end())
122 // At this point, it should not be possible for |waiter_| to be woken with
124 waiting_dispatchers_.erase(it);
128 for (auto it = awoken_queue_.begin(); it != awoken_queue_.end();) {
129 if (it->first == dispatcher_handle) {
130 it = awoken_queue_.erase(it)
170 auto it = waiting_dispatchers_.find(d); local
202 auto it = waiting_dispatchers_.find(d); local
    [all...]
  /external/v8/src/heap/
code-stats.cc 154 // with ']'. RelocIterator 'it' must point to a comment reloc info.
156 RelocIterator* it) {
157 DCHECK(!it->done());
158 DCHECK(it->rinfo()->rmode() == RelocInfo::COMMENT);
159 const char* tmp = reinterpret_cast<const char*>(it->rinfo()->data());
167 reinterpret_cast<const char*>(it->rinfo()->data());
168 const byte* prev_pc = it->rinfo()->pc();
170 it->next();
174 DCHECK(!it->done());
175 if (it->rinfo()->rmode() == RelocInfo::COMMENT)
    [all...]
  /external/vulkan-validation-layers/layers/
shader_validation.h 29 std::vector<uint32_t>::const_iterator it; member in struct:spirv_inst_iter
32 auto result = *it >> 16;
37 uint32_t opcode() { return *it & 0x0ffffu; }
41 return it[n];
44 uint32_t offset() { return (uint32_t)(it - zero); }
48 spirv_inst_iter(std::vector<uint32_t>::const_iterator zero, std::vector<uint32_t>::const_iterator it) : zero(zero), it(it) {}
50 bool operator==(spirv_inst_iter const &other) { return it == other.it; }
95 auto it = def_index.find(id); local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
header_read_write_utils.cpp 97 AttributeMap::const_iterator it = headerAttributes->find(keyVector); local
98 if (it == headerAttributes->end()) {
101 return it->second.data();
141 for (AttributeMap::const_iterator it = headerAttributes->begin();
142 it != headerAttributes->end(); ++it) {
143 if (it->first.empty() || it->second.empty()) {
147 if (!buffer->writeCodePointsAndAdvancePosition(&(it->first.at(0)), it->first.size()
193 AttributeMap::const_iterator it = headerAttributes->find(keyVector); local
220 AttributeMap::const_iterator it = headerAttributes->find(*key); local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
def_use_manager.cpp 43 // instructions so this manager knows it has seen the instruction later.
116 for (auto it = id_to_uses_[before].cbegin(); it != id_to_uses_[before].cend();
117 ++it) {
119 (it->inst->result_id() != 0) + (it->inst->type_id() != 0);
121 if (it->operand_index < type_result_id_count) {
122 // Update the type_id. Note that result id is immutable so it should
124 if (it->inst->type_id() != 0 && it->operand_index == 0)
    [all...]
  /frameworks/av/media/libstagefright/
ACodecBufferChannel.cpp 95 BufferInfoIterator it = findClientBuffer(array, buffer);
96 if (it == array->end()) {
99 ALOGV("queueInputBuffer #%d", it->mBufferId);
101 msg->setObject("buffer", it->mCodecBuffer);
102 msg->setInt32("buffer-id", it->mBufferId);
117 BufferInfoIterator it = findClientBuffer(array, buffer);
118 if (it == array->end()) {
125 static_cast<SecureBuffer *>(it->mCodecBuffer.get());
143 source.mSharedMemory = it->mSharedEncryptedBuffer;
147 source, it->mClientBuffer->offset()
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssFuzzerTest.java 123 for (CssTokens.TokenIterator it = tokens.iterator(); it.hasNext();
124 it.advance()) {
125 System.err.println(it.token() + ":" + it.type());
143 for (CssTokens.TokenIterator it = tokens.iterator(); it.hasNext();) {
144 CssTokens.TokenType type = it.type();
145 String token = it.next();
253 * This hack helps ignore it
    [all...]

Completed in 603 milliseconds

<<11121314151617181920>>