Home
last modified time | relevance | path

Searched refs:Prec (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/libcxxabi/src/
H A Dcxa_demangle.cpp176 void print(Node::Prec P) { in print()
182 case Node::Prec::Unary: in print()
184 case Node::Prec::Cast: in print()
186 case Node::Prec::PtrMem: in print()
192 case Node::Prec::Shift: in print()
200 case Node::Prec::And: in print()
202 case Node::Prec::Xor: in print()
204 case Node::Prec::Ior: in print()
206 case Node::Prec::AndIf: in print()
208 case Node::Prec::OrIf: in print()
[all …]
/llvm-project-15.0.7/llvm/lib/Demangle/
H A DItaniumDemangle.cpp175 void print(Node::Prec P) { in print()
181 case Node::Prec::Unary: in print()
183 case Node::Prec::Cast: in print()
185 case Node::Prec::PtrMem: in print()
191 case Node::Prec::Shift: in print()
199 case Node::Prec::And: in print()
201 case Node::Prec::Xor: in print()
203 case Node::Prec::Ior: in print()
205 case Node::Prec::AndIf: in print()
207 case Node::Prec::OrIf: in print()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h168 enum class Prec { enum
194 Prec Precedence : 6;
211 Node(Kind K_, Prec Precedence_ = Prec::Primary,
262 void printAsOperand(OutputBuffer &OB, Prec P = Prec::Default,
1840 Prec Prec_ = Prec::Primary)
2504 Node *parsePrefixExpr(StringView Kind, Node::Prec Prec);
2505 Node *parseBinaryExpr(StringView Kind, Node::Prec Prec);
2513 Node *parsePointerToMemberConversionExpr(Node::Prec Prec);
2593 Node::Prec Prec : 7; // Precedence member
2627 Node::Prec getPrecedence() const { return Prec; } in getPrecedence()
[all …]
/llvm-project-15.0.7/libcxxabi/src/demangle/
H A DItaniumDemangle.h168 enum class Prec { enum
194 Prec Precedence : 6;
211 Node(Kind K_, Prec Precedence_ = Prec::Primary,
262 void printAsOperand(OutputBuffer &OB, Prec P = Prec::Default,
1840 Prec Prec_ = Prec::Primary)
2504 Node *parsePrefixExpr(StringView Kind, Node::Prec Prec);
2505 Node *parseBinaryExpr(StringView Kind, Node::Prec Prec);
2513 Node *parsePointerToMemberConversionExpr(Node::Prec Prec);
2593 Node::Prec Prec : 7; // Precedence member
2627 Node::Prec getPrecedence() const { return Prec; } in getPrecedence()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFormatProviders.h63 size_t Prec; in parseNumericPrecision() local
67 else if (Str.getAsInteger(10, Prec)) { in parseNumericPrecision()
71 assert(Prec < 100 && "Precision out of range"); in parseNumericPrecision()
72 Result = std::min<size_t>(99u, Prec); in parseNumericPrecision()
/llvm-project-15.0.7/llvm/lib/Support/
H A DNativeFormatting.cpp168 size_t Prec = Precision.value_or(getDefaultPrecision(Style)); in write_double() local
188 Out << "%." << Prec << Letter; in write_double()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp241 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
243 Precedence(Prec) {} in PrototypeAST()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp258 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
260 Precedence(Prec) {} in PrototypeAST()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp264 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
266 Precedence(Prec) {} in PrototypeAST()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp256 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
258 Precedence(Prec) {} in PrototypeAST()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp263 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
265 Precedence(Prec) {} in PrototypeAST()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp258 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
260 Precedence(Prec) {} in PrototypeAST()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp258 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
260 Precedence(Prec) {} in PrototypeAST()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp367 unsigned Prec = 0) in PrototypeAST() argument
369 Precedence(Prec), Line(Loc.Line) {} in PrototypeAST()
/llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl06.rst142 bool IsOperator = false, unsigned Prec = 0)
144 Precedence(Prec) {}
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DAPFloatTest.cpp40 static std::string convertToString(double d, unsigned Prec, unsigned Pad, in convertToString() argument
44 F.toString(Buffer, Prec, Pad, Tr); in convertToString()