reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaChecking.cpp
 6739     return FExpr->getString().drop_front(Offset);
 6743     return FExpr->getByteLength() - getCharByteWidth() * Offset;
 6746   unsigned getLength() const { return FExpr->getLength() - Offset; }
 6747   unsigned getCharByteWidth() const { return FExpr->getCharByteWidth(); }
 6749   StringLiteral::StringKind getKind() const { return FExpr->getKind(); }
 6751   QualType getType() const { return FExpr->getType(); }
 6753   bool isAscii() const { return FExpr->isAscii(); }
 6754   bool isWide() const { return FExpr->isWide(); }
 6755   bool isUTF8() const { return FExpr->isUTF8(); }
 6756   bool isUTF16() const { return FExpr->isUTF16(); }
 6757   bool isUTF32() const { return FExpr->isUTF32(); }
 6758   bool isPascal() const { return FExpr->isPascal(); }
 6764     return FExpr->getLocationOfByte(ByteNo + Offset, SM, Features, Target,
 6769     return FExpr->getBeginLoc().getLocWithOffset(Offset);
 6772   SourceLocation getEndLoc() const LLVM_READONLY { return FExpr->getEndLoc(); }