|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
tools/clang/lib/AST/Expr.cpp 1116 switch (uint32_t Char = getCodeUnit(I)) {
1124 uint32_t Trail = getCodeUnit(I + 1);
tools/clang/lib/AST/ExprConstant.cpp 2954 Value = S->getCodeUnit(Index);
2979 Value = S->getCodeUnit(I);
tools/clang/lib/AST/Interp/Program.cpp 58 const uint32_t CodePoint = I == N ? 0 : S->getCodeUnit(I);
tools/clang/lib/AST/MicrosoftMangle.cpp 3468 uint32_t CodeUnit = SL->getCodeUnit(Index / CharByteWidth);
3477 uint32_t CodeUnit = SL->getCodeUnit(Index / CharByteWidth);
tools/clang/lib/CodeGen/CGObjCGNU.cpp 989 str |= ((uint64_t)SL->getCodeUnit(i)) << ((64 - 4 - 3) - (i*7));
tools/clang/lib/CodeGen/CodeGenModule.cpp 4869 Elements.push_back(E->getCodeUnit(i));
4879 Elements.push_back(E->getCodeUnit(i));
tools/clang/lib/Sema/SemaExpr.cpp 1752 Value = Lit->getCodeUnit(I);
tools/clang/lib/Sema/SemaInit.cpp 2880 llvm::APInt CodeUnit(PromotedCharTyWidth, SL->getCodeUnit(i));
tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp 1701 char c = (i >= length) ? '\0' : Str->getCodeUnit(i);
tools/clang/tools/extra/clang-tidy/bugprone/StringLiteralWithEmbeddedNulCheck.cpp 22 if (Node.getCodeUnit(i) == '\0')
66 if (Offset + 3 < Length && SL->getCodeUnit(Offset) == '\0' &&
67 SL->getCodeUnit(Offset + 1) == 'x' &&
68 isDigit(SL->getCodeUnit(Offset + 2)) &&
69 isDigit(SL->getCodeUnit(Offset + 3))) {