Home
last modified time | relevance | path

Searched refs:CharConstant (Results 1 – 7 of 7) sorted by relevance

/external/clang/test/Sema/
Dformat-strings-enum-fixed-type.cpp74 typedef enum : char { CharConstant = 'a' } CharEnum; enumerator
80 printf("%hhd", CharConstant); // no-warning in testChar()
84 printf("%hd", CharConstant); // expected-warning{{format specifies type 'short'}} in testChar()
88 printf("%d", CharConstant); // no-warning in testChar()
91 printf("%lld", CharConstant); // expected-warning{{format specifies type 'long long'}} in testChar()
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java59 else if (type1 == TokenId.CharConstant in compute0()
60 && type2 == TokenId.CharConstant) in compute0()
61 newType = TokenId.CharConstant; in compute0()
/external/javassist/src/main/javassist/compiler/
DTokenId.java103 int CharConstant = 401; field
DParser.java871 case CharConstant : in parseUnaryExpr()
946 || t == IntConstant || t == CharConstant in nextIsClassCast()
1016 case CharConstant : in parsePostfix()
DLex.java190 return CharConstant; in readCharConst()
DTypeChecker.java995 if (type == IntConstant || type == CharConstant) in atIntConst()
DCodeGen.java1900 if (type == IntConstant || type == CharConstant) { in atIntConst()