Home
last modified time | relevance | path

Searched refs:getCharByteWidth (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/AST/Interp/
H A DProgram.cpp37 const size_t CharWidth = S->getCharByteWidth(); in createGlobalString()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParsePragma.cpp976 if (SegmentName->getCharByteWidth() != 1) { in HandlePragmaMSSection()
1098 if (SegmentName->getCharByteWidth() != 1) { in HandlePragmaMSSegment()
1162 if (SegmentName->getCharByteWidth() != 1) { in HandlePragmaMSInitSeg()
1251 if (SegmentName->getCharByteWidth() != 1) { in HandlePragmaMSAllocText()
3732 if (OptimizationList->getCharByteWidth() != 1) { in HandlePragmaMSOptimize()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp620 if (!strArg || strArg->getCharByteWidth() != 1) in checkCall_mkstemp()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DMicrosoftMangle.cpp3884 unsigned StringByteLength = StringLength * SL->getCharByteWidth(); in mangleStringLiteral()
3897 unsigned CharByteWidth = SL->getCharByteWidth(); in mangleStringLiteral()
3906 unsigned CharByteWidth = SL->getCharByteWidth(); in mangleStringLiteral()
H A DExprConstant.cpp3402 APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(), in extractStringLiteralCharacter()
3425 APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(), in expandStringLiteral()
16262 S->getCharByteWidth() == 1 && in EvaluateBuiltinStrLen()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DExpr.h1862 assert(getCharByteWidth() == 1 && in getString()
1878 switch (getCharByteWidth()) { in getCodeUnit()
1889 unsigned getByteLength() const { return getCharByteWidth() * getLength(); } in getByteLength()
1891 unsigned getCharByteWidth() const { return StringLiteralBits.CharByteWidth; } in getCharByteWidth() function
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterStmt.cpp683 Record.push_back(E->getCharByteWidth()); in VisitStringLiteral()
H A DASTReaderStmt.cpp658 assert((CharByteWidth == E->getCharByteWidth()) && "Wrong character width!"); in VisitStringLiteral()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp8676 return FExpr->getByteLength() - getCharByteWidth() * Offset; in getByteLength()
8680 unsigned getCharByteWidth() const { return FExpr->getCharByteWidth(); } in getCharByteWidth() function in __anon9b6cdc881c11::FormatStringLiteral
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenModule.cpp5843 if (E->getCharByteWidth() == 1) { in GetConstantArrayFromStringLiteral()
H A DCGBuiltin.cpp4249 assert(Str->getCharByteWidth() == 2); in EmitBuiltinExpr()