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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/sync/syncable/
syncable_delete_journal.cc 39 JournalIndex::iterator it = delete_journals_.find(&entry); local
42 if (it == delete_journals_.end()) {
57 if (it != delete_journals_.end()) {
58 delete_journals_to_purge_.insert((*it)->ref(META_HANDLE));
59 delete *it;
60 delete_journals_.erase(it);
71 for (JournalIndex::const_iterator it = delete_journals_.begin();
72 it != delete_journals_.end(); ++it) {
73 if ((*it)->GetServerModelType() == type |
84 JournalIndex::iterator it = delete_journals_.begin(); local
103 JournalIndex::iterator it = delete_journals_.begin(); local
    [all...]
  /external/chromium_org/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/chromium_org/testing/
multiprocess_func_list.cc 45 MultiProcessTestMap::iterator it = func_lookup_table.find(test_name); local
46 if (it != func_lookup_table.end()) {
47 const ProcessFunctions& process_functions = it->second;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMNamedFlowCollection.cpp 42 for (Vector<NamedFlow*>::const_iterator it = namedFlows.begin(); it != namedFlows.end(); ++it)
43 m_namedFlows.add(*it);
55 DOMNamedFlowSet::const_iterator it = m_namedFlows.begin();
57 ++it;
58 return *it;
63 DOMNamedFlowSet::const_iterator it = m_namedFlows.find<DOMNamedFlowHashTranslator, String>(name); local
64 if (it != m_namedFlows.end())
65 return *it;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementCallbackScheduler.cpp 85 ElementCallbackQueueMap::iterator it = m_elementCallbackQueueMap.find(key); local
86 if (it == m_elementCallbackQueueMap.end())
87 it = m_elementCallbackQueueMap.add(key, CustomElementCallbackQueue::create(element)).iterator;
88 return it->value.get();
CustomElementUpgradeCandidateMap.cpp 41 for (UpgradeCandidateMap::const_iterator::Keys it = m_upgradeCandidates.begin().keys(); it != end; ++it)
42 unobserve(*it);
52 UnresolvedDefinitionMap::iterator it = m_unresolvedDefinitions.find(descriptor); local
53 if (it == m_unresolvedDefinitions.end())
54 it = m_unresolvedDefinitions.add(descriptor, ElementSet()).iterator;
55 it->value.add(element);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextGroup.cpp 52 HashSet<WebGLRenderingContext*>::iterator it = m_contexts.begin(); local
53 return (*it)->graphicsContext3D();
83 HashSet<WebGLSharedObject*>::iterator it = m_groupObjects.begin(); local
84 (*it)->detachContextGroup();
94 for (HashSet<WebGLRenderingContext*>::iterator it = m_contexts.begin(); it != m_contexts.end(); ++it)
95 (*it)->loseContextImpl(mode);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGCursorElement.cpp 5 * 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,
63 for (HashSet<SVGElement*>::iterator it = m_clients.begin(); it != end; ++it)
64 (*it)->cursorElementRemoved();
107 HashSet<SVGElement*>::iterator it = m_clients.find(element); local
108 if (it != m_clients.end()) {
109 m_clients.remove(it);
129 HashSet<SVGElement*>::const_iterator it = m_clients.begin(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontDataCache.cpp 87 Cache::iterator it = m_cache.find(fontData->platformData()); local
88 ASSERT(it != m_cache.end());
89 if (it == m_cache.end())
92 ASSERT(it->value.second);
93 if (!--it->value.second)
94 m_inactiveFontData.add(it->value.first);
130 ListHashSet<RefPtr<SimpleFontData> >::iterator it = m_inactiveFontData.begin(); local
131 for (int i = 0; i < count && it != end; ++it, ++i) {
132 RefPtr<SimpleFontData>& fontData = *it.get()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
LocaleToScriptMapping.cpp 167 HashMap<String, UScriptCode>::iterator it = scriptNameCodeMap.find(scriptName.lower()); local
168 if (it != scriptNameCodeMap.end())
169 return it->value;
250 { "it", USCRIPT_LATIN },
390 HashMap<String, UScriptCode>::iterator it = localeScriptMap.find(canonicalLocale); local
391 if (it != localeScriptMap.end())
392 return it->value;
  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationPermissionRequestManager.cpp 64 GeolocationIdMap::iterator it = m_private->m_geolocationIdMap.find(geolocation); local
65 if (it == m_private->m_geolocationIdMap.end())
67 id = it->value;
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->value;
80 m_private->m_idGeolocationMap.remove(it);
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
region_data_constants.cc 451 region_data.insert(std::make_pair("IT", "{"
1024 std::map<std::string, std::string>::const_iterator it = local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
testechoserver.h 39 // A test echo server, echoes back any packets sent to it.
51 for (ClientList::iterator it = client_sockets_.begin();
52 it != client_sockets_.end(); ++it) {
53 delete *it;
75 ClientList::iterator it = local
77 client_sockets_.erase(it);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
plainsaslhandler.h 52 std::vector<std::string>::const_iterator it = std::find(mechanisms.begin(), mechanisms.end(), "PLAIN"); local
53 if (it == mechanisms.end()) {
61 // Creates a SaslMechanism for the given mechanism name (you own it
62 // once you get it). If not handled, return NULL.
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
shortnumberinfo.cc 55 for (RepeatedPtrField<PhoneMetadata>::const_iterator it =
57 it != metadata_collection.metadata().end();
58 ++it) {
59 const string& region_code = it->id();
60 region_to_short_metadata_map_->insert(make_pair(region_code, *it));
68 map<string, PhoneMetadata>::const_iterator it = local
70 if (it != region_to_short_metadata_map_->end()) {
71 return &it->second;
96 // handle it.
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
map-util.h 50 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;
72 // Crash if it does not.
78 // * It has a side-effect of inserting missing keys
79 // * It is not thread-safe (even when it is not inserting, it can stil
90 typename Collection::const_iterator it = collection.find(key); local
104 typename Collection::const_iterator it = collection.find(key); local
    [all...]
  /external/chromium_org/third_party/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/chromium_org/tools/ipc_fuzzer/message_lib/
message_names.h 35 TypeToNameMap::iterator it = name_map_.find(type); local
36 CHECK(it != name_map_.end());
37 return it->second;
41 NameToTypeMap::iterator it = type_map_.find(name); local
42 CHECK(it != type_map_.end());
43 return it->second;
  /external/chromium_org/ui/base/x/
selection_owner.cc 43 for (SelectionFormatMap::const_iterator it = format_map_.begin();
44 it != format_map_.end(); ++it) {
45 targets->push_back(it->first);
93 // MULTIPLE case, but I haven't seen it in the wild yet.
97 SelectionFormatMap::const_iterator it = local
99 if (it != format_map_.end()) {
105 it->second->front())),
106 it->second->size());
  /external/chromium_org/ui/gfx/
break_list_unittest.cc 160 BreakList<bool>::const_iterator it = breaks.GetBreak(cases[i].position); local
161 EXPECT_EQ(breaks.breaks()[cases[i].break_index], *it);
162 EXPECT_EQ(breaks.GetRange(it), cases[i].range);
  /external/chromium_org/webkit/browser/appcache/
appcache_backend_impl.h 53 HostMap::iterator it = hosts_.find(host_id); local
54 return (it != hosts_.end()) ? (it->second) : NULL;
  /external/clang/lib/Analysis/
CocoaConventions.cpp 98 StringRef::iterator it = functionName.begin(); local
99 StringRef::iterator start = it;
104 for ( ; it != endI ; ++it) {
105 // Search for the first character. It can either be 'C' or 'c'.
106 char ch = *it;
109 if (ch == 'c' && it != start && isLetter(*(it - 1)))
112 ++it;
118 if (it == endI
    [all...]
  /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

Completed in 425 milliseconds

1 2 3 4 5 6 7 8 91011>>