Searched defs:it (Results 26 - 50 of 233) sorted by relevance

12345678910

/external/protobuf/gtest/src/
H A Dgtest-typed-test.cc59 for (DefinedTestIter it = defined_test_names_.begin();
60 it != defined_test_names_.end();
61 ++it) {
62 if (name == *it) {
76 for (DefinedTestIter it = defined_test_names_.begin();
77 it != defined_test_names_.end();
78 ++it) {
79 if (tests.count(*it) == 0) {
80 errors << "You forgot to list test " << *it << ".\n"; local
/external/protobuf/src/google/protobuf/stubs/
H A Dmap-util.h50 typename Collection::const_iterator it = collection.find(key); local
51 if (it == collection.end()) {
54 return it->second;
64 typename Collection::const_iterator it = collection.find(key); local
65 if (it == collection.end()) {
68 return &it->second;
80 typename Collection::const_iterator it = collection.find(key); local
81 if (it == collection.end()) {
84 return it->second;
/external/stlport/test/compiler/StTerm-order/
H A Dstterm-test.cc89 static It it; local
/external/webkit/WebCore/bindings/js/
H A DJSSVGContextCache.h4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
9 This library is distributed in the hope that it will be useful,
48 WrapperMap::iterator& it = result.first; local
49 ASSERT_UNUSED(it, it->second == context);
58 WrapperMap::iterator it = map.find(wrapper); local
59 if (it == map.end())
62 map.remove(it);
68 WrapperMap::iterator it local
83 WrapperMap::iterator it = map.find(wrapper); local
[all...]
/external/webkit/WebCore/css/
H A DCSSImageGeneratorValue.cpp53 RenderObjectSizeCountMap::iterator it = m_clients.find(renderer); local
54 if (it == m_clients.end())
57 SizeCountPair& sizeCount = it->second;
64 RenderObjectSizeCountMap::iterator it = m_clients.find(renderer); local
65 ASSERT(it != m_clients.end());
67 SizeCountPair& sizeCount = it->second;
83 RenderObjectSizeCountMap::iterator it = m_clients.find(renderer); local
84 ASSERT(it != m_clients.end());
86 SizeCountPair& sizeCount = it->second;
/external/webkit/WebCore/platform/graphics/
H A DStringTruncator.cpp44 static inline int textBreakAtOrPreceding(TextBreakIterator* it, int offset) argument
46 if (isTextBreak(it, offset))
49 int result = textBreakPreceding(it, offset);
53 static inline int boundedTextBreakFollowing(TextBreakIterator* it, int offset, int length) argument
55 int result = textBreakFollowing(it, offset);
65 TextBreakIterator* it = characterBreakIterator(string.characters(), length);
66 unsigned omitEnd = boundedTextBreakFollowing(it, omitStart + (length - keepCount) - 1, length);
67 omitStart = textBreakAtOrPreceding(it, omitStart);
84 TextBreakIterator* it = characterBreakIterator(string.characters(), length);
85 unsigned keepLength = textBreakAtOrPreceding(it, keepCoun
[all...]
/external/webkit/WebCore/plugins/
H A DPluginMainThreadScheduler.cpp48 CallQueueMap::iterator it = m_callQueueMap.find(npp); local
49 if (it == m_callQueueMap.end())
52 it->second.append(Call(function, userData));
79 for (Deque<Call>::const_iterator it = calls.begin(); it != end; ++it) {
87 (*it).performCall();
99 for (CallQueueMap::iterator it = m_callQueueMap.begin(); it != end; ++it)
[all...]
/external/webkit/WebCore/wml/
H A DWMLEventHandlingElement.cpp4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
9 * This library is distributed in the hope that it will be useful,
54 Vector<WMLDoElement*>::iterator it = m_doElements.begin(); local
57 for (; it != end; ++it) {
58 if ((*it)->name() == doElement->name()) {
H A DWMLTemplateElement.cpp4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
9 * This library is distributed in the hope that it will be useful,
105 HashSet<WMLCardElement*>::iterator it = cards.begin(); local
108 for (; it != end; ++it)
109 (*it)->setTemplateElement(temp);
H A DWMLTaskElement.cpp4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
9 * This library is distributed in the hope that it will be useful,
96 Vector<WMLSetvarElement*>::iterator it = m_variableSetterElements.begin(); local
99 for (; it != end; ++it) {
100 WMLSetvarElement* setterElement = (*it);
/external/webkit/WebKit/gtk/WebCoreSupport/
H A DDocumentLoaderGtk.cpp96 HashSet<unsigned long>::iterator it = m_loadingResources.find(identifier); local
98 // It is valid for a load to be cancelled before it's started.
99 if (it == m_loadingResources.end())
102 m_loadingResources.remove(it);
/external/astl/tests/
H A Dtest_list.cpp100 list<int>::const_iterator it = l.begin(); local
101 for (int i = 0; it != l.end(); ++it, ++i) {
102 EXPECT_TRUE(*it == i);
110 it = l.begin();
111 for (int i = 99; it != l.end(); ++it, --i) {
112 EXPECT_TRUE(*it == i);
/external/chromium/base/
H A Dobserver_list_threadsafe.h23 // This is similar to the observer_list (see observer_list.h), but it
57 typename ObserversListMap::const_iterator it; local
58 for (it = observer_lists_.begin(); it != observer_lists_.end(); ++it)
59 delete (*it).second;
90 return; // On shutdown, it is possible that current() is already null.
108 // when it finishes iterating.
136 typename ObserversListMap::iterator it; local
137 for (it
157 typename ObserversListMap::iterator it = local
181 typename ObserversListMap::iterator it = local
[all...]
/external/chromium/net/tools/flip_server/
H A Dbalsa_headers_token_utils.cc29 BalsaHeaders::HeaderLines::iterator it = local
31 if (it == headers->header_lines_.end()) {
40 header_line = it;
41 it = headers->GetHeaderLinesIterator(key, it + 1);
43 while (it != headers->header_lines_.end());
70 BalsaHeaders::const_header_lines_key_iterator it = local
72 if (it == headers.header_lines_key_end())
76 BalsaHeaders::const_header_lines_key_iterator header_line = it;
78 header_line = it;
[all...]
/external/guava/src/com/google/common/io/
H A DMultiInputStream.java32 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();
40 MultiInputStream( Iterator<? extends InputSupplier<? extends InputStream>> it) argument
H A DMultiReader.java32 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/openssl/crypto/asn1/
H A Da_verify.c11 * apply to all code found in this distribution, be it the RC4, RSA,
129 int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *a, ASN1_BIT_STRING *signature, argument
168 inl = ASN1_item_i2d(asn, &buf_in, it);
/external/webkit/JavaScriptCore/runtime/
H A DWeakGCMap.h42 * A value that becomes unmarked leaves the WeakGCMap before being recycled. (Guaranteed by the value's destructor removing it from the WeakGCMap.)
99 Heap::markCell(value); // If value is newly allocated, it's not marked, so mark it now.
111 iterator it = m_map.find(key); local
112 if (it == m_map.end())
114 if (it->second != value)
116 m_map.remove(it);
/external/webkit/WebCore/platform/gtk/
H A DDataObjectGtk.cpp4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
9 * This library is distributed in the hope that it will be useful,
116 HashMap<GtkClipboard*, RefPtr<DataObjectGtk> >::iterator it = objectMap.find(clipboard); local
117 return it->second.get();
/external/webkit/WebCore/platform/text/
H A DSegmentedString.cpp4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
9 This library is distributed in the hope that it will be useful,
62 Deque<SegmentedSubstring>::const_iterator it = m_substrings.begin(); local
64 for (; it != e; ++it)
65 length += it->m_length;
73 Deque<SegmentedSubstring>::iterator it = m_substrings.begin(); local
75 for (; it != e; ++it)
123 Deque<SegmentedSubstring>::const_iterator it = s.m_substrings.begin(); local
136 Deque<SegmentedSubstring>::const_reverse_iterator it = s.m_substrings.rbegin(); local
167 Deque<SegmentedSubstring>::const_iterator it = m_substrings.begin(); local
[all...]
/external/webkit/WebCore/svg/
H A DSVGCursorElement.cpp5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
10 This library is distributed in the hope that it will be useful,
47 for (HashSet<SVGElement*>::iterator it = m_clients.begin(); it != end; ++it)
48 (*it)->setCursorElement(0);
89 HashSet<SVGElement*>::const_iterator it = m_clients.begin(); local
92 for (; it != end; ++it)
[all...]
/external/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
108 WpaMsgList::iterator it; local
109 for (it = msgs.begin(); it != msgs.end(); it++)
110 addEvent(*it);
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
H A Deventhistory.cpp5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
111 WpaMsgList::iterator it; local
112 for (it = msgs.begin(); it != msgs.end(); it++)
113 addEvent(*it);
/external/chromium/net/flip/
H A Dflip_session_pool.cc83 FlipSessionsMap::iterator it = sessions_.find(domain); local
84 if (it == sessions_.end())
86 return it->second;
91 FlipSessionsMap::const_iterator it = sessions_.find(domain); local
92 if (it == sessions_.end())
94 return it->second;
/external/chromium/net/http/
H A Dhttp_transaction_unittest.cc121 MockTransactionMap::const_iterator it = mock_transactions.find(url.spec()); local
122 if (it != mock_transactions.end())
123 return it->second;

Completed in 633 milliseconds

12345678910