HomeSort by relevance Sort by last modified time
    Searched refs:shorty_ (Results 1 - 4 of 4) sorted by null

  /art/compiler/jni/quick/
calling_convention.h 33 bool IsReturnAReference() const { return shorty_[0] == 'L'; }
36 return Primitive::GetType(shorty_[0]);
40 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[0]));
83 shorty_(shorty) {
89 char ch = shorty_[i];
121 char ch = shorty_[param];
131 char ch = shorty_[param];
141 return shorty_[param] == 'D';
150 return shorty_[param] == 'J';
159 return shorty_[param] == 'L'
217 std::string shorty_; member in class:art::CallingConvention
    [all...]
  /art/runtime/
reflection.cc 43 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
109 switch (shorty_[i]) {
131 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
145 switch (shorty_[i]) {
171 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
186 switch (shorty_[i]) {
205 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
235 if (((shorty_[i] == 'L') && (arg != nullptr)) ||
236 ((arg == nullptr && shorty_[i] != 'L'))) {
286 switch (shorty_[i])
356 const char* const shorty_; member in class:art::ArgArray
    [all...]
  /art/dexlayout/
dex_ir.h 532 : shorty_(shorty), return_type_(return_type), parameters_(parameters)
538 const StringId* Shorty() const { return shorty_; }
545 const StringId* shorty_; member in class:art::dex_ir::ProtoId
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 394 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
498 cur_type_ = Primitive::GetType(shorty_[shorty_index]);
604 LOG(FATAL) << "Unexpected type: " << cur_type_ << " in " << shorty_; local
611 const char* const shorty_; member in class:art::QuickArgumentVisitor
    [all...]

Completed in 152 milliseconds