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

1234567891011>>

/external/chromium_org/base/metrics/
H A Dsample_vector_unittest.cc111 // Note, this is not a valid BucketRanges for Histogram because it does not
188 SampleVectorIterator it(&counts, &ranges);
194 it.Get(&min, &max, &count);
198 EXPECT_TRUE(it.GetBucketIndex(&index));
201 it.Next();
202 it.Get(&min, &max, &count);
206 EXPECT_TRUE(it.GetBucketIndex(&index));
209 it.Next();
210 EXPECT_TRUE(it.Done());
245 scoped_ptr<SampleCountIterator> it local
[all...]
/external/chromium_org/chrome/browser/apps/
H A Dper_app_settings_service.cc20 DesktopMap::const_iterator it = default_desktops_.find(app_id); local
21 if (it == default_desktops_.end())
23 return it->second;
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dremove_stale_cache_files.cc17 scoped_ptr<ResourceMetadata::Iterator> it = resource_metadata->GetIterator(); local
18 for (; !it->IsAtEnd(); it->Advance()) {
19 const ResourceEntry& entry = it->GetValue();
25 FileError error = cache->Remove(it->GetID());
28 << it->GetID();
/external/chromium_org/chrome/browser/
H A Dresources_util.cc39 StringIntMap::const_iterator it = id_map_.find(resource_name); local
40 if (it == id_map_.end())
42 return it->second;
/external/chromium_org/chrome/utility/media_galleries/
H A Dpicasa_albums_indexer_unittest.cc44 AlbumImagesMap::const_iterator it; local
46 it = albums_images.find("e66fb059001aabcc69b262b7009fad90");
47 ASSERT_NE(albums_images.end(), it);
48 EXPECT_EQ(2u, it->second.size());
49 EXPECT_EQ(1u, it->second.count("InBoth.jpg"));
50 EXPECT_EQ(1u, it->second.count("InFirst.jpg"));
52 it = albums_images.find("18cb2df48aaa98e1c276b45cfcd81c95");
53 ASSERT_NE(albums_images.end(), it);
54 EXPECT_EQ(2u, it->second.size());
55 EXPECT_EQ(1u, it
102 AlbumImagesMap::const_iterator it; local
134 AlbumImagesMap::const_iterator it; local
[all...]
/external/chromium_org/components/storage_monitor/
H A Dtransient_device_ids.cc39 IdMap::const_iterator it = transient_id_map_.find(transient_id); local
40 if (it == transient_id_map_.end())
42 return it->second;
/external/chromium_org/mojo/system/
H A Dmapping_table.cc37 AddressToMappingMap::iterator it = address_to_mapping_map_.find(address); local
38 if (it == address_to_mapping_map_.end())
40 embedder::PlatformSharedBufferMapping* mapping_to_delete = it->second;
41 address_to_mapping_map_.erase(it);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementDataCache.cpp52 ShareableElementDataCache::ValueType* it = m_shareableElementDataCache.add(attributeHash(attributes), nullptr).storedValue; local
55 if (it->value && !hasSameAttributes(attributes, *it->value))
58 if (!it->value)
59 it->value = ShareableElementData::createWithAttributes(attributes);
61 return it->value.get();
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dasn_pack.c10 * apply to all code found in this distribution, be it the RC4, RSA,
65 ASN1_STRING *ASN1_item_pack(void *obj, const ASN1_ITEM *it, ASN1_STRING **oct) argument
82 if (!(octmp->length = ASN1_item_i2d(obj, &octmp->data, it))) {
95 void *ASN1_item_unpack(ASN1_STRING *oct, const ASN1_ITEM *it) argument
101 if(!(ret = ASN1_item_d2i(NULL, &p, oct->length, it)))
/external/chromium_org/third_party/boringssl/src/crypto/dsa/
H A Ddsa_asn1.c65 static int dsa_sig_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
90 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
/external/chromium_org/third_party/boringssl/src/crypto/rsa/
H A Drsa_asn1.c65 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx_crl.c10 * apply to all code found in this distribution, be it the RC4, RSA,
98 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
213 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Dmock_source.cc29 std::map<std::string, std::string>::const_iterator it = data_.find(key); local
30 bool success = it != data_.end();
31 data_ready(success, key, success ? new std::string(it->second) : NULL);
/external/chromium_org/third_party/tlslite/tlslite/
H A D__init__.py5 supports RSA and SRP ciphersuites. TLS Lite is pure python, however it can use
28 from tlslite.api import __version__ # Unsure why this is needed, but it is namespace
/external/chromium_org/tools/android/forwarder2/
H A Dutil.h13 // from the map before deleting it in case its destructor would access the map.
19 const typename Map::iterator it = map->find(key); local
20 if (it == map->end())
22 DeleteRefCountedValueInMapFromIterator(it, map);
28 void DeleteRefCountedValueInMapFromIterator(Iterator it, Map* map) { argument
29 DCHECK(it != map->end());
30 const typename Map::value_type::second_type shared_ptr_copy = it->second;
31 map->erase(it);
/external/chromium_org/ui/views/win/
H A Dscoped_fullscreen_visibility.cc18 FullscreenHWNDs::iterator it = full_screen_windows_->find(hwnd_); local
19 if (it != full_screen_windows_->end()) {
20 it->second++;
34 FullscreenHWNDs::iterator it = full_screen_windows_->find(hwnd_); local
35 DCHECK(it != full_screen_windows_->end());
36 if (--it->second == 0) {
37 full_screen_windows_->erase(it);
/external/libcxx/test/containers/sequences/deque/deque.modifiers/
H A Dpush_back.pass.cpp51 typename C::const_iterator it = c.begin(); local
52 for (int i = 0; i < size; ++i, ++it)
53 assert(*it == i);
H A Dpush_back_rvalue.pass.cpp54 typename C::const_iterator it = c.begin(); local
55 for (int i = 0; i < size; ++i, ++it)
56 assert(*it == MoveOnly(i));
/external/libcxx/test/containers/sequences/dynarray/dynarray.overview/
H A Dat.pass.cpp46 auto it = vals.begin (); local
47 for ( size_t i = 0; i < dyn.size(); ++i, ++it ) {
49 assert ( *it == dyn.at(i));
60 auto it = vals.begin (); local
61 for ( size_t i = 0; i < dyn.size(); ++i, ++it ) {
63 assert ( *it == dyn.at(i));
H A Dindexing.pass.cpp31 auto it = vals.begin (); local
32 for ( size_t i = 0; i < dyn.size(); ++i, ++it ) {
34 assert ( *it == dyn[i]);
41 auto it = vals.begin (); local
42 for ( size_t i = 0; i < dyn.size(); ++i, ++it ) {
44 assert ( *it == dyn[i]);
/external/libcxx/test/containers/unord/unord.map/
H A Dcompare.pass.cpp38 std::unordered_map<Key, int>::iterator it = local
/external/llvm/test/MC/ARM/
H A Ddeprecated-v8.s29 it ge label
39 it ge label
43 it ge label
47 it ge label
/external/openssl/crypto/asn1/
H A Dx_crl.c11 * apply to all code found in this distribution, be it the RC4, RSA,
94 static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
208 static int crl_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
/external/openssl/crypto/cms/
H A Dcms_asn1.c90 static int cms_si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
217 static int cms_ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
315 static int cms_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
362 * we use SEQUENCE OF and tag it to SET OF
/external/openssl/crypto/pkcs7/
H A Dpk7_asn1.c81 static int pk7_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
130 static int si_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
173 static int ri_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
239 * we use SEQUENCE OF and tag it to SET OF

Completed in 318 milliseconds

1234567891011>>