HomeSort by relevance Sort by last modified time
    Searched full:shorty_char (Results 1 - 2 of 2) sorted by null

  /art/runtime/entrypoints/jni/
jni_entrypoints.cc 82 char shorty_char = mh.GetShorty()[i]; local
83 if (shorty_char == 'L') {
86 if (shorty_char == 'J' || shorty_char == 'D') {
  /art/runtime/
dex_file_verifier.cc 68 static bool CheckShortyDescriptorMatch(char shorty_char, const char* descriptor,
70 switch (shorty_char) {
85 if ((descriptor[0] != shorty_char) || (descriptor[1] != '\0')) {
86 LOG(ERROR) << StringPrintf("Shorty vs. primitive type mismatch: '%c', '%s'", shorty_char, descriptor);
92 LOG(ERROR) << StringPrintf("Shorty vs. type mismatch: '%c', '%s'", shorty_char, descriptor);
97 LOG(ERROR) << "Bad shorty character: '" << shorty_char << "'";
    [all...]

Completed in 66 milliseconds