Searched refs:MapIterator (Results 1 – 7 of 7) sorted by relevance
/external/v8/src/js/ |
D | collection-iterator.js | 18 var MapIterator = utils.ImportNow("MapIterator"); 132 return new MapIterator(this, ITERATOR_KIND_ENTRIES); 141 return new MapIterator(this, ITERATOR_KIND_KEYS); 150 return new MapIterator(this, ITERATOR_KIND_VALUES); 155 %SetCode(MapIterator, MapIteratorConstructor); 156 %FunctionSetInstanceClassName(MapIterator, 'Map Iterator'); 157 utils.InstallFunctions(MapIterator.prototype, DONT_ENUM, [ 161 %AddNamedProperty(MapIterator.prototype, toStringTagSymbol,
|
D | collection.js | 19 var MapIterator; 27 MapIterator = from.MapIterator; 431 var iterator = new MapIterator(this, ITERATOR_KIND_ENTRIES);
|
/external/v8/test/mjsunit/regress/ |
D | regress-3281.js | 12 var MapIterator = builtins.ImportNow("MapIterator"); variable 14 var mapIterator = new MapIterator(m, 2);
|
D | regress-403292.js | 8 var MapIterator = builtins.ImportNow("MapIterator"); variable 28 __v_6 = new MapIterator(__v_4, 2);
|
/external/google-breakpad/src/processor/ |
D | contained_range_map-inl.h | 75 MapIterator iterator_base = map_->lower_bound(base); in StoreRange() 76 MapIterator iterator_high = map_->lower_bound(high); in StoreRange() 77 MapIterator iterator_end = map_->end(); in StoreRange()
|
D | contained_range_map.h | 115 typedef typename AddressToRangeMap::iterator MapIterator; typedef
|
/external/v8/test/cctest/ |
D | test-types.cc | 99 typedef typename TypesInstance::MapVector::iterator MapIterator; typedef 318 for (MapIterator mt = T.maps.begin(); mt != T.maps.end(); ++mt) { in Class() 325 for (MapIterator mt = T.maps.begin(); mt != T.maps.end(); ++mt) { in Class() 332 for (MapIterator mt1 = T.maps.begin(); mt1 != T.maps.end(); ++mt1) { in Class() 333 for (MapIterator mt2 = T.maps.begin(); mt2 != T.maps.end(); ++mt2) { in Class() 879 for (MapIterator mt1 = T.maps.begin(); mt1 != T.maps.end(); ++mt1) { in Is2() 880 for (MapIterator mt2 = T.maps.begin(); mt2 != T.maps.end(); ++mt2) { in Is2() 1143 for (MapIterator mt1 = T.maps.begin(); mt1 != T.maps.end(); ++mt1) { in NowIs() 1144 for (MapIterator mt2 = T.maps.begin(); mt2 != T.maps.end(); ++mt2) { in NowIs() 1154 for (MapIterator mt = T.maps.begin(); mt != T.maps.end(); ++mt) { in NowIs() [all …]
|