Home
last modified time | relevance | path

Searched refs:values_ (Results 1 - 9 of 9) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/
H A Dets_to_string_cache_test.cpp131 std::generate(values_.begin(), values_.end(), [&dist, this]() { return dist(engine_); }); in SetupSimple()
137 std::generate(values_.begin(), values_.end(), [&dist, this]() { return std::pow(2U, dist(engine_)); }); in SetupExp()
144 std::generate(values_.begin(), values_.end(), [&dist, this]() { in SetupRepeatedHashes()
159 std::generate(values_.begin(), values_.begin() + UNIQUE_VALUES, [&dist, this]() { in SetupRepeatedHashesAndValues()
167 for (size_t i = UNIQUE_VALUES; i < values_.size(); i++) { in SetupRepeatedHashesAndValues()
168 values_[ in SetupRepeatedHashesAndValues()
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dframe_states.h76 : values_(numVregs, chunk) {} in FrameContext()
80 ASSERT(index < values_.size()); in ValuesAt()
81 return values_[index]; in ValuesAt()
86 ASSERT(index < values_.size());
87 values_[index] = gate;
98 ChunkVector<GateRef> values_;
/arkcompiler/runtime_core/static_core/assembler/
H A Dmeta.h260 values_.clear(); in Reset()
285 std::make_unique<ArrayValue>(componentType_.value(), std::move(values_))); in CreateAnnotationElement()
288 return AnnotationElement(name_, std::make_unique<ScalarValue>(values_.front())); in CreateAnnotationElement()
321 if (!IsArray() && values_.empty()) { in IsCompleted()
333 std::vector<ScalarValue> values_; member in ark::pandasm::AnnotationMetadata::AnnotationElementBuilder
H A Dannotation.h507 : Value(Type::ARRAY), componentType_(componentType), values_(std::move(values)) in ArrayValue()
518 return values_; in GetValues()
528 std::vector<ScalarValue> values_; member in ark::pandasm::ArrayValue
H A Dmeta.cpp233 values_.push_back(res.Value()); in AddValue()
/arkcompiler/runtime_core/assembler/
H A Dmeta.h300 values_.clear();
325 std::make_unique<ArrayValue>(component_type_.value(), std::move(values_)));
328 return AnnotationElement(name_, std::make_unique<ScalarValue>(values_.front()));
361 if (!IsArray() && values_.empty()) {
373 std::vector<ScalarValue> values_;
H A Dannotation.h519 : Value(Type::ARRAY), component_type_(component_type), values_(std::move(values)) in ArrayValue()
530 return values_; in GetValues()
540 std::vector<ScalarValue> values_; member in panda::pandasm::ArrayValue
H A Dmeta.cpp232 values_.push_back(res.Value()); in AddValue()
/arkcompiler/runtime_core/static_core/runtime/arch/
H A Dhelpers.h527 explicit ValueWriter(PandaVector<Value> *values) : values_(values) {}
533 values_->push_back(Value(*v));
539 values_->push_back(Value(v));
546 PandaVector<Value> *values_;

Completed in 8 milliseconds