Home | History | Annotate | Download | only in lambda

Lines Matching refs:ValueType

66     std::pair<UnorderedMapKeyType, ValueType>& key_value_pair = *map_iterator;
95 ValueType value = FindBoxedLambda(closure);
135 ValueType value = FindBoxedLambda(closure);
151 map_.Insert({closure_table_copy, ValueType(closure_as_array_object)});
196 BoxTable::ValueType BoxTable::FindBoxedLambda(const ClosureType& closure) const {
199 const std::pair<UnorderedMapKeyType, ValueType>& key_value_pair = *map_iterator;
200 const ValueType& value = key_value_pair.second;
206 return ValueType(nullptr);
229 std::pair<UnorderedMapKeyType, ValueType>& key_value_pair = *map_iterator;
231 const ValueType& old_value = key_value_pair.second;
250 key_value_pair.second = ValueType(new_value);
285 void BoxTable::EmptyFn::MakeEmpty(std::pair<UnorderedMapKeyType, ValueType>& item) const {
289 item.second = ValueType(); // Also clear the GC root.
292 bool BoxTable::EmptyFn::IsEmpty(const std::pair<UnorderedMapKeyType, ValueType>& item) const {