Home | History | Annotate | Download | only in portable

Lines Matching full:shorty

485    * be different than shorty.  For example, if a function return value
1681 const char* shorty = cu_->shorty;
1682 uint32_t shorty_size = strlen(shorty);
1697 if (shorty[i] == 'J' || shorty[i] == 'D') {
1794 * Here, we're doing the latter. We map the shorty signature to container
1810 ::llvm::Type* ret_type = irb_->getJType(RemapShorty(cu_->shorty[0]));
1823 for (uint32_t i = 1; i < strlen(cu_->shorty); ++i) {
1824 args_type.push_back(irb_->getJType(RemapShorty(cu_->shorty[i])));