Searched refs:shorty_ (Results 1 – 3 of 3) sorted by relevance
31 bool IsReturnAReference() const { return shorty_[0] == 'L'; } in IsReturnAReference()34 return Primitive::GetType(shorty_[0]); in GetReturnType()38 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[0])); in SizeOfReturnValue()79 shorty_(shorty) { in CallingConvention()85 char ch = shorty_[i]; in CallingConvention()117 char ch = shorty_[param]; in IsParamALongOrDouble()127 char ch = shorty_[param]; in IsParamAFloatOrDouble()137 return shorty_[param] == 'D'; in IsParamADouble()146 return shorty_[param] == 'J'; in IsParamALong()155 return shorty_[param] == 'L'; in IsParamAReference()[all …]
40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) { in ArgArray()105 switch (shorty_[i]) { in BuildArgArrayFromVarArgs()127 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromVarArgs()141 switch (shorty_[i]) { in BuildArgArrayFromJValues()167 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromJValues()182 switch (shorty_[i]) { in BuildArgArrayFromFrame()201 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromFrame()225 if (((shorty_[i] == 'L') && (arg != nullptr)) || ((arg == nullptr && shorty_[i] != 'L'))) { in BuildArgArrayFromObjectArray()267 switch (shorty_[i]) { in BuildArgArrayFromObjectArray()324 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i]; in BuildArgArrayFromObjectArray()[all …]
311 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len), in QuickArgumentVisitor()415 cur_type_ = Primitive::GetType(shorty_[shorty_index]); in VisitArguments()512 LOG(FATAL) << "Unexpected type: " << cur_type_ << " in " << shorty_; in VisitArguments()519 const char* const shorty_; member in art::QuickArgumentVisitor