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

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/io/
MultiInputStream.java 32 private Iterator<? extends InputSupplier<? extends InputStream>> it; field in class:MultiInputStream
38 * @param it an iterator of I/O suppliers that will provide each substream
41 Iterator<? extends InputSupplier<? extends InputStream>> it)
43 this.it = it;
62 if (it.hasNext()) {
63 in = it.next().getInput();
MultiReader.java 32 private final Iterator<? extends InputSupplier<? extends Reader>> it; field in class:MultiReader
37 this.it = readers;
46 if (it.hasNext()) {
47 current = it.next().getInput();
  /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/
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/oprofile/libpp/
sample_container.cpp 71 samples_storage::iterator it = samples.find(key); local
72 if (it != samples.end()) {
73 it->second.counts += sample.counts;
104 samples_iterator it = samples.find(key); local
105 if (it != samples.end())
106 return &it->second;
symbol_container.cpp 51 typedef symbols_by_loc_t::const_iterator it; typedef
52 pair<it, it> p_it = symbols_by_loc.equal_range(&symbol);
69 typedef symbols_by_loc_t::const_iterator it; typedef
70 it first = symbols_by_loc.lower_bound(&symbol);
72 it last = symbols_by_loc.upper_bound(&symbol);
98 symbols_t::const_iterator it; local
99 for (it = symbols.begin(); it != symbols.end(); ++it) {
122 symbols_t::const_iterator it = symbols.find(symbol); local
    [all...]
  /external/oprofile/libutil++/
sparse_array.h 29 typename container_type::const_iterator it = container.find(index); local
30 if (it != container.end())
31 return it->second;
50 typename container_type::const_iterator it = rhs.container.begin(); local
52 for ( ; it != it_end; it++)
53 container[it->first] += it->second;
64 typename container_type::const_iterator it = rhs.container.begin(); local
66 for ( ; it != it_end; it++
88 typename container_type::const_iterator it = container.begin(); local
    [all...]
  /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/stlport/test/compiler/StTerm-order/
stterm-test.cc 19 It ctor done <-- 0
23 It dtor done <-- 0
32 It ctor done <-- 0
38 It dtor done <-- 0
66 class It
69 It();
70 ~It();
89 static It it; local
104 It::It(
    [all...]
  /external/valgrind/main/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 60 List<sp<ABuffer> >::iterator it = queue->begin(); local
61 while (it != queue->end()) {
62 if ((uint32_t)(*it)->int32Data() >= mNextExpectedSeqNo) {
66 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/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/base/services/java/com/android/server/am/
AppBindRecord.java 43 Iterator<ConnectionRecord> it = connections.iterator(); local
44 while (it.hasNext()) {
45 ConnectionRecord c = it.next();
  /frameworks/compile/mclinker/lib/LD/
GroupReader.cpp 121 ArchiveListType::iterator it = ar_list.begin(); local
126 for (it = ar_list.begin(); it != end; ++it) {
127 Archive& ar = (*it)->archive;
128 // if --whole-archive is given to this archive, no need to read it again
138 for (it = ar_list.begin(); it != end; ++it) {
139 Archive& ar = (*it)->archive
    [all...]
  /frameworks/compile/mclinker/lib/Support/
DefSymParser.cpp 43 std::vector<std::string>::iterator it; local
55 // An operator encountered means a token ended, push it to
95 for (it=postfixString.begin(); it != postfixString.end(); it++) {
96 switch (*((*it).c_str())) {
109 if (*((*it).c_str()) == '*')
111 else if (*((*it).c_str()) == '/')
113 else if (*((*it).c_str()) == '-')
121 // try converting it to integer
    [all...]
MemoryArea.cpp 61 // we never remove it. In that way, space can not be NULL.
90 // we never remove it. Otherwise, we have to synchronize and release
93 // synchronize writable space before we release it.
99 SpaceMapType::iterator it; local
100 for (it = range.first; it != range.second; ++it) {
101 if (space == it->second)
104 m_SpaceMap.erase(it);
146 SpaceMapType::iterator it; local
159 SpaceMapType::const_iterator it; local
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOTPLT.cpp 52 iterator it = begin(); local
55 ++it;
58 for (; it != end() ; ++it) {
59 llvm::cast<X86_32GOTEntry>(*it).setValue(plt_addr + 6);
96 iterator it = begin(); local
99 ++it;
102 for (; it != end() ; ++it) {
103 llvm::cast<X86_64GOTEntry>(*it).setValue(plt_addr + 6)
    [all...]
  /frameworks/compile/mclinker/unittests/
StringTableTest.cpp 20 // create testee. modify it if need
61 StringTable::iterator it = m_pTestee->begin(); local
62 ASSERT_STREQ(*it, "Hello");
63 ++it;
64 ASSERT_STREQ(*it, "World");
65 ++it;
66 ASSERT_STREQ(*it, "Media");
67 ++it;
68 ASSERT_STREQ(*it, "Tek");
69 ++it;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCallBase.java 45 for (Iterator<Connection> it = mConnections.iterator(); it.hasNext(); ) {
46 Connection c = it.next();
47 if (c.getState() == State.DISCONNECTED) it.remove();

Completed in 340 milliseconds

<<11121314151617181920>>