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

1 2 3 4 56 7 8 91011>>

  /external/libvpx/libvpx/third_party/libyuv/source/
mjpeg_validate.cc 51 const uint8* it = sample; local
54 it = ScanRow_ERMS(it, 0xff, end - it);
56 it = static_cast<const uint8*>(memchr(it, 0xff, end - it));
58 if (it == NULL) {
61 if (it[1] == 0xd9) {
64 ++it; // Skip over current 0xff
    [all...]
  /external/libweave/third_party/chromium/base/
scoped_observer.h 17 // attached itself to as an observer. When ScopedObserver is destroyed it
18 // removes the object as an observer from all sources it has been added to.
36 auto it = std::find(sources_.begin(), sources_.end(), source); local
37 DCHECK(it != sources_.end());
38 sources_.erase(it);
  /external/llvm/lib/Option/
Arg.cpp 73 it = ASL.begin(), ie = ASL.end(); it != ie; ++it) {
74 if (it != ASL.begin())
76 OS << *it; local
  /external/llvm/unittests/ADT/
DeltaAlgorithmTest.cpp 21 for (std::set<unsigned>::const_iterator it = S.begin(),
22 ie = S.end(); it != ie; ++it) {
23 if (it != S.begin())
25 OS << *it; local
  /external/llvm/utils/unittest/googletest/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/mesa3d/src/gtest/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/nist-sip/java/gov/nist/javax/sip/header/
ExtensionHeaderList.java 64 ListIterator<ExtensionHeaderImpl> it = this.listIterator(); local
65 while(it.hasNext()) {
66 ExtensionHeaderImpl eh = (ExtensionHeaderImpl) it.next();
  /external/opencv3/samples/python2/
asift.py 26 import itertools as it namespace
94 ires = it.imap(f, params)
  /external/pdfium/core/src/fxge/apple/
fx_mac_imp.cpp 69 auto it = m_FontList.find(face); local
70 if (it != m_FontList.end())
71 return it->second;
92 it = m_FontList.find(face);
93 if (it != m_FontList.end())
94 return it->second;
  /external/protobuf/gtest/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/regex-re2/util/
arena.cc 108 // it separately to avoid wasting too much space in leftover bytes
110 // then it gets its own block in the arena
145 // pointer you pass in was actually allocated by us, or that it
159 vector<AllocatedBlock>::iterator it; local
160 for (it = overflow_blocks_->begin(); it != overflow_blocks_->end(); ++it) {
161 free(it->mem);
sparse_array_test.cc 73 iterator it = str_map_.find(2); local
74 ASSERT_TRUE(str_map_.end() != it);
75 EXPECT_EQ("c", it->second);
79 iterator it = str_map_.find(3); local
80 ASSERT_TRUE(str_map_.end() == it);
  /external/v8/src/compiler/
gap-resolver.cc 29 auto it = local
31 moves->erase(it, moves->end());
39 // Each call to this function performs a move and deletes it from the move
49 DCHECK(!move->source().IsInvalid()); // Or else it will look eliminated.
71 // We are about to resolve this move and don't need it marked as pending, so
76 // it may now be the last move in the cycle. If so remove it.
85 // resolve it.
graph.cc 40 auto const it = std::find(decorators_.begin(), decorators_.end(), decorator); local
41 DCHECK(it != decorators_.end());
42 decorators_.erase(it);
  /external/v8/src/heap/
array-buffer-tracker-inl.h 59 TrackingMap::iterator it = array_buffers_.find(key); local
60 DCHECK(it != array_buffers_.end());
61 Value value = it->second;
62 array_buffers_.erase(it);
  /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 40 device_table_map::const_iterator it = tableMap.find((void *)key); local
41 assert(it != tableMap.end() && "Not able to find device dispatch entry");
42 return it->second;
47 instance_table_map::const_iterator it = tableInstanceMap.find((void *)key); local
49 if (it != tableInstanceMap.end()) {
51 it->second);
56 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
57 return it->second;
62 device_table_map::const_iterator it = map.find((void *)key); local
63 if (it != map.end())
75 instance_table_map::const_iterator it = map.find((void *)key); local
92 device_table_map::const_iterator it = map.find((void *)key); local
108 instance_table_map::const_iterator it = map.find((void *)key); local
149 instance_table_map::const_iterator it = map.find((void *)key); local
176 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...]

Completed in 901 milliseconds

1 2 3 4 56 7 8 91011>>