HomeSort by relevance Sort by last modified time
    Searched defs:shorty (Results 1 - 22 of 22) sorted by null

  /art/runtime/
method_helper.h 65 const char* shorty = GetShorty(); local
68 if (shorty[i] == 'L') {
90 param++; // 0th argument must skip return value at start of the shorty
reflection.cc 39 explicit ArgArray(const char* shorty, uint32_t shorty_len)
40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
46 // Analyze shorty to see if we need the large arg array.
48 char c = shorty[i];
133 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
173 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
207 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
331 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
411 const char* shorty)
417 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
434 const char* shorty = method->GetShorty(&shorty_len); local
454 const char* shorty = method->GetShorty(&shorty_len); local
474 const char* shorty = method->GetShorty(&shorty_len); local
495 const char* shorty = method->GetShorty(&shorty_len); local
577 const char* shorty = m->GetShorty(&shorty_len); local
630 const char* shorty; local
    [all...]
jni_internal.cc 432 const char* shorty = nullptr; local
434 shorty = m->GetShorty(&len);
436 return android::NativeBridgeGetTrampoline(handle_, symbol_name.c_str(), shorty, len);
    [all...]
debugger.cc 3555 const char* shorty = m->GetShorty(&shorty_len); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderProtoReference.java 44 @Nonnull final BuilderStringReference shorty; field in class:BuilderProtoReference
49 public BuilderProtoReference(@Nonnull BuilderStringReference shorty, @Nonnull BuilderTypeList parameterTypes,
51 this.shorty = shorty;
  /art/compiler/dex/
compiler_ir.h 61 const char* shorty; // compiling method's shorty. member in struct:art::CompilationUnit
frontend.cc 126 // Supported shorty types per instruction set. nullptr means that all are available.
489 shorty(nullptr),
536 static bool CanCompileShorty(const char* shorty, InstructionSet instruction_set) {
543 uint32_t shorty_size = strlen(shorty);
547 if (strchr(supported_types, shorty[i]) == nullptr) {
570 const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx)); local
571 if (!CanCompileShorty(shorty, cu.instruction_set)) {
572 VLOG(compiler) << "Unsupported shorty : " << shorty;
609 << "' with shorty : " << invoke_method_shorty
    [all...]
vreg_analysis.cc 221 switch (cu_->shorty[0]) {
260 const char* shorty = GetShortyFromTargetIdx(target_idx); local
262 if ((shorty[0] == 'F') || (shorty[0] == 'D')) {
271 if (shorty[0] == 'D') {
287 if (strlen(shorty) > 1) {
289 DCHECK_LT(cpos, strlen(shorty));
290 switch (shorty[cpos++]) {
474 const char* shorty = cu_->shorty; local
    [all...]
  /art/compiler/jni/portable/
jni_compiler.cc 284 const char* shorty = dex_compilation_unit_->GetShorty(&shorty_size); local
289 switch (shorty[0]) {
300 default: LOG(FATAL) << "Unreachable: unexpected return type in shorty " << shorty;
314 args_type.push_back(irb_.getJType(shorty[i]));
  /art/compiler/jni/quick/
jni_compiler.cc 64 const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx)); local
69 JniCallingConvention::Create(is_static, is_synchronized, shorty, instruction_set));
73 ManagedRuntimeCallingConvention::Create(is_static, is_synchronized, shorty, instruction_set));
  /art/runtime/interpreter/
interpreter.cc 132 static void InterpreterJni(Thread* self, ArtMethod* method, const StringPiece& shorty,
139 if (shorty == "L") {
150 } else if (shorty == "V") {
157 } else if (shorty == "Z") {
164 } else if (shorty == "BI") {
171 } else if (shorty == "II") {
178 } else if (shorty == "LL") {
191 } else if (shorty == "IIZ") {
198 } else if (shorty == "ILI") {
207 } else if (shorty == "SIZ")
438 const char* shorty = method->GetShorty(&shorty_len); local
    [all...]
interpreter_common.cc 554 // We need to do runtime check on reference assignment. We need to load the shorty
558 const char* shorty = method->GetShorty(&shorty_len); local
569 // Handle receiver apart since it's not part of the shorty.
581 switch (shorty[shorty_pos + 1]) {
    [all...]
  /art/runtime/mirror/
art_method.cc 107 size_t ArtMethod::NumArgRegisters(const StringPiece& shorty) {
108 CHECK_LE(1, shorty.length());
110 for (int i = 1; i < shorty.length(); ++i) {
111 char ch = shorty[i];
285 const char* shorty) {
294 CHECK_STREQ(GetShorty(), shorty); local
332 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
334 (*art_quick_invoke_static_stub)(this, args, args_size, self, result, shorty);
337 (*art_quick_invoke_stub)(this, args, args_size, self, result, shorty);
340 (*art_portable_invoke_stub)(this, args, args_size, self, result, shorty[0])
    [all...]
  /art/test/115-native-bridge/
nativebridge.cc 73 const char* shorty = gNativeBridgeArtCallbacks->getMethodShorty(env, mid); local
74 if (strcmp(shorty, methods[i].signature) == 0) {
75 printf(" name:%s, signature:%s, shorty:%s.\n",
76 methods[i].name, nb_method->signature, shorty);
243 extern "C" void* native_bridge_getTrampoline(void* handle, const char* name, const char* shorty,
245 printf("Getting trampoline for %s with shorty %s.\n", name, shorty);
  /dalvik/libdex/
DexProto.cpp 227 const char* shorty = dexProtoGetShorty(pProto); local
231 shorty++;
234 switch (*(shorty++)) {
DexSwapVerify.cpp 625 /* Helper for crossVerifyProtoIdItem(), which checks a shorty character
628 static bool shortyDescMatch(char shorty, const char* descriptor, bool
630 switch (shorty) {
646 if ((descriptor[0] != shorty) || (descriptor[1] != '\0')) {
647 ALOGE("Shorty vs. primitive type mismatch: '%c', '%s'",
648 shorty, descriptor);
655 ALOGE("Shorty vs. type mismatch: '%c', '%s'",
656 shorty, descriptor);
662 ALOGE("Bogus shorty: '%c'", shorty);
673 const char* shorty = local
    [all...]
  /art/compiler/optimizing/
builder.cc 89 const char* shorty = dex_compilation_unit_->GetShorty(); local
105 switch (shorty[pos++]) {
114 new (arena_) HParameterValue(parameter_index++, Primitive::GetType(shorty[pos - 1]));
  /external/oprofile/libpopt/
popt.c 123 /*@null@*/ const void * myData, int shorty)
139 invokeCallbacksOPTION(con, opt->arg, myOpt, myData, shorty);
145 ((myOpt->shortName && opt->shortName && shorty &&
719 int shorty = 0; local
816 shorty = 0;
842 shorty = 1;
976 invokeCallbacksOPTION(con, con->options, opt, cbData, shorty);
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 485 * be different than shorty. For example, if a function return value
1681 const char* shorty = cu_->shorty; local
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 217 QuickArgumentVisitor(StackReference<mirror::ArtMethod>* sp, bool is_static, const char* shorty,
219 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
223 + StackArgumentStartFromShorty(is_static, shorty, shorty_len)),
381 static size_t StackArgumentStartFromShorty(bool is_static, const char* shorty,
417 const char* shorty, uint32_t shorty_len, ShadowFrame* sf,
419 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
485 const char* shorty = method->GetShorty(&shorty_len); local
486 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len,
521 const char* shorty, uint32_t shorty_len,
523 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), soa_(soa), args_(args) {
614 const char* shorty = proxy_method->GetShorty(&shorty_len); local
757 const char* shorty = local
1240 LOG(FATAL) << "Unexpected type: " << cur_type_ << " in " << shorty; local
1612 const char* shorty = called->GetShorty(&shorty_len); local
1755 const char* shorty = dex_file->GetMethodShorty(dex_file->GetMethodId(method_idx), &shorty_len); local
1894 const char* shorty = dex_file->GetMethodShorty(dex_file->GetMethodId(dex_method_idx), local
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetGetterTests.java 806 short shorty = res.getShort(6); local
807 assertEquals(3,shorty);
810 shorty = res.getShort(6);
811 assertEquals(0,shorty);
822 short shorty = res.getShort("Sint"); local
823 assertEquals(3,shorty);
826 shorty = res.getShort("Sint");
827 assertEquals(0,shorty);
    [all...]
  /art/compiler/llvm/
gbc_expander.cc 2671 const char* shorty = dex_compilation_unit_->GetDexFile()->GetMethodShorty(method_id, &shorty_size); local
    [all...]

Completed in 1072 milliseconds