Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: compiled/StringMap.h

Issue 29384812: Issue 4127 - [emscripten] Convert subscription classes to C++ - Part 1 (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Addressed comments Created April 13, 2017, 1:02 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « compiled/String.h ('k') | compiled/bindings.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2017 eyeo GmbH 3 * Copyright (C) 2006-2017 eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 225
226 const_iterator begin() const 226 const_iterator begin() const
227 { 227 {
228 return const_iterator(&mBuckets[0], &mBuckets[mBucketCount]); 228 return const_iterator(&mBuckets[0], &mBuckets[mBucketCount]);
229 } 229 }
230 230
231 const_iterator end() const 231 const_iterator end() const
232 { 232 {
233 return const_iterator(&mBuckets[mBucketCount], &mBuckets[mBucketCount]); 233 return const_iterator(&mBuckets[mBucketCount], &mBuckets[mBucketCount]);
234 } 234 }
235
236 size_type size() const
237 {
238 return mEntryCount;
239 }
235 }; 240 };
236 241
237 struct StringSetEntry 242 struct StringSetEntry
238 { 243 {
239 StringSetEntry() {} 244 StringSetEntry() {}
240 StringSetEntry(const String& key) 245 StringSetEntry(const String& key)
241 : first(key) 246 : first(key)
242 { 247 {
243 } 248 }
244 249
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 const_reference find(const String& key) const 348 const_reference find(const String& key) const
344 { 349 {
345 return super::find(key); 350 return super::find(key);
346 } 351 }
347 352
348 reference find(const String& key) 353 reference find(const String& key)
349 { 354 {
350 return reference(this, key, super::find_bucket(key)); 355 return reference(this, key, super::find_bucket(key));
351 } 356 }
352 }; 357 };
OLDNEW
« no previous file with comments | « compiled/String.h ('k') | compiled/bindings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld