Lines Matching defs:parameter
163 HParameterValue* parameter =
165 entry_block_->AddInstruction(parameter);
167 entry_block_->AddInstruction(new (arena_) HStoreLocal(local, parameter));
173 HParameterValue* parameter =
175 entry_block_->AddInstruction(parameter);
177 // Store the parameter value in the local that the dex code will use
178 // to reference that parameter.
179 entry_block_->AddInstruction(new (arena_) HStoreLocal(local, parameter));
180 bool is_wide = (parameter->GetType() == Primitive::kPrimLong)
181 || (parameter->GetType() == Primitive::kPrimDouble);