Home
last modified time | relevance | path

Searched refs:getColorString (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dxray-color-helper.h75 std::string getColorString(double Point) const;
85 static std::string getColorString(std::tuple<uint8_t, uint8_t, uint8_t> t);
H A Dxray-graph-diff.cpp269 return H.getColorString(2.0); // A number greater than 1.0 in getColor()
271 return H.getColorString(-2.0); // A number less than -1.0 in getColor()
282 return H.getColorString(CappedRelDiff); in getColor()
290 return H.getColorString(2.0); // A number greater than 1.0 in getColor()
292 return H.getColorString(-2.0); // A number less than -1.0 in getColor()
303 return H.getColorString(CappedRelDiff); in getColor()
H A Dxray-color-helper.cpp211 ColorHelper::getColorString(std::tuple<uint8_t, uint8_t, uint8_t> t) { in getColorString() function in ColorHelper
220 std::string ColorHelper::getColorString(double Point) const { in getColorString() function in ColorHelper
221 return getColorString(getColorTuple(Point)); in getColorString()
H A Dxray-graph.cpp398 << CHelper.getColorString( in exportGraphAsDOT()
417 << CHelper.getColorString( in exportGraphAsDOT()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DGraphWriter.cpp71 StringRef llvm::DOT::getColorString(unsigned ColorNumber) { in getColorString() function in llvm::DOT
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DGraphWriter.h47 StringRef getColorString(unsigned NodeNumber);
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineScheduler.cpp3705 Str += DOT::getColorString(DFS->getSubtreeID(N)); in getNodeAttributes()