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

  /external/clang/include/clang/Lex/
LiteralSupport.h 191 unsigned CharByteWidth;
206 MaxTokenLength(0), SizeBound(0), CharByteWidth(0), Kind(tok::unknown),
221 return GetStringLength() / CharByteWidth;
  /external/clang/lib/Lex/
LiteralSupport.cpp 334 const char *ThisTokEnd, unsigned CharByteWidth,
337 if (CharByteWidth == 4)
351 if (CharByteWidth == 2)
371 FullSourceLoc Loc, unsigned CharByteWidth,
383 assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth == 4) &&
389 if (CharByteWidth == 4) {
398 if (CharByteWidth == 2) {
417 assert(CharByteWidth == 1 && "UTF-8 encoding is only for 1 byte characters")
    [all...]
  /external/clang/lib/AST/
Expr.cpp 814 int CharByteWidth = 0;
818 CharByteWidth = target.getCharWidth();
821 CharByteWidth = target.getWCharWidth();
824 CharByteWidth = target.getChar16Width();
827 CharByteWidth = target.getChar32Width();
830 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
831 CharByteWidth /= 8;
832 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4
    [all...]
MicrosoftMangle.cpp     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 1167 milliseconds