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

1 2

  /art/compiler/jni/
jni_cfi_test.cc 61 const char* shorty = "IIFII"; local
71 shorty,
74 ManagedRuntimeCallingConvention::Create(&arena, is_static, is_synchronized, shorty, isa));
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMethodProtoReference.java 47 @Nonnull final BuilderStringReference shorty; field in class:BuilderMethodProtoReference
52 public BuilderMethodProtoReference(@Nonnull BuilderStringReference shorty, @Nonnull BuilderTypeList parameterTypes,
54 this.shorty = shorty;
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
CodeItem.java 42 public String shorty; field in class:CodeItem.MethodMetaInfo
  /art/compiler/jni/quick/
jni_compiler.cc 129 const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx)); local
173 for (size_t i = 0; i < strlen(shorty); ++i) {
174 CHECK_NE(Primitive::kPrimNot, Primitive::GetType(shorty[i]))
175 << "@CriticalNative methods' shorty types must not have illegal references "
190 shorty,
196 &arena, is_static, is_synchronized, shorty, instruction_set));
    [all...]
  /art/compiler/utils/
assembler_thumb_test.cc 1649 const char* shorty = "IIFII"; local
    [all...]
test_dex_file_builder.h 67 AddString(proto_key.shorty);
185 Write32(raw_offset + 0u, GetStringIdx(entry.first.shorty));
299 std::string shorty; member in struct:art::TestDexFileBuilder::ProtoKey
348 key.shorty += (*args == '[') ? 'L' : *args;
  /art/runtime/interpreter/
interpreter.cc 45 const StringPiece& shorty,
54 if (shorty == "L") {
65 } else if (shorty == "V") {
72 } else if (shorty == "Z") {
79 } else if (shorty == "BI") {
86 } else if (shorty == "II") {
93 } else if (shorty == "LL") {
106 } else if (shorty == "IIZ") {
113 } else if (shorty == "ILI") {
123 } else if (shorty == "SIZ")
404 const char* shorty = method->GetShorty(&shorty_len); local
    [all...]
interpreter_common.cc 998 const char* shorty = method->GetShorty(&shorty_len); local
    [all...]
  /dalvik/libdex/
DexProto.cpp 227 const char* shorty = dexProtoGetShorty(pProto); local
231 shorty++;
234 switch (*(shorty++)) {
DexSwapVerify.cpp 609 /* Helper for crossVerifyProtoIdItem(), which checks a shorty character
612 static bool shortyDescMatch(char shorty, const char* descriptor, bool
614 switch (shorty) {
630 if ((descriptor[0] != shorty) || (descriptor[1] != '\0')) {
631 ALOGE("Shorty vs. primitive type mismatch: '%c', '%s'",
632 shorty, descriptor);
639 ALOGE("Shorty vs. type mismatch: '%c', '%s'",
640 shorty, descriptor);
646 ALOGE("Bogus shorty: '%c'", shorty);
657 const char* shorty = local
    [all...]
  /art/runtime/
method_handles.cc 388 const char* shorty = method->GetShorty(&shorty_length); local
393 for (const char* c = shorty + 1; *c != '\0'; ++c) {
    [all...]
reflection.cc 42 ArgArray(const char* shorty, uint32_t shorty_len)
43 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
49 // Analyze shorty to see if we need the large arg array.
51 char c = shorty[i];
131 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
171 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
205 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
343 LOG(FATAL) << "Unexpected shorty character: " << shorty_[i];
447 const char* shorty)
453 method->Invoke(soa.Self(), args, arg_array->GetNumBytes(), result, shorty);
475 const char* shorty = local
506 const char* shorty = local
538 const char* shorty = local
570 const char* shorty = local
659 const char* shorty = np_method->GetShorty(&shorty_len); local
703 const char* shorty; local
    [all...]
java_vm_ext.cc 147 void* FindSymbol(const std::string& symbol_name, const char* shorty = nullptr) {
149 ? FindSymbolWithNativeBridge(symbol_name.c_str(), shorty)
159 void* FindSymbolWithNativeBridge(const std::string& symbol_name, const char* shorty) {
163 return android::NativeBridgeGetTrampoline(handle_, symbol_name.c_str(), shorty, len);
256 const char* shorty = library->NeedsNativeBridge() local
259 void* fn = library->FindSymbol(jni_short_name, shorty);
261 fn = library->FindSymbol(jni_long_name, shorty);
    [all...]
stack.cc 745 const char* shorty = method->GetShorty(&shorty_len); local
748 if (shorty[i] == 'L') {
    [all...]
check_jni.cc 880 const char* shorty = m->GetShorty(&len); local
884 shorty++;
886 if (!CheckPossibleHeapValue(soa, shorty[i], args.GetValue(shorty[i]))) {
990 const char* shorty = m->GetShorty(&len); local
994 shorty++;
999 TracePossibleHeapValue(soa, entry, shorty[i], args.GetValue(shorty[i]), msg);
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/
MutatableCode.java 78 public String shorty; field in class:MutatableCode
372 type = shorty.charAt(shortyIdx);
Program.java 305 String shorty = rawDexFile.stringDatas.get(protoIdItem.shortyIdx).getString(); local
313 codeItem.meta.shorty = shorty;
IdCreator.java 248 public int findOrCreateMethodId(String className, String methodName, String shorty) {
249 int methodIdIdx = findMethodId(className, methodName, shorty);
253 return createMethodId(className, methodName, shorty);
695 String shorty = convertSignatureToShorty(signature); local
717 // Search for (or create) the shorty string.
718 int shortyIdx = findOrCreateString(shorty);
754 String shorty = convertSignatureToShorty(signature); local
758 int shortyIdx = findString(shorty);
  /art/runtime/jit/
jit.cc 403 const char* shorty,
442 const char* shorty = method->GetShorty(); local
539 shorty,
  /art/test/115-native-bridge/
nativebridge.cc 78 const char* shorty = gNativeBridgeArtCallbacks->getMethodShorty(env, mid); local
79 if (strcmp(shorty, methods[i].signature) == 0) {
80 printf(" name:%s, signature:%s, shorty:%s.\n",
81 methods[i].name, nb_method->signature, shorty);
451 extern "C" void* native_bridge_getTrampoline(void* handle, const char* name, const char* shorty,
453 printf("Getting trampoline for %s with shorty %s.\n", name, shorty);
  /art/compiler/optimizing/
instruction_builder.cc 441 const char* shorty = dex_compilation_unit_->GetShorty(); local
467 Primitive::GetType(shorty[shorty_pos]),
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 392 QuickArgumentVisitor(ArtMethod** sp, bool is_static, const char* shorty,
394 is_static_(is_static), shorty_(shorty), shorty_len_(shorty_len),
644 BuildQuickShadowFrameVisitor(ArtMethod** sp, bool is_static, const char* shorty,
646 QuickArgumentVisitor(sp, is_static, shorty, shorty_len), sf_(sf), cur_reg_(first_arg_reg) {}
711 const char* shorty = non_proxy_method->GetShorty(&shorty_len); local
774 BuildQuickShadowFrameVisitor shadow_frame_builder(sp, method->IsStatic(), shorty, shorty_len,
918 const char* shorty = non_proxy_method->GetShorty(&shorty_len); local
1091 const char* shorty = local
1671 LOG(FATAL) << "Unexpected type: " << cur_type_ << " in " << shorty; local
2088 const char* shorty = called->GetShorty(&shorty_len); local
2272 const char* shorty = dex_file->GetMethodShorty(dex_file->GetMethodId(method_idx), &shorty_len); local
2422 const char* shorty = dex_file->GetMethodShorty(dex_file->GetMethodId(dex_method_idx), local
2504 const char* shorty = dex_file->GetShorty(proto_idx); local
    [all...]
  /external/ImageMagick/coders/
tiff.c 768 shorty;
770 shorty=0;
771 if (TIFFGetField(tiff,exif_info[i].tag,&shorty,&sans,&sans) == 1)
772 (void) FormatLocaleString(value,MagickPathExtent,"%d",shorty);
780 *shorty;
785 tiff_status=TIFFGetField(tiff,exif_info[i].tag,&shorty_num,&shorty,
789 shorty_num != 0 ? shorty[0] : 0);
762 shorty; local
774 *shorty; 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/runtime/verifier/
method_verifier.cc 4177 const char* shorty = dex_file_->GetMethodShorty(method_id, &length); local
    [all...]

Completed in 640 milliseconds

1 2