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

  /external/clang/include/clang/Lex/
LiteralSupport.h 176 unsigned CharByteWidth;
190 MaxTokenLength(0), SizeBound(0), CharByteWidth(0), Kind(tok::unknown),
205 return GetStringLength() / CharByteWidth;
  /external/clang/lib/Lex/
LiteralSupport.cpp 290 const char *ThisTokEnd, unsigned CharByteWidth,
293 if (CharByteWidth == 4)
307 if (CharByteWidth == 2)
327 FullSourceLoc Loc, unsigned CharByteWidth,
339 assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth) &&
345 if (CharByteWidth == 4) {
354 if (CharByteWidth == 2) {
373 assert(CharByteWidth == 1 && "UTF-8 encoding is only for 1 byte characters")
    [all...]
  /external/clang/lib/AST/
Expr.cpp 736 int CharByteWidth = 0;
740 CharByteWidth = target.getCharWidth();
743 CharByteWidth = target.getWCharWidth();
746 CharByteWidth = target.getChar16Width();
749 CharByteWidth = target.getChar32Width();
752 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
753 CharByteWidth /= 8;
754 assert((CharByteWidth==1 || CharByteWidth==2 || CharByteWidth==4
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]

Completed in 78 milliseconds