Lines Matching refs:classify
110 std::optional<PrimType> FromT = classify(SubExpr->getType()); in VisitCastExpr()
111 std::optional<PrimType> ToT = classify(CE->getType()); in VisitCastExpr()
162 std::optional<PrimType> LT = classify(LHS->getType()); in VisitBinaryOperator()
163 std::optional<PrimType> RT = classify(RHS->getType()); in VisitBinaryOperator()
164 std::optional<PrimType> T = classify(BO->getType()); in VisitBinaryOperator()
242 std::optional<PrimType> LT = classify(LHS); in VisitPointerArithBinOp()
243 std::optional<PrimType> RT = classify(RHS); in VisitPointerArithBinOp()
282 if (std::optional<PrimType> T = classify(E)) in VisitImplicitValueInitExpr()
501 std::optional<PrimType> LT = classify(E->getLHS()->getType()); in VisitCompoundAssignOperator()
502 std::optional<PrimType> RT = classify(E->getRHS()->getType()); in VisitCompoundAssignOperator()
566 if (std::optional<PrimType> T = classify(E->getType())) { in visitBool()
604 if (std::optional<PrimType> T = classify(LV->getType())) { in dereference()
846 if (std::optional<PrimType> T = classify(Init->getType())) { in visitArrayInitializer()
883 std::optional<PrimType> ElemT = classify(SubExpr->getType()); in visitArrayInitializer()
924 if (std::optional<PrimType> ElemT = classify(CAT->getElementType())) { in visitArrayInitializer()
1009 if (std::optional<PrimType> T = classify(Init)) { in visitRecordInitializer()
1111 if (std::optional<PrimType> T = classify(Exp)) in visitExpr()
1122 std::optional<PrimType> VarT = classify(VD->getType()); in visitDecl()
1155 std::optional<PrimType> VarT = classify(VD->getType()); in visitVarDecl()
1217 std::optional<PrimType> T = classify(ReturnType); in VisitCallExpr()
1302 std::optional<PrimType> T = classify(SubExpr->getType()); in VisitUnaryOperator()