HomeSort by relevance Sort by last modified time
    Searched refs:CharByteWidth (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/Lex/
LiteralSupport.cpp 260 FullSourceLoc Loc, unsigned CharByteWidth,
272 assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth) &&
278 if (CharByteWidth == 4) {
287 if (CharByteWidth == 2) {
306 assert(CharByteWidth == 1 && "UTF-8 encoding is only for 1 byte characters");
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 172 unsigned CharByteWidth;
186 MaxTokenLength(0), SizeBound(0), CharByteWidth(0), Kind(tok::unknown),
201 return GetStringLength() / CharByteWidth;
  /external/clang/lib/AST/
Expr.cpp 582 int CharByteWidth = 0;
586 CharByteWidth = target.getCharWidth();
589 CharByteWidth = target.getWCharWidth();
592 CharByteWidth = target.getChar16Width();
595 CharByteWidth = target.getChar32Width();
598 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
599 CharByteWidth /= 8;
600 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]

Completed in 21 milliseconds