Searched defs:it (Results 51 - 75 of 93) sorted by relevance

1234

/frameworks/data-binding/internal-prebuilts/com/android/databinding/localizemaven/1.1/
H A Dlocalizemaven-1.1.jar ... lang.Object doCall (java.lang.Object) Object it public java.lang.Object getLicense () public java. ...
/frameworks/native/libs/binder/
H A DPersistableBundle.cpp59 const auto& it = map.find(key); local
60 if (it == map.end()) return false;
61 *out = it->second;
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp225 Region::const_iterator it = reg.begin(); local
227 while (it != end) {
228 out.orSelf(transform(*it++));
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp98 List<sp<ABuffer> >::iterator it = mBuffers.begin(); local
99 while (it != mBuffers.end()) {
100 sp<ABuffer> buffer = *it;
110 ++it;
322 List<sp<ABuffer> >::iterator it = mBuffers.begin(); local
323 while (it != mBuffers.end()) {
324 sp<ABuffer> oldBuffer = *it;
329 it = mBuffers.erase(it);
333 ++it;
391 List<sp<ABuffer> >::iterator it; local
485 List<sp<ABuffer> >::iterator it; local
530 List<sp<ABuffer> >::iterator it; local
589 List<sp<ABuffer> >::iterator it; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp498 List<sp<ABuffer> >::iterator it = queue->begin(); local
499 while (it != queue->end()) {
500 if ((uint32_t)(*it)->int32Data() >= mNextExpectedSeqNo) {
504 it = queue->erase(it);
H A DARTPConnection.cpp218 List<StreamInfo>::iterator it = mStreams.begin(); local
219 while (it != mStreams.end()
220 && (it->mRTPSocket != rtpSocket || it->mRTCPSocket != rtcpSocket)) {
221 ++it;
224 if (it == mStreams.end()) {
228 mStreams.erase(it);
257 for (List<StreamInfo>::iterator it = mStreams.begin();
258 it != mStreams.end(); ++it) {
281 List<StreamInfo>::iterator it = mStreams.begin(); local
312 List<StreamInfo>::iterator it = mStreams.begin(); local
655 List<StreamInfo>::iterator it = mStreams.begin(); local
[all...]
/frameworks/av/media/ndk/
H A DNdkImageReader.cpp234 for (auto it = mAcquiredImages.begin();
235 it != mAcquiredImages.end(); it++) {
236 AImage* image = *it;
241 for (auto it = mBuffers.begin();
242 it != mBuffers.end(); it++) {
243 delete *it;
344 // Return a LockedBuffer pointer and remove it from the list
345 auto it local
[all...]
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
H A DParameterManagerWrapper.cpp225 typename std::map<string, T *>::iterator it = elementsMap.find(name); local
226 ALOG_ASSERT(it != elementsMap.end(), "Element %s not found", name.c_str());
227 return it != elementsMap.end() ? it->second : NULL;
234 typename std::map<string, T *>::const_iterator it = elementsMap.find(name); local
235 ALOG_ASSERT(it != elementsMap.end(), "Element %s not found", name.c_str());
236 return it != elementsMap.end() ? it->second : NULL;
/frameworks/av/services/camera/libcameraservice/utils/
H A DClientManager.h225 * This may return the ClientDescriptor passed in if it would be evicted.
255 * This may return the ClientDescriptor passed in if it would be evicted.
403 // Switch back owner if the incoming client has the highest priority, as it is MRU
469 auto it = evicted.begin(); local
470 if (it != evicted.end() && *it == client) {
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp119 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
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...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.cpp174 X86PLT::iterator it = m_pPLT->begin(); local
175 unsigned int plt0_size = llvm::cast<PLTEntryBase>((*it)).size();
177 memcpy(buffer, llvm::cast<PLTEntryBase>((*it)).getValue(), plt0_size);
179 ++it;
183 while (it != ie) {
184 plt1 = &(llvm::cast<PLTEntryBase>(*it));
188 ++it;
477 for (X86_32GOT::iterator it = m_pGOT->begin(), ie = m_pGOT->end(); it != ie;
478 ++it,
[all...]
H A DX86Relocator.cpp230 // change symbol binding to Global if it's a weak symbol
235 // Define the copy symbol in the bss section and resolve it
250 Module::alias_iterator it, it_e = alias_list->end(); local
251 for (it = alias_list->begin(); it != it_e; ++it) {
252 const ResolveInfo* alias = *it;
501 // emit it into .dynsym
528 // create plt for this symbol if it does not have one
586 // if symbol is defined in the ouput file and it'
[all...]
/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.cpp42 // TODO(jessehall): This file currently builds up global data structures as it
371 // Check whether it *may* be possible to load the library directly from
409 auto it = std::find_if(extensions.cbegin(), extensions.cend(), local
413 return (it != extensions.cend()) ? &*it : nullptr;
/frameworks/av/media/libstagefright/
H A DMP3Extractor.cpp302 // While it is safe to send the XING/VBRI frame to the decoder, this will
639 ID3::Iterator *it = new ID3::Iterator(id3, kMap[i].tag1); local
640 if (it->done()) {
641 delete it;
642 it = new ID3::Iterator(id3, kMap[i].tag2);
645 if (it->done()) {
646 delete it;
651 it->getString(&s);
652 delete it;
H A DMediaCodecSource.cpp89 // buffer from front of the queue, place it into *|buffer| and return true.
585 for (List<MediaBuffer*>::iterator it = output->mBufferQueue.begin();
586 it != output->mBufferQueue.end(); it++) {
587 (*it)->release();
605 List<sp<AReplyToken>>::iterator it; local
606 for (it = mStopReplyIDQueue.begin();
607 it != mStopReplyIDQueue.end(); it++) {
608 (new AMessage)->postReply(*it);
[all...]
H A DNuCachedSource2.cpp77 List<Page *>::iterator it = list->begin(); local
78 while (it != list->end()) {
79 Page *page = *it;
85 ++it;
91 List<Page *>::iterator it = mFreePages.begin(); local
92 Page *page = *it;
93 mFreePages.erase(it);
119 List<Page *>::iterator it = mActivePages.begin(); local
121 Page *page = *it;
127 mActivePages.erase(it);
149 List<Page *>::iterator it = mActivePages.begin(); local
[all...]
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp69 for (std::list<omx_message>::const_iterator it = messages.cbegin(); it != messages.cend(); ) {
70 mMessageQueue.push_back(*it++);
131 List<omx_message>::iterator it = mMessageQueue.begin(); local
132 while (it != mMessageQueue.end()) {
133 if ((*it).node == node) {
134 if (handleBufferMessage(*it, inputBuffers, outputBuffers)) {
135 it = mMessageQueue.erase(it);
139 *msg = *it;
[all...]
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp340 // it wouldn't have fit as part of a STAP-A packet.
710 List<sp<ABuffer> >::iterator it = mHistory.begin(); local
712 while (it != mHistory.end()) {
713 const sp<ABuffer> &buffer = *it;
745 ++it;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Stream.cpp616 List<wp<Camera3StreamBufferListener> >::iterator it, end; local
626 for (it = mBufferListenerList.begin(), end = mBufferListenerList.end();
627 it != end;
628 ++it) {
630 sp<Camera3StreamBufferListener> listener = it->promote();
783 List<wp<Camera3StreamBufferListener> >::iterator it, end; local
784 for (it = mBufferListenerList.begin(), end = mBufferListenerList.end();
785 it != end;
787 if (*it == listener) {
791 it
802 List<wp<Camera3StreamBufferListener> >::iterator it, end; local
[all...]
/frameworks/base/packages/MtpDocumentsProvider/jni/
H A Dcom_android_mtp_AppFuse.cpp46 // because it has the largest possible data payload.
281 const std::map<uint32_t, uint64_t>::iterator it = handles_.find(in->fh); local
282 if (it == handles_.end()) {
290 const int64_t result = get_object_bytes(it->second, offset, size, out->data());
304 const std::map<uint32_t, uint64_t>::iterator it = handles_.find(in->fh); local
305 if (it == handles_.end()) {
313 in->fh, it->second, offset, size, buffer, &written_size);
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java318 IteratorWrapper(Iterator<F> it) { argument
319 mI = it;
482 * "stopped", that is whether it should not be included in the result
490 * Returns whether the given filter is "verified" that is whether it has been verified against
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp137 // create the output symbol if it dose not have one
455 // shrad/executable objects, so it's fine to do so.
522 LinkerScript::Assignments::iterator it, ie = script.assignments().end(); local
524 for (it = script.assignments().begin(); it != ie; ++it) {
526 assert((*it).second.symbol().type() == Operand::SYMBOL);
527 const llvm::StringRef symName = (*it).second.symbol().name();
544 switch ((*it).second.type()) {
576 (*it)
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp314 // create PLT for this symbol if it does not have.
435 // change symbol binding to Global if it's a weak symbol
440 // Define the copy symbol in the bss section and resolve it
455 Module::alias_iterator it, it_e = alias_list->end(); local
456 for (it = alias_list->begin(); it != it_e; ++it) {
457 const ResolveInfo* alias = *it;
668 // This is unique since it has a unsigned operand and its truncated
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup2.cpp112 // An invoke should be in a batch by itself, so it conflicts with any other
125 const auto& it = argDeps.find(batched); local
126 if (it != argDeps.end()) {
127 const auto& args = (*it).second;
140 const auto& it = argDeps.find(lastBatched); local
142 if (it == argDeps.end()) {
146 const auto& args = (*it).second;
304 // The output filename has to be the last, in case we need to pop it out and
/frameworks/av/camera/ndk/impl/
H A DACameraDevice.cpp665 for (auto it = mFutureErrorSet.begin(); it != mFutureErrorSet.end();) {
666 int64_t errorFrameNumber = *it;
669 it = mFutureErrorSet.erase(it);
671 // This should not happen, but deal with it anyway
673 // erase the old error since it's no longer useful
674 it = mFutureErrorSet.erase(it);
690 auto it local
1071 auto it = mSequenceLastFrameNumberMap.begin(); local
1252 auto it = dev->mSequenceCallbackMap.find(sequenceId); local
1310 auto it = dev->mSequenceCallbackMap.find(sequenceId); local
[all...]

Completed in 749 milliseconds

1234