• Home
  • Raw
  • Download

Lines Matching refs:c

234   const char* c = descriptor.c_str();  in PrettyDescriptor()  local
236 while (*c == '[') { in PrettyDescriptor()
238 c++; in PrettyDescriptor()
242 if (*c == 'L') { in PrettyDescriptor()
244 c++; // Skip the 'L'. in PrettyDescriptor()
249 switch (*c) { in PrettyDescriptor()
250 case 'B': c = "byte;"; break; in PrettyDescriptor()
251 case 'C': c = "char;"; break; in PrettyDescriptor()
252 case 'D': c = "double;"; break; in PrettyDescriptor()
253 case 'F': c = "float;"; break; in PrettyDescriptor()
254 case 'I': c = "int;"; break; in PrettyDescriptor()
255 case 'J': c = "long;"; break; in PrettyDescriptor()
256 case 'S': c = "short;"; break; in PrettyDescriptor()
257 case 'Z': c = "boolean;"; break; in PrettyDescriptor()
258 case 'V': c = "void;"; break; // Used when decoding return types. in PrettyDescriptor()
266 const char* p = c; in PrettyDescriptor()
413 std::string PrettyClass(const mirror::Class* c) { in PrettyClass() argument
414 if (c == NULL) { in PrettyClass()
419 result += PrettyDescriptor(c); in PrettyClass()
424 std::string PrettyClassAndClassLoader(const mirror::Class* c) { in PrettyClassAndClassLoader() argument
425 if (c == NULL) { in PrettyClassAndClassLoader()
430 result += PrettyDescriptor(c); in PrettyClassAndClassLoader()
432 result += PrettyTypeOf(c->GetClassLoader()); in PrettyClassAndClassLoader()
718 uint8_t c = (uint8_t) **pUtf8Ptr; in IsValidPartOfMemberNameUtf8() local
719 if (c <= 0x7f) { in IsValidPartOfMemberNameUtf8()
721 uint32_t wordIdx = c >> 5; in IsValidPartOfMemberNameUtf8()
722 uint32_t bitIdx = c & 0x1f; in IsValidPartOfMemberNameUtf8()
819 uint8_t c = (uint8_t) *s; in IsValidClassName() local
820 switch (c) { in IsValidClassName()
840 if (c != separator) { in IsValidClassName()