Home | History | Annotate | Download | only in runtime

Lines Matching refs:ch

417         char ch = *fmt++;
418 if (ch == 'B') { // jbyte
425 } else if (ch == 'C') { // jchar
432 } else if (ch == 'F' || ch == 'D') { // jfloat, jdouble
434 } else if (ch == 'I' || ch == 'S') { // jint, jshort
436 } else if (ch == 'J') { // jlong
438 } else if (ch == 'Z') { // jboolean
440 } else if (ch == 'V') { // void
442 } else if (ch == 'v') { // JavaVM*
445 } else if (ch == 'E') { // JNIEnv*
448 } else if (ch == 'L' || ch == 'a' || ch == 's') { // jobject, jarray, jstring
456 } else if (ch == 'b') { // jboolean (JNI-style)
459 } else if (ch == 'c') { // jclass
474 } else if (ch == 'f') { // jfieldID
481 } else if (ch == 'z') { // non-negative jsize
487 } else if (ch == 'm') { // jmethodID
494 } else if (ch == 'p') { // void* ("pointer")
501 } else if (ch == 'r') { // jint (release mode)
512 } else if (ch == 'u') { // const char* (Modified UTF-8)
519 } else if (ch == '.') {
522 JniAbortF(function_name_, "unknown trace format specifier: %c", ch);
551 char ch = *fmt;
552 if (ch == 'a') {
554 } else if (ch == 'c') {
556 } else if (ch == 'L') {
558 } else if (ch == 'r') {
560 } else if (ch == 's') {
562 } else if (ch == 'u') {
569 } else if (ch == 'z') {
571 } else if (strchr("BCISZbfmpEv", ch) != NULL) {
573 } else if (ch == 'D' || ch == 'F') {
575 } else if (ch == 'J') {
577 } else if (ch == '.') {
579 LOG(FATAL) << "Unknown check format specifier: " << ch;