Searched defs:ExpectedValue (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp54 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1)); local
55 if (!ExpectedValue)
58 SwitchInst::CaseIt Case = SI.findCaseValue(ExpectedValue);
106 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1)); local
107 if (!ExpectedValue)
115 if (ExpectedValue->isOne())
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1306 explicit ValueEqualsMatcher(const ValueT &ExpectedValue) argument
1307 : ExpectedValue(ExpectedValue) {}
1310 return Node.getValue() == ExpectedValue;
1314 const ValueT ExpectedValue; member in class:clang::ast_matchers::internal::ValueEqualsMatcher
1323 return Node.getValue().convertToFloat() == ExpectedValue;
1325 return Node.getValue().convertToDouble() == ExpectedValue;
1332 return Node.getValue().convertToFloat() == ExpectedValue;
1334 return Node.getValue().convertToDouble() == ExpectedValue;
1340 return ExpectedValue
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp416 Value *ExpectedValue = EmitScalarExpr(E->getArg(1)); local
419 // Note, we still IRGen ExpectedValue because it could have side-effects.
424 Value *Result = Builder.CreateCall2(FnExpect, ArgValue, ExpectedValue,

Completed in 437 milliseconds