Searched refs:CollectionKind (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/compiler/ |
D | js-operator.h | 508 explicit CreateCollectionIteratorParameters(CollectionKind collection_kind, in CreateCollectionIteratorParameters() 511 CHECK(!(collection_kind == CollectionKind::kSet && in CreateCollectionIteratorParameters() 515 CollectionKind collection_kind() const { return collection_kind_; } in collection_kind() 519 CollectionKind const collection_kind_; 719 const Operator* CreateCollectionIterator(CollectionKind, IterationKind); in NON_EXPORTED_BASE()
|
D | js-call-reducer.h | 171 CollectionKind collection_kind, 174 CollectionKind collection_kind);
|
D | js-call-reducer.cc | 3676 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall() 3679 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall() 3682 return ReduceCollectionPrototypeSize(node, CollectionKind::kMap); in ReduceJSCall() 3684 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall() 3691 return ReduceCollectionIteration(node, CollectionKind::kSet, in ReduceJSCall() 3694 return ReduceCollectionPrototypeSize(node, CollectionKind::kSet); in ReduceJSCall() 3696 return ReduceCollectionIteration(node, CollectionKind::kSet, in ReduceJSCall() 6368 InstanceType InstanceTypeForCollectionKind(CollectionKind kind) { in InstanceTypeForCollectionKind() 6370 case CollectionKind::kMap: in InstanceTypeForCollectionKind() 6372 case CollectionKind::kSet: in InstanceTypeForCollectionKind() [all …]
|
D | js-create-lowering.cc | 859 CollectionKind collection_kind, in MapForCollectionIterationKind() 862 case CollectionKind::kSet: in MapForCollectionIterationKind() 872 case CollectionKind::kMap: in MapForCollectionIterationKind()
|
D | js-operator.cc | 1138 CollectionKind collection_kind, IterationKind iteration_kind) { in CreateCollectionIterator()
|
/external/v8/src/ |
D | globals.h | 1402 enum class CollectionKind { kMap, kSet }; enum 1404 inline std::ostream& operator<<(std::ostream& os, CollectionKind kind) { 1406 case CollectionKind::kMap: 1408 case CollectionKind::kSet:
|