Home
last modified time | relevance | path

Searched refs:CE2 (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/unittests/Tooling/
H A DFixItTest.cpp40 const CallExpr &CE2 = onlyCall(AST.context()); in TEST() local
55 const CallExpr &CE2 = onlyCall(AST.context()); in TEST() local
56 EXPECT_EQ("", getText(CE2, AST.context())); in TEST()
57 EXPECT_EQ("x", getText(*CE2.getArg(0), AST.context())); in TEST()
81 const CallExpr &CE2 = onlyCall(AST.context()); in TEST() local
82 Hint0 = createRemoval(*CE2.getArg(0)); in TEST()
85 Hint1 = createRemoval(*CE2.getArg(1)); in TEST()
116 const CallExpr &CE2 = onlyCall(AST.context()); in TEST() local
117 Hint = createRemoval(CE2); in TEST()
171 const CallExpr &CE2 = onlyCall(AST.context()); in TEST() local
[all …]
/llvm-project-15.0.7/clang/test/InterfaceStubs/
H A Dvar-template-specialization-decl.cpp15 template<typename T> constexpr bool CE2 = S0<T>::value; variable
16 int a = CE2<int>;
/llvm-project-15.0.7/llvm/lib/IR/
H A DReplaceConstant.cpp101 auto *CE2 = dyn_cast<ConstantExpr>(U.get()); in collectConstantExprPaths() local
102 if (!CE2) in collectConstantExprPaths()
109 std::vector<ConstantExpr *> Path{CE2}; in collectConstantExprPaths()
H A DConstantFold.cpp1874 if (ConstantExpr *CE2 = dyn_cast<ConstantExpr>(C2)) { in ConstantFoldCompareInstruction() local
1875 Constant *CE2Op0 = CE2->getOperand(0); in ConstantFoldCompareInstruction()
1876 if (CE2->getOpcode() == Instruction::BitCast && in ConstantFoldCompareInstruction()
1877 CE2->getType()->isVectorTy() == CE2Op0->getType()->isVectorTy() && in ConstantFoldCompareInstruction()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dsizeof-expression.cpp151 int CE2 = sizeof sizeof(const char*); variable