Lines Matching refs:c
31 const char* c = descriptor; in AppendPrettyDescriptor() local
33 while (*c == '[') { in AppendPrettyDescriptor()
35 c++; in AppendPrettyDescriptor()
39 if (*c == 'L') { in AppendPrettyDescriptor()
41 c++; // Skip the 'L'. in AppendPrettyDescriptor()
46 switch (*c) { in AppendPrettyDescriptor()
47 case 'B': c = "byte;"; break; in AppendPrettyDescriptor()
48 case 'C': c = "char;"; break; in AppendPrettyDescriptor()
49 case 'D': c = "double;"; break; in AppendPrettyDescriptor()
50 case 'F': c = "float;"; break; in AppendPrettyDescriptor()
51 case 'I': c = "int;"; break; in AppendPrettyDescriptor()
52 case 'J': c = "long;"; break; in AppendPrettyDescriptor()
53 case 'S': c = "short;"; break; in AppendPrettyDescriptor()
54 case 'Z': c = "boolean;"; break; in AppendPrettyDescriptor()
55 case 'V': c = "void;"; break; // Used when decoding return types. in AppendPrettyDescriptor()
62 const char* p = c; in AppendPrettyDescriptor()
251 uint8_t c = (uint8_t) **pUtf8Ptr; in IsValidPartOfMemberNameUtf8() local
252 if (LIKELY(c <= 0x7f)) { in IsValidPartOfMemberNameUtf8()
254 uint32_t wordIdx = c >> 5; in IsValidPartOfMemberNameUtf8()
255 uint32_t bitIdx = c & 0x1f; in IsValidPartOfMemberNameUtf8()
354 uint8_t c = (uint8_t) *s; in IsValidClassName() local
355 switch (c) { in IsValidClassName()
375 if (c != kSeparator) { in IsValidClassName()