HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 276 - 300 of 3394) sorted by null

<<11121314151617181920>>

  /external/valgrind/none/tests/x86/
bug126147-x86.c 13 modify it under the terms of the GNU General Public
116 const char *it = "<UNSET>"; /* Routine name for message routines. */ variable
125 printf("%s flunked test %d\n", it, number);
145 it = "strncpy";
  /external/vulkan-validation-layers/layers/
vk_layer_table.cpp 31 device_table_map::const_iterator it = tableMap.find((void *)key); local
32 assert(it != tableMap.end() && "Not able to find device dispatch entry");
33 return it->second;
38 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key); local
39 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
40 return it->second;
44 device_table_map::const_iterator it = map.find((void *)key); local
45 if (it != map.end()) {
46 delete it->second;
47 map.erase(it);
52 instance_table_map::const_iterator it = map.find((void *)key); local
65 device_table_map::const_iterator it = map.find((void *)key); local
72 instance_table_map::const_iterator it = map.find((void *)key); local
105 instance_table_map::const_iterator it = map.find((void *)key); local
130 device_table_map::const_iterator it = map.find((void *)key); local
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-typed-test.cc 71 for (DefinedTestIter it = defined_test_names_.begin();
72 it != defined_test_names_.end();
73 ++it) {
74 if (name == *it) {
88 for (DefinedTestIter it = defined_test_names_.begin();
89 it != defined_test_names_.end();
90 ++it) {
91 if (tests.count(*it) == 0) {
92 errors << "You forgot to list test " << *it << ".\n"; local
  /external/webrtc/talk/app/webrtc/java/jni/
classreferenceholder.cc 122 for (std::map<std::string, jclass>::const_iterator it = classes_.begin();
123 it != classes_.end(); ++it) {
124 jni->DeleteGlobalRef(it->second);
130 std::map<std::string, jclass>::iterator it = classes_.find(name); local
131 RTC_CHECK(it != classes_.end()) << "Unexpected GetClass() call for: " << name;
132 return it->second;
  /external/webrtc/talk/media/webrtc/
webrtcmediaengine.cc 82 auto it = std::find_if(extensions->begin(), extensions->end(), local
86 if (it != extensions->end()) {
88 extensions->erase(it);
138 auto it = std::unique(result.begin(), result.end(), local
142 result.erase(it, result.end());
  /external/webrtc/webrtc/base/
testechoserver.h 22 // A test echo server, echoes back any packets sent to it.
34 for (ClientList::iterator it = client_sockets_.begin();
35 it != client_sockets_.end(); ++it) {
36 delete *it;
59 ClientList::iterator it = local
61 client_sockets_.erase(it);
  /external/webrtc/webrtc/libjingle/xmpp/
plainsaslhandler.h 37 std::vector<std::string>::const_iterator it = std::find(mechanisms.begin(), mechanisms.end(), "PLAIN"); local
38 if (it == mechanisms.end()) {
46 // Creates a SaslMechanism for the given mechanism name (you own it
47 // once you get it). If not handled, return NULL.
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_multi_vector.cc 40 std::vector<AudioVector*>::iterator it = channels_.begin(); local
41 while (it != channels_.end()) {
42 delete (*it);
43 ++it;
delay_manager.cc 63 IATVector::iterator it = iat_vector_.begin(); local
64 for (; it < iat_vector_.end(); it++) {
66 (*it) = temp_prob << 16;
185 for (IATVector::iterator it = iat_vector_.begin();
186 it != iat_vector_.end(); ++it) {
187 *it = (static_cast<int64_t>(*it) * iat_factor_) >> 15;
188 vector_sum += *it;
    [all...]
delay_peak_detector.cc 51 std::list<Peak>::const_iterator it; local
52 for (it = peak_history_.begin(); it != peak_history_.end(); ++it) {
53 max_height = std::max(max_height, it->peak_height_packets);
60 std::list<Peak>::const_iterator it; local
61 for (it = peak_history_.begin(); it != peak_history_.end(); ++it) {
62 max_period = std::max(max_period, it->period_ms)
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
send_time_history.cc 44 auto it = history_.find(sequence_number); local
45 if (it == history_.end())
47 it->second.send_time_ms = send_time_ms;
53 auto it = history_.find(oldest_sequence_number_); local
54 assert(it != history_.end());
56 if (clock_->TimeInMilliseconds() - it->second.creation_time_ms <=
62 history_.erase(it);
73 auto it = history_.upper_bound(oldest_sequence_number_);
74 if (it == history_.end()) {
77 // find 0 even if it is there, need to explicitly check for 0
87 auto it = history_.find(packet->sequence_number); local
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
fec_receiver_impl.cc 242 ForwardErrorCorrection::RecoveredPacketList::iterator it = local
244 for (; it != recovered_packet_list_.end(); ++it) {
245 if ((*it)->returned) // Already sent to the VCM and the jitter buffer.
247 ForwardErrorCorrection::Packet* packet = (*it)->pkt;
255 (*it)->returned = true;
  /external/webrtc/webrtc/test/
histogram.cc 45 auto it = histograms_.find(name); local
46 return reinterpret_cast<Histogram*>(&it->second);
55 auto it = histograms_.find(name); local
56 return reinterpret_cast<Histogram*>(&it->second);
73 const auto it = histograms_.find(name); local
74 if (it == histograms_.end()) {
77 return it->second.last_;
82 const auto it = histograms_.find(name); local
83 if (it == histograms_.end()) {
86 return it->second.total_
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 105 WpaMsgList::iterator it; local
106 for (it = msgs.begin(); it != msgs.end(); it++)
107 addEvent(*it);
  /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/av/media/libstagefright/rtsp/
AMPEG2TSAssembler.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/camera/libcameraservice/utils/
CameraTraces.cpp 84 List<ProcessCallStack>::iterator it, end; local
85 for (it = pcsList.begin(), end = pcsList.end(); it != end; ++it) {
86 const ProcessCallStack& pcs = *it;
  /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...]
  /frameworks/base/core/java/android/bluetooth/le/
BluetoothLeUtils.java 66 Iterator<Map.Entry<T, byte[]>> it = map.entrySet().iterator(); local
67 while (it.hasNext()) {
68 Map.Entry<T, byte[]> entry = it.next();
71 if (it.hasNext()) {
  /frameworks/base/core/java/android/util/
FastImmutableArraySet.java 26 * so it is worth copying the contents of the set to an array when iterating over it
40 FastIterator<T> it = mIterator; local
41 if (it == null) {
42 it = new FastIterator<T>(mContents);
43 mIterator = it;
45 it.mIndex = 0;
47 return it;
  /frameworks/compile/mclinker/lib/LD/
GroupReader.cpp 113 ArchiveListType::iterator it = ar_list.begin(); local
118 for (it = ar_list.begin(); it != end; ++it) {
119 Archive& ar = (*it)->archive;
120 // if --whole-archive is given to this archive, no need to read it again
130 for (it = ar_list.begin(); it != end; ++it) {
131 Archive& ar = (*it)->archive
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.cpp 34 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).setValue(pltAddr)
    [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...]
  /frameworks/compile/mclinker/unittests/
StringTableTest.cpp 18 // 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/minikin/include/minikin/
LayoutPieces.h 35 for (const auto it : offsetMap) {
36 const_cast<LayoutCacheKey*>(&it.first)->freeText();
56 auto it = offsetMap.find(LayoutCacheKey(textBuf, range, paint, dir, startEdit, endEdit)); local
57 if (it == offsetMap.end()) {
61 f(it->second);

Completed in 395 milliseconds

<<11121314151617181920>>