HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 101 - 125 of 1441) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/deqp/framework/delibs/decpp/
deSTLUtil.hpp 44 const typename C::const_iterator it = container.find(item); local
45 return (it != container.end());
51 const I it = std::find(begin, end, item); local
52 return (it != end);
80 typename M::const_iterator it = map.find(key); local
81 if (it == map.end())
83 return &it->second;
  /external/google-breakpad/src/processor/
simple_symbol_supplier.cc 132 map<string, char *>::iterator it = memory_buffers_.find(module->code_file()); local
133 if (it == memory_buffers_.end()) {
138 delete [] it->second;
139 memory_buffers_.erase(it);
  /external/google-breakpad/src/testing/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/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/guava/guava/src/com/google/common/io/
MultiInputStream.java 36 private Iterator<? extends ByteSource> it; field in class:MultiInputStream
42 * @param it an iterator of I/O suppliers that will provide each substream
45 Iterator<? extends ByteSource> it) throws IOException {
46 this.it = checkNotNull(it);
65 if (it.hasNext()) {
66 in = it.next().openStream();
MultiReader.java 34 private final Iterator<? extends CharSource> it; field in class:MultiReader
38 this.it = readers;
47 if (it.hasNext()) {
48 current = it.next().openStream();
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
remove.pass.cpp 99 C::const_iterator it = c.begin(); local
100 for(int *ip = std::begin(t2); ip != std::end(t2); ++ip, ++it) {
101 assert ( it != c.end());
102 assert ( *ip == it->get());
104 assert ( it == c.end ());
  /external/libcxx/test/std/containers/sequences/list/list.ops/
remove.pass.cpp 53 std::list<S>::const_iterator it = c.begin(); local
54 for(int *ip = a2; ip < a2+5; ++ip, ++it) {
55 assert ( it != c.end());
56 assert ( *ip == it->get());
58 assert ( it == c.end ());
  /external/libcxx/test/std/thread/thread.threads/thread.thread.this/
sleep_for.pass.cpp 34 struct itimerval it; local
35 it.it_interval = { 0 };
36 it.it_value.tv_sec = 0;
37 it.it_value.tv_usec = 250000;
40 ec = setitimer(ITIMER_REAL, &it, nullptr);
  /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/parameter-framework/parameter/
MappingData.cpp 58 // it means that no value has been provided
84 KeyToValueMapConstIterator it = _keyToValueMap.find(strkey); local
86 if (it != _keyToValueMap.end()) {
88 pStrValue = &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/
graph.h 72 ZoneVector<GraphDecorator*>::iterator it = local
74 DCHECK(it != decorators_.end());
75 decorators_.erase(it, it + 1);
  /external/v8/src/libplatform/
default-platform.cc 84 std::map<v8::Isolate*, std::queue<Task*> >::iterator it = local
86 if (it == main_thread_queue_.end() || it->second.empty()) {
89 task = it->second.front();
90 it->second.pop();
  /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/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/audiopolicy/engineconfigurable/src/
Stream.cpp 41 * It checks if the strategy is valid.
97 VolumeProfileConstIterator it = mVolumeProfiles.find(deviceCategory); local
98 if (it == mVolumeProfiles.end()) {
121 // find what part of the curve this index volume belongs to, or if it's out of bounds
  /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;

Completed in 319 milliseconds

1 2 3 45 6 7 8 91011>>