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

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/pacing/
packet_router.cc 37 auto it = std::find(rtp_modules_.begin(), rtp_modules_.end(), rtp_module); local
38 RTC_DCHECK(it != rtp_modules_.end());
39 rtp_modules_.erase(it);
  /external/webrtc/webrtc/modules/video_coding/test/
stream_generator.cc 79 std::list<VCMPacket>::iterator it = GetPacketIterator(index); local
80 if (it == packets_.end())
83 *packet = (*it);
84 packets_.erase(it);
89 std::list<VCMPacket>::iterator it = GetPacketIterator(index); local
90 if (it == packets_.end())
93 *packet = (*it);
121 std::list<VCMPacket>::iterator it = packets_.begin(); local
123 ++it;
124 if (it == packets_.end()
    [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...]
  /frameworks/av/media/libstagefright/rtsp/
ARawAudioAssembler.cpp 62 List<sp<ABuffer> >::iterator it = queue->begin(); local
63 while (it != queue->end()) {
64 if ((uint32_t)(*it)->int32Data() >= mNextExpectedSeqNo) {
68 it = queue->erase(it);
  /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...]
  /frameworks/base/media/mca/filterfw/native/base/
utilities.h 44 // For hash_[multi]set, it is important that this deletes behind the iterator
45 // because the hash_set may call the hash function on the iterator when it is
60 // in the case it's given a NULL pointer.
77 typename Collection::const_iterator it = collection.find(key); local
78 if (it == collection.end()) {
81 return &it->second;
131 typename Collection::const_iterator it = collection.find(key); local
132 if (it == collection.end()) {
135 return it->second;
  /frameworks/base/media/mca/filterpacks/native/base/
utilities.h 44 // For hash_[multi]set, it is important that this deletes behind the iterator
45 // because the hash_set may call the hash function on the iterator when it is
60 // in the case it's given a NULL pointer.
77 typename Collection::const_iterator it = collection.find(key); local
78 if (it == collection.end()) {
81 return &it->second;
131 typename Collection::const_iterator it = collection.find(key); local
132 if (it == collection.end()) {
135 return it->second;
  /frameworks/compile/mclinker/lib/LD/
DebugString.cpp 43 SectionData::iterator it, end = pSection.getSectionData()->end(); local
44 for (it = pSection.getSectionData()->begin(); it != end; ++it) {
45 if ((*it).getKind() == Fragment::Region) {
46 RegionFragment* frag = llvm::cast<RegionFragment>(&(*it));
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64CA53ErratumStub.cpp 57 for (const_fixup_iterator it = pBegin, ie = pEnd; it != ie; ++it) {
58 addFixup(**it);
103 fixup_iterator it = fixup_begin(); local
106 Relocation::Create((*it)->type(),
107 *(FragmentRef::Create(*this, (*it)->offset())),
108 (*it)->addend());
118 ++it;
119 reloc = Relocation::Create((*it)->type()
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMException.cpp 25 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 = pModule.obj_begin()
82 ARMInputExMap::iterator it = exMap->begin(); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/
insert_size_value.pass.cpp 119 CI it = c.cbegin() + i; local
121 c.insert(it, 5, *jt);
124 it = c.cbegin();
125 for (int k = 0; k < i; ++k, ++it)
126 assert(*it == k);
127 for (int k = 0; k < 5; ++k, ++it)
128 assert(*it == j);
129 for (int k = i; k < 20; ++k, ++it)
130 assert(*it == k);
insert_value.pass.cpp 103 CI it = c.cbegin() + i; local
105 c.insert(it, *jt);
108 it = c.cbegin();
109 for (int k = 0; k < i; ++k, ++it)
110 assert(*it == k);
111 assert(*it == j);
112 ++it;
113 for (int k = i; k < 20; ++k, ++it)
114 assert(*it == k);
  /packages/apps/TV/usbtuner/jni/
tunertvinput_jni.cpp 43 std::map<jlong, DvbManager *>::iterator it = sDvbManagers.find(deviceId); local
44 if (it != sDvbManagers.end()) {
45 delete it->second;
46 sDvbManagers.erase(it);
58 std::map<jlong, DvbManager *>::iterator it = sDvbManagers.find(deviceId); local
60 if (it == sDvbManagers.end()) {
64 dvbManager = it->second;
78 std::map<jlong, DvbManager *>::iterator it = sDvbManagers.find(deviceId); local
79 if (it != sDvbManagers.end()) {
80 it->second->closeAllDvbPidFilter()
92 std::map<jlong, DvbManager *>::iterator it = sDvbManagers.find(deviceId); local
106 std::map<jlong, DvbManager *>::iterator it = sDvbManagers.find(deviceId); local
121 std::map<jlong, DvbManager *>::iterator it = sDvbManagers.find(deviceId); local
    [all...]
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
arguments_parser.cpp 115 const auto it = mOptionSpecs.find(optionName); local
116 if (it == mOptionSpecs.end()) {
123 if (it->second.needsValue()) {
150 const auto &it = arguments.find(argumentSpecIt->getName()); local
152 const size_t actualcount = it == arguments.end() ? 0 : it->second.size();
  /system/connectivity/shill/
hook_table.cc 63 HookTableMap::iterator it = hook_table_.find(name); local
64 if (it != hook_table_.end()) {
65 HookAction* action = &it->second;
93 // modifies |hook_table_|. It is thus not safe to iterate through
  /system/core/logd/
LogTimes.cpp 89 LastLogTimes::iterator it = times.begin(); local
90 while(it != times.end()) {
91 if (*it == me) {
92 times.erase(it);
96 it++;
  /system/extras/perfprofd/quipper/
address_mapper.cc 102 // Now search for a location for the new range. It should be in the first
105 // If there is no existing mapping, add it to the beginning of quipper space.
113 // If there is space before the first mapped range in quipper space, use it.
135 // If it still hasn't succeeded in mapping, it means there is no free space in
144 MappingList::const_iterator it; local
145 for (it = mappings_.begin(); it != mappings_.end(); ++it) {
146 LOG(INFO) << " real_addr: " << std::hex << it->real_add
    [all...]
  /system/extras/simpleperf/
sample_tree.cpp 84 auto it = callchain_sample_tree_.find(&value); local
85 if (it != callchain_sample_tree_.end()) {
86 return *it;
93 auto it = sample_tree_.find(&value); local
94 if (it != sample_tree_.end()) {
95 SampleEntry* sample = *it;
122 auto it = sample_tree_.find(&value); local
123 if (it == sample_tree_.end()) {
128 result = *it;
  /system/netd/server/
ClatdController.cpp 47 auto it = mClatdPids.find(interface); local
48 return (it == mClatdPids.end() ? 0 : it->second);
143 mClatdPids.erase(interface); // child exited, don't call waitpid on it again
PppController.cpp 43 TtyCollection::iterator it; local
45 for (it = mTtys->begin(); it != mTtys->end(); ++it) {
46 free(*it);
62 TtyCollection::iterator it; local
63 for (it = mTtys->begin(); it != mTtys->end(); ++it) {
64 if (!strcmp(tty, *it)) {
131 TtyCollection::iterator it; local
    [all...]
  /system/update_engine/payload_generator/
extent_ranges_unittest.cc 45 ExtentRanges::ExtentSet::const_iterator it = result.begin(); local
47 EXPECT_FALSE(it == result.end()) << "line: " << line;
48 EXPECT_EQ(expected[i], it->start_block()) << "line: " << line;
49 EXPECT_EQ(expected[i + 1], it->num_blocks()) << "line: " << line;
50 ++it;
  /system/update_engine/update_manager/
boxed_value_unittest.cc 103 auto it = m.find(42); local
104 ASSERT_NE(it, m.end());
105 EXPECT_NE(nullptr, it->second.value());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestCanonicalIterator.java 48 CanonicalIterator it = new CanonicalIterator(""); local
68 characterTest(s, i, it);
70 characterTest(s + "\u0345", i, it);
80 CanonicalIterator it = new CanonicalIterator(s); local
106 it.setSource(s);
108 String item = it.next();
145 CanonicalIterator it = new CanonicalIterator(testArray[i][0]); local
150 String result = it.next();
160 it.reset();
161 if(!it.next().equals(first))
267 Iterator it = col.iterator(); local
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DecimalFormat.java 29 * decimal numbers. It has a variety of features designed to make it possible to parse and
31 * It also supports different flavors of numbers, including integers ("123"), fixed-point
234 * equivalent to "0.00;-0.00". If there is an explicit negative subpattern, it serves
249 * digits to make large numbers more legible. It commonly used for thousands, but in some
250 * locales it separates ten-thousands. The <em>grouping size</em> is the number of digits
329 * <p>If {@link #parse(String, ParsePosition)} fails to parse a string, it returns
350 * digits</em>, then half-even rounding it performed to the maximum fraction digits. For
379 * but it need not be. <code>DecimalFormat</code> supports arbitrary mantissas.
407 * number of integer and fraction digits that will be shown in the mantissa; it does no
1459 AttributedCharacterIterator it = numberFormat.formatToCharacterIterator(obj); local
    [all...]
SimpleDateFormat.java 29 * parsing dates in a locale-sensitive manner. It allows for formatting
152 * relative to some century. It does this by adjusting dates to be
191 * Date formats are not synchronized. It is recommended to create separate
193 * concurrently, it must be synchronized externally.
256 // * 1). If just a numbering system name is specified, it applies to all numeric fields in the date format pattern.
469 AttributedCharacterIterator it = dateFormat.formatToCharacterIterator(obj); local
473 for (char c = it.first(); c != CharacterIterator.DONE; c = it.next()) {
482 it.first();
483 while (idx < it.getEndIndex())
    [all...]

Completed in 2575 milliseconds

<<11121314151617181920>>