Searched refs:getCastKind (Results 26 - 50 of 54) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprComplex.cpp176 return EmitCast(E->getCastKind(), E->getSubExpr(), E->getType());
181 return EmitCast(E->getCastKind(), E->getSubExpr(), E->getType());
H A DCGObjC.cpp300 if (!ice || ice->getCastKind() != CK_LValueToRValue) return true;
348 if (CE->getCastKind() == CK_LValueToRValue) {
2876 switch (cast->getCastKind()) {
2997 switch (e->getCastKind()) {
H A DCGDecl.cpp671 switch (castExpr->getCastKind()) {
H A DCGExprConstant.cpp1034 switch (E->getCastKind()) {
H A DCGExprScalar.cpp1950 if (CE->getCastKind() == CK_UncheckedDerivedToBase)
1973 CastKind Kind = CE->getCastKind();
H A DCGCall.cpp3651 cast<CastExpr>(E)->getCastKind() == CK_LValueToRValue) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp51 if (CastE->getCastKind() == CK_LValueToRValue) {
H A DSemaChecking.cpp8394 if (ICE->getCastKind() == CK_IntegralCast &&
8405 return ICE->getCastKind() == CK_FloatingCast &&
10341 if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue)
10346 bool isIntegerCast = CE->getCastKind() == CK_IntegralCast ||
10347 CE->getCastKind() == CK_BooleanToSignedIntegral;
10753 if (ICE->getCastKind() != CK_IntegralCast &&
10754 ICE->getCastKind() != CK_NoOp)
11479 if (ICE->getCastKind() == CK_BitCast &&
12888 if (E->getCastKind()
[all...]
H A DSemaExceptionSpec.cpp1088 return DC->getCastKind() == clang::CK_Dynamic? CT_Can : CT_Cannot;
H A DSemaExprObjC.cpp533 if (CE->getCastKind() == CK_ArrayToPointerDecay)
3432 switch (e->getCastKind()) {
4464 if (ice->getCastKind() == CK_ARCReclaimReturnedObject) {
H A DSemaLambda.cpp620 if (ICE->getCastKind() == CK_IntegralCast)
H A DSemaExpr.cpp3927 if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay)
10292 CastKind CK = cast<CastExpr>(Inner)->getCastKind();
10586 SCS.Second = castKindToImplicitConversionKind(ICE->getCastKind());
12130 if (CE->getCastKind() == CK_ToVoid) {
12135 if (CE->getCastKind() == CK_Dependent && E->getType()->isVoidType() &&
13976 if (Cast && Cast->getCastKind() == CK_ARCConsumeObject)
16733 switch (ICE->getCastKind()) {
16741 return S.ImpCastExprToType(Sub.get(), ICE->getType(), ICE->getCastKind(),
17775 if (E->getCastKind() == CK_FunctionToPointerDecay) {
17789 } else if (E->getCastKind()
[all...]
H A DSema.cpp574 if (ImpCast->getCastKind() == Kind && (!BasePath || BasePath->empty())) {
H A DSemaInit.cpp5322 switch (ce->getCastKind()) {
6933 if (ICE && ICE->getCastKind() == CK_ArrayToPointerDecay)
7056 switch (CE->getCastKind()) {
H A DSemaExprCXX.cpp3566 assert(Callee && Callee->getCastKind() == CK_BuiltinFnToFnPtr &&
7437 if (CE && CE->getCastKind() == CK_NoOp)
H A DSemaDecl.cpp11074 if (E->getCastKind() == CK_LValueToRValue) {
11150 if (ICE->getCastKind() == CK_NoOp)
11224 if (ICE->getCastKind() == CK_LValueToRValue)
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp522 if (CE->getCastKind() != CK_BitCast)
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp104 if (CE->getCastKind() == CK_LValueToRValue) {
151 if (CE->getCastKind() == CK_LValueToRValue)
H A DExprEngine.cpp2629 if (!PE || PE->getCastKind() != CK_ArrayToPointerDecay) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp563 CastKind K = CE->getCastKind();
H A DCFG.cpp81 if (CE->getCastKind() != CK_IntegralCast)
1409 switch (Cast->getCastKind()) {
4597 if (E->getCastKind() == CK_IntegralToBoolean)
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3196 CastKind getCastKind() const { return (CastKind) CastExprBits.Kind; } function in class:clang::final::final::CastExpr
3200 const char *getCastKindName() const { return getCastKindName(getCastKind()); }
3235 assert(getCastKind() == CK_ToUnion);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp6945 Importer.getToContext(), *ToTypeOrErr, E->getCastKind(), *ToSubExprOrErr,
6975 Importer.getToContext(), ToType, E->getValueKind(), E->getCastKind(),
6990 E->getCastKind(), ToSubExpr, ToBasePath, *ToLParenLocOrErr,
7003 *ToLParenLocOrErr, OCE->getBridgeKind(), E->getCastKind(),
7909 CastKind CK = E->getCastKind();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4826 return Node.getCastKind() == Kind;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp862 Record.push_back(E->getCastKind()); // FIXME: stable encoding

Completed in 534 milliseconds

123