Searched refs:condExpr (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/bmake/
H A Dcond.c127 * Tokens are scanned from the 'condExpr' string. The scanner (CondToken)
178 static char *condExpr; /* The expression to parse */ variable
534 * Moves condExpr to end of this token.
553 *quoted = qt = *condExpr == '"' ? 1 : 0;
555 condExpr++;
556 for (start = condExpr; *condExpr && str == NULL; condExpr++) {
557 switch (*condExpr) {
559 if (condExpr[
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp4247 Expr *condExpr = E->getCond(); local
4254 if (CGF.ConstantFoldsToSimpleInteger(condExpr, CondExprBool)) {
4277 && condExpr->getType()->isVectorType()) {
4280 llvm::Value *CondV = CGF.EmitScalarExpr(condExpr);
4284 llvm::Type *condType = ConvertType(condExpr->getType());
4318 if (condExpr->getType()->isVectorType()) {
4321 llvm::Value *CondV = CGF.EmitScalarExpr(condExpr);
4325 llvm::Type *CondType = ConvertType(condExpr->getType());
4338 llvm::Value *CondV = CGF.EvaluateExprAsBool(condExpr);
4358 CGF.EmitBranchOnBoolExpr(condExpr, LHSBloc
[all...]
H A DCGExpr.cpp4288 const Expr *condExpr = expr->getCond(); local
4290 if (ConstantFoldsToSimpleInteger(condExpr, CondExprBool)) {
4307 EmitBranchOnBoolExpr(condExpr, lhsBlock, rhsBlock, getProfileCount(expr));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp2791 Expr *condExpr = C->getCond(); local
2796 if (condExpr != opaqueValue)
2797 addStmt(condExpr);
2804 return addStmt(condExpr);

Completed in 150 milliseconds