Lines Matching refs:ExprMutationAnalyzerTest

108 TEST(ExprMutationAnalyzerTest, Trivial) {  in TEST()  argument
210 TEST(ExprMutationAnalyzerTest, AssignmentConditionalWithInheritance) { in TEST() argument
239 TEST(ExprMutationAnalyzerTest, NonConstMemberFunc) { in TEST() argument
247 TEST(ExprMutationAnalyzerTest, AssumedNonConstMemberFunc) { in TEST() argument
269 TEST(ExprMutationAnalyzerTest, ConstMemberFunc) { in TEST() argument
277 TEST(ExprMutationAnalyzerTest, TypeDependentMemberCall) { in TEST() argument
289 TEST(ExprMutationAnalyzerTest, NonConstOperator) { in TEST() argument
297 TEST(ExprMutationAnalyzerTest, ConstOperator) { in TEST() argument
305 TEST(ExprMutationAnalyzerTest, UnresolvedOperator) { in TEST() argument
318 TEST(ExprMutationAnalyzerTest, ByValueArgument) { in TEST() argument
354 TEST(ExprMutationAnalyzerTest, ByConstValueArgument) { in TEST() argument
386 TEST(ExprMutationAnalyzerTest, ByNonConstRefArgument) { in TEST() argument
439 TEST(ExprMutationAnalyzerTest, ByNonConstRefArgumentFunctionTypeDependent) { in TEST() argument
455 TEST(ExprMutationAnalyzerTest, ByConstRefArgument) { in TEST() argument
495 TEST(ExprMutationAnalyzerTest, ByNonConstRRefArgument) { in TEST() argument
522 TEST(ExprMutationAnalyzerTest, ByConstRRefArgument) { in TEST() argument
551 TEST(ExprMutationAnalyzerTest, Move) { in TEST() argument
613 TEST(ExprMutationAnalyzerTest, Forward) { in TEST() argument
632 TEST(ExprMutationAnalyzerTest, CallUnresolved) { in TEST() argument
687 TEST(ExprMutationAnalyzerTest, ReturnAsValue) { in TEST() argument
703 TEST(ExprMutationAnalyzerTest, ReturnAsNonConstRef) { in TEST() argument
710 TEST(ExprMutationAnalyzerTest, ReturnAsConstRef) { in TEST() argument
717 TEST(ExprMutationAnalyzerTest, ReturnAsNonConstRRef) { in TEST() argument
726 TEST(ExprMutationAnalyzerTest, ReturnAsConstRRef) { in TEST() argument
737 TEST(ExprMutationAnalyzerTest, TakeAddress) { in TEST() argument
744 TEST(ExprMutationAnalyzerTest, ArrayToPointerDecay) { in TEST() argument
752 TEST(ExprMutationAnalyzerTest, TemplateWithArrayToPointerDecay) { in TEST() argument
771 TEST(ExprMutationAnalyzerTest, FollowRefModified) { in TEST() argument
789 TEST(ExprMutationAnalyzerTest, FollowRefNotModified) { in TEST() argument
809 TEST(ExprMutationAnalyzerTest, FollowConditionalRefModified) { in TEST() argument
817 TEST(ExprMutationAnalyzerTest, FollowConditionalRefNotModified) { in TEST() argument
825 TEST(ExprMutationAnalyzerTest, FollowFuncArgModified) { in TEST() argument
885 TEST(ExprMutationAnalyzerTest, FollowFuncArgNotModified) { in TEST() argument
944 TEST(ExprMutationAnalyzerTest, ArrayElementModified) { in TEST() argument
951 TEST(ExprMutationAnalyzerTest, ArrayElementNotModified) { in TEST() argument
960 TEST(ExprMutationAnalyzerTest, NestedMemberModified) { in TEST() argument
982 TEST(ExprMutationAnalyzerTest, NestedMemberNotModified) { in TEST() argument
1005 TEST(ExprMutationAnalyzerTest, CastToValue) { in TEST() argument
1013 TEST(ExprMutationAnalyzerTest, CastToRefModified) { in TEST() argument
1028 TEST(ExprMutationAnalyzerTest, CastToRefNotModified) { in TEST() argument
1037 TEST(ExprMutationAnalyzerTest, CastToConstRef) { in TEST() argument
1052 TEST(ExprMutationAnalyzerTest, CommaExprWithAnAssigment) { in TEST() argument
1060 TEST(ExprMutationAnalyzerTest, CommaExprWithDecOp) { in TEST() argument
1068 TEST(ExprMutationAnalyzerTest, CommaExprWithNonConstMemberCall) { in TEST() argument
1078 TEST(ExprMutationAnalyzerTest, CommaExprWithConstMemberCall) { in TEST() argument
1088 TEST(ExprMutationAnalyzerTest, CommaExprWithCallExpr) { in TEST() argument
1098 TEST(ExprMutationAnalyzerTest, CommaExprWithCallUnresolved) { in TEST() argument
1114 TEST(ExprMutationAnalyzerTest, CommaExprParmRef) { in TEST() argument
1125 TEST(ExprMutationAnalyzerTest, CommaExprWithAmpersandOp) { in TEST() argument
1135 TEST(ExprMutationAnalyzerTest, CommaExprAsReturnAsValue) { in TEST() argument
1143 TEST(ExprMutationAnalyzerTest, CommaEpxrAsReturnAsNonConstRef) { in TEST() argument
1151 TEST(ExprMutationAnalyzerTest, CommaExprAsArrayToPointerDecay) { in TEST() argument
1161 TEST(ExprMutationAnalyzerTest, CommaExprAsUniquePtr) { in TEST() argument
1178 TEST(ExprMutationAnalyzerTest, CommaNestedConditional) { in TEST() argument
1190 TEST(ExprMutationAnalyzerTest, LambdaDefaultCaptureByValue) { in TEST() argument
1197 TEST(ExprMutationAnalyzerTest, LambdaExplicitCaptureByValue) { in TEST() argument
1204 TEST(ExprMutationAnalyzerTest, LambdaDefaultCaptureByRef) { in TEST() argument
1212 TEST(ExprMutationAnalyzerTest, LambdaExplicitCaptureByRef) { in TEST() argument
1222 TEST(ExprMutationAnalyzerTest, RangeForArrayByRefModified) { in TEST() argument
1237 TEST(ExprMutationAnalyzerTest, RangeForArrayByRefModifiedByImplicitInit) { in TEST() argument
1245 TEST(ExprMutationAnalyzerTest, RangeForArrayByValue) { in TEST() argument
1263 TEST(ExprMutationAnalyzerTest, RangeForArrayByConstRef) { in TEST() argument
1276 TEST(ExprMutationAnalyzerTest, RangeForNonArrayByRefModified) { in TEST() argument
1286 TEST(ExprMutationAnalyzerTest, RangeForNonArrayByRefNotModified) { in TEST() argument
1294 TEST(ExprMutationAnalyzerTest, RangeForNonArrayByValue) { in TEST() argument
1303 TEST(ExprMutationAnalyzerTest, RangeForNonArrayByConstRef) { in TEST() argument
1314 TEST(ExprMutationAnalyzerTest, UnevaluatedExpressions) { in TEST() argument
1352 TEST(ExprMutationAnalyzerTest, NotUnevaluatedExpressions) { in TEST() argument
1369 TEST(ExprMutationAnalyzerTest, UniquePtr) { in TEST() argument
1428 TEST(ExprMutationAnalyzerTest, UnevaluatedContext) { in TEST() argument
1444 TEST(ExprMutationAnalyzerTest, ReproduceFailureMinimal) { in TEST() argument