Home
last modified time | relevance | path

Searched refs:Postfix (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp244 return UnbreakableTailLength + Postfix.size() + in getRemainingLength()
256 StringRef Postfix, unsigned UnbreakableTailLength, bool InPPDirective, in BreakableStringLiteral() argument
259 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix), in BreakableStringLiteral()
261 assert(Tok.TokenText.starts_with(Prefix) && Tok.TokenText.ends_with(Postfix)); in BreakableStringLiteral()
263 Prefix.size(), Tok.TokenText.size() - Prefix.size() - Postfix.size()); in BreakableStringLiteral()
270 ColumnLimit - Postfix.size(), Style.TabWidth, Encoding); in getSplit()
278 Tok, Prefix.size() + TailOffset + Split.first, Split.second, Postfix, in insertBreak()
311 Postfix = "\","; in BreakableStringLiteralUsingOperators()
319 Postfix = SignOnNewLine ? "'" : "' +"; in BreakableStringLiteralUsingOperators()
330 Postfix = SignOnNewLine ? "\"" : "\" +"; in BreakableStringLiteralUsingOperators()
[all …]
H A DBreakableToken.h254 StringRef Prefix, StringRef Postfix,
280 StringRef Postfix; variable
H A DContinuationIndenter.cpp2501 StringRef Postfix; in createBreakableToken() local
2506 if ((Text.ends_with(Postfix = "\"") && in createBreakableToken()
2513 Text.ends_with(Postfix = "\")"))) { in createBreakableToken()
2515 Current, StartColumn, Prefix, Postfix, UnbreakableTailLength, in createBreakableToken()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp189 auto [Prefix, Postfix] = Line.split(":"); in parse()
190 if (Postfix.empty()) { in parse()
196 auto [Pattern, Category] = Postfix.split("="); in parse()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp108 bool Postfix) const;
110 bool Postfix) const;
539 SVal Iter, bool Postfix) const { in handleIncrement()
560 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleIncrement()
565 SVal Iter, bool Postfix) const { in handleDecrement()
586 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleDecrement()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp1941 #define INSTR_CASE(Prefix, Instr, Suffix, Postfix) \ in addConstantComments() argument
1942 case X86::Prefix##Instr##Suffix##rm##Postfix: in addConstantComments()
2040 #define MOV_AVX512_CASE(Suffix, Postfix) \ in addConstantComments() argument
2041 case X86::VMOVDQA64##Suffix##rm##Postfix: \ in addConstantComments()
2042 case X86::VMOVDQA32##Suffix##rm##Postfix: \ in addConstantComments()
2043 case X86::VMOVDQU64##Suffix##rm##Postfix: \ in addConstantComments()
2044 case X86::VMOVDQU32##Suffix##rm##Postfix: \ in addConstantComments()
2045 case X86::VMOVDQU16##Suffix##rm##Postfix: \ in addConstantComments()
2046 case X86::VMOVDQU8##Suffix##rm##Postfix: \ in addConstantComments()
2047 case X86::VMOVAPS##Suffix##rm##Postfix: \ in addConstantComments()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrData.td123 def MOV # TYPE.Size # DST_REG # SRC_REG # TYPE.Postfix
130 def MOV # TYPE.Size # dd # TYPE.Postfix
151 def MOV # TYPE.Size # AM # REG # TYPE.Postfix
160 def MOV # TYPE.Size # AM # i # TYPE.Postfix
177 def MOV # TYPE.Size # REG # i # TYPE.Postfix
197 def MOV # TYPE.Size # REG # AM # TYPE.Postfix
226 def MOV # TYPE.Size # DST_AM # SRC_AM # TYPE.Postfix
308 def MOVM # TYPE.Size # AM # m # TYPE.Postfix
326 def MOVM # TYPE.Size # m # AM # TYPE.Postfix
H A DM68kInstrInfo.td644 string Postfix = postfix;
809 let Postfix = "_TC" in {
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h181 Postfix, enumerator
497 const std::string_view Postfix; variable
501 : Node(KPostfixQualifiedType), Ty(Ty_), Postfix(Postfix_) {} in PostfixQualifiedType()
503 template<typename Fn> void match(Fn F) const { F(Ty, Postfix); } in match()
507 OB += Postfix; in printLeft()
2026 const std::string_view Postfix; variable
2042 OB += Postfix; in printLeft()
2981 Postfix, // Postfix unary: expr @ enumerator
3378 {"cc", OperatorInfo::NamedCast, false, Node::Prec::Postfix, "const_cast"},
3379 {"cl", OperatorInfo::Call, /*Paren*/ false, Node::Prec::Postfix,
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsAMDGPU.def296 // Postfix l indicates the 1st argument is i64.
297 // Postfix h indicates the 4/5-th arguments are half4.
315 // Postfix w32 indicates the builtin requires wavefront size of 32.
316 // Postfix w64 indicates the builtin requires wavefront size of 64.
525 // Postfix w32 indicates the builtin requires wavefront size of 32.
526 // Postfix w64 indicates the builtin requires wavefront size of 64.
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DPathDiagnostic.cpp889 StringRef Postfix = StringRef());
905 StringRef Prefix, StringRef Postfix) { in describeTemplateParameters() argument
915 Out << Postfix; in describeTemplateParameters()
/freebsd/crypto/openssl/doc/designs/ddd/
H A DREADME.md74 | Postfix | A | AOSF |
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp180 case Node::Prec::Postfix: in print()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SchedA57WriteRes.td16 // Postfix (optional): (XYZ)_Forward
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def434 // [C99 6.5.2.4] Postfix increment and decrement
H A DExpr.h2354 static Opcode getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1414 UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) { in getOverloadedOpcode() argument
1417 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc; in getOverloadedOpcode()
1418 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec; in getOverloadedOpcode()
/freebsd/contrib/sendmail/
H A DRELEASE_NOTES4008 reported to Postfix by Robert Norris of Monash University.