HomeSort by: relevance | last modified time | path
    Searched defs:ExpectedValue (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ReturnValueChecker.cpp 72 static Optional<bool> isInvariantBreak(bool ExpectedValue, SVal ReturnV,
78 if (ExpectedValue)
91 bool ExpectedValue = *RawExpectedValue;
92 Optional<bool> IsInvariantBreak = isInvariantBreak(ExpectedValue, ReturnV, C);
102 [Name, ExpectedValue](PathSensitiveBugReport &) -> std::string {
107 << (ExpectedValue ? "true" : "false");
113 State = State->assume(ReturnV.castAs<DefinedOrUnknownSVal>(), ExpectedValue);
138 bool ExpectedValue = *RawExpectedValue;
139 Optional<bool> IsInvariantBreak = isInvariantBreak(ExpectedValue, ReturnV, C);
149 [Name, ExpectedValue](BugReport &BR) -> std::string
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
DbiModuleList.cpp 124 auto ExpectedValue = Modules->getFileName(Off);
125 if (!ExpectedValue) {
126 consumeError(ExpectedValue.takeError());
129 ThisValue = *ExpectedValue;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerExpectIntrinsic.cpp 89 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
90 if (!ExpectedValue)
93 SwitchInst::CaseHandle Case = *SI.findCaseValue(ExpectedValue);
121 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(Expect->getArgOperand(1));
122 if (!ExpectedValue)
124 const APInt &ExpectedPhiValue = ExpectedValue->getValue();
307 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
308 if (!ExpectedValue)
318 if ((ExpectedValue->getZExtValue() == ValueComparedTo) ==
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 1766 explicit ValueEqualsMatcher(const ValueT &ExpectedValue)
1767 : ExpectedValue(ExpectedValue) {}
1770 return Node.getValue() == ExpectedValue;
1774 ValueT ExpectedValue;
1783 return Node.getValue().convertToFloat() == ExpectedValue;
1785 return Node.getValue().convertToDouble() == ExpectedValue;
1792 return Node.getValue().convertToFloat() == ExpectedValue;
1794 return Node.getValue().convertToDouble() == ExpectedValue;
1800 return ExpectedValue.compare(Node.getValue()) == llvm::APFloat::cmpEqual
    [all...]

Completed in 29 milliseconds