Searched defs:it (Results 51 - 75 of 609) sorted by relevance

1234567891011>>

/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/regex-re2/util/
H A Darena.cc108 // 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);
H A Dsparse_array_test.cc73 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/
H A Dstterm-test.cc89 static It it; local
/external/valgrind/main/none/tests/x86/
H A Dbug126147-x86.c13 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/valgrind/tsan/
H A Ddense_multimap.h67 const_iterator it = lower_bound(m.begin(), m.end(), t); local
68 copy(m.begin(), it, ptr_);
69 ptr_[it - m.begin()] = t;
70 copy(it, m.end(), ptr_ + (it - m.begin()) + 1);
76 const_iterator it = lower_bound(m.begin(), m.end(), t); local
77 CHECK(it < m.end() && it >= m.begin());
79 copy(m.begin(), it, ptr_);
80 copy(it
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DRemoveTree.cpp73 RemoveTree it; local
75 root->traverse(&it);
/external/webkit/Source/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/Source/WebCore/dom/
H A DStaticHashSetNodeList.cpp58 ListHashSet<RefPtr<Node> >::const_iterator it = m_nodes.begin(); local
59 for (unsigned count = 0; count < index; ++it, ++count) { }
60 return (*it).get();
68 ListHashSet<RefPtr<Node> >::const_iterator it = m_nodes.begin(); local
70 for ( ; it != end ; ++it) {
71 Node* node = (*it).get();
/external/webkit/Source/WebCore/platform/graphics/
H A DStringTruncator.cpp45 static inline int textBreakAtOrPreceding(TextBreakIterator* it, int offset) argument
47 if (isTextBreak(it, offset))
50 int result = textBreakPreceding(it, offset);
54 static inline int boundedTextBreakFollowing(TextBreakIterator* it, int offset, int length) argument
56 int result = textBreakFollowing(it, offset);
66 TextBreakIterator* it = characterBreakIterator(string.characters(), length);
67 unsigned omitEnd = boundedTextBreakFollowing(it, omitStart + (length - keepCount) - 1, length);
68 omitStart = textBreakAtOrPreceding(it, omitStart);
85 TextBreakIterator* it = characterBreakIterator(string.characters(), length);
86 unsigned keepLength = textBreakAtOrPreceding(it, keepCoun
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DString.cpp6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
11 * This library is distributed in the hope that it will be useful,
54 TextBreakIterator* it = characterBreakIterator(s.characters(), s.length()); local
55 if (!it)
59 while (textBreakNext(it) != TextBreakDone)
66 TextBreakIterator* it = characterBreakIterator(s.characters(), s.length()); local
67 if (!it)
71 if (textBreakNext(it) == TextBreakDone)
74 return textBreakCurrent(it);
[all...]
/external/webkit/Source/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/Source/WebCore/rendering/
H A DVerticalPositionCache.h48 const HashMap<RenderObject*, int>::const_iterator it = mapToCheck.find(renderer); local
49 if (it == mapToCheck.end())
51 return it->second;
/external/webkit/Source/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()) {
/external/webkit/Source/WebKit/chromium/src/
H A DWebGeolocationPermissionRequestManager.cpp64 GeolocationIdMap::iterator it = m_private->m_geolocationIdMap.find(geolocation); local
65 if (it == m_private->m_geolocationIdMap.end())
67 id = it->second;
68 m_private->m_geolocationIdMap.remove(it);
75 IdGeolocationMap::iterator it = m_private->m_idGeolocationMap.find(id); local
76 if (it == m_private->m_idGeolocationMap.end())
78 Geolocation* geolocation = it->second;
80 m_private->m_idGeolocationMap.remove(it);
/external/webkit/Source/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/webkit/Source/WebKit2/UIProcess/
H A DGeolocationPermissionRequestManagerProxy.cpp42 PendingRequestMap::const_iterator it = m_pendingRequests.begin(); local
44 for (; it != end; ++it)
45 it->second->invalidate();
62 PendingRequestMap::iterator it = m_pendingRequests.find(geolocationID);
63 if (it == m_pendingRequests.end())
67 m_pendingRequests.remove(it);
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
H A DGeolocationPermissionRequestManager.cpp70 GeolocationToIDMap::iterator it = m_geolocationToIDMap.find(geolocation); local
71 if (it == m_geolocationToIDMap.end())
74 m_geolocationToIDMap.remove(it);
75 m_idToGeolocationMap.remove(it->second);
80 IDToGeolocationMap::iterator it = m_idToGeolocationMap.find(geolocationID); local
81 if (it == m_idToGeolocationMap.end())
84 Geolocation* geolocation = it->second;
87 m_idToGeolocationMap.remove(it);
/external/webkit/Tools/TestWebKitAPI/
H A DTestsController.cpp48 std::map<std::string, CreateTestFunction>::const_iterator it = m_createTestFunctions.begin(); local
50 for (; it != end; ++it)
51 printf("%s\n", (*it).first.c_str());
/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/chrome/browser/metrics/
H A Dmetrics_service_unittest.cc65 ListValue::const_iterator it = list.begin(); local
67 (*it)->GetAsInteger(&size);
70 ++it;
72 (*it)->GetAsString(&str); // Base64 encoded "Hello world!" string.
77 ++it;
78 (*it)->GetAsString(&str); // MD5 for encoded "Hello world!" string.
81 ++it;
82 EXPECT_TRUE(it == list.end()); // Reached end of list.
193 // Fetch checksum (last element) and change it.
/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_filebase.cc35 PropertyMap::iterator it = properties_.find(key.c_str()); local
36 if (it == properties_.end()) {
50 it = properties_.begin();
57 if (it == properties_.end()) {
60 *key = it->first;
61 *value = it->second;
62 it++;
71 if (it == properties_.end()) {
/external/chromium/chrome/browser/ui/webui/
H A Dprint_preview_ui_html_source.cc139 std::vector<unsigned char>::iterator it = html_bytes->data.begin(); local
140 for (uint32 i = 0; i < preview_data_size; ++i, ++it)
141 *it = *(preview_data + i);
/external/chromium/net/disk_cache/
H A Din_flight_io.cc46 IOList::iterator it = io_list_.begin(); local
47 InvokeCallback(*it, true);

Completed in 615 milliseconds

1234567891011>>