Lines Matching refs:c
33 const char* c = descriptor; in AppendPrettyDescriptor() local
35 while (*c == '[') { in AppendPrettyDescriptor()
37 c++; in AppendPrettyDescriptor()
42 if (*c == 'L') { in AppendPrettyDescriptor()
44 c++; // Skip the 'L'. in AppendPrettyDescriptor()
48 switch (*c) { in AppendPrettyDescriptor()
50 c = "byte"; in AppendPrettyDescriptor()
53 c = "char"; in AppendPrettyDescriptor()
56 c = "double"; in AppendPrettyDescriptor()
59 c = "float"; in AppendPrettyDescriptor()
62 c = "int"; in AppendPrettyDescriptor()
65 c = "long"; in AppendPrettyDescriptor()
68 c = "short"; in AppendPrettyDescriptor()
71 c = "boolean"; in AppendPrettyDescriptor()
74 c = "void"; in AppendPrettyDescriptor()
82 std::string temp(c); in AppendPrettyDescriptor()
327 uint8_t c = (uint8_t) **pUtf8Ptr; in IsValidPartOfMemberNameUtf8() local
328 if (LIKELY(c <= 0x7f)) { in IsValidPartOfMemberNameUtf8()
330 uint32_t wordIdx = c >> 5; in IsValidPartOfMemberNameUtf8()
331 uint32_t bitIdx = c & 0x1f; in IsValidPartOfMemberNameUtf8()
430 uint8_t c = (uint8_t) *s; in IsValidClassName() local
431 switch (c) { in IsValidClassName()
451 if (c != kSeparator) { in IsValidClassName()