HomeSort by: relevance | last modified time | path
    Searched defs:CharByteWidth (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
LiteralSupport.h 218 unsigned CharByteWidth;
233 MaxTokenLength(0), SizeBound(0), CharByteWidth(0), Kind(tok::unknown),
248 return GetStringLength() / CharByteWidth;
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 980 unsigned CharByteWidth = 0;
984 CharByteWidth = Target.getCharWidth();
987 CharByteWidth = Target.getWCharWidth();
990 CharByteWidth = Target.getChar16Width();
993 CharByteWidth = Target.getChar32Width();
996 assert((CharByteWidth & 7) == 0 && "Assumes character size is byte multiple");
997 CharByteWidth /= 8;
998 assert((CharByteWidth == 1 || CharByteWidth == 2 || CharByteWidth == 4) &
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 654 // NumConcatenated, Length and CharByteWidth are set by the empty
658 unsigned CharByteWidth = Record.readInt();
662 assert((CharByteWidth == E->getCharByteWidth()) && "Wrong character width!");
669 assert((CharByteWidth ==
680 for (unsigned I = 0; I < Length * CharByteWidth; ++I)
2842 /* CharByteWidth=*/Record[ASTStmtReader::NumExprFields + 2]);

Completed in 23 milliseconds