Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp257 return UnbreakableTailLength + Postfix.size() + in getRemainingLength()
269 StringRef Postfix, unsigned UnbreakableTailLength, bool InPPDirective, in BreakableStringLiteral() argument
272 StartColumn(StartColumn), Prefix(Prefix), Postfix(Postfix), in BreakableStringLiteral()
274 assert(Tok.TokenText.starts_with(Prefix) && Tok.TokenText.ends_with(Postfix)); in BreakableStringLiteral()
276 Prefix.size(), Tok.TokenText.size() - Prefix.size() - Postfix.size()); in BreakableStringLiteral()
283 ColumnLimit - Postfix.size(), Style.TabWidth, Encoding); in getSplit()
291 Tok, Prefix.size() + TailOffset + Split.first, Split.second, Postfix, in insertBreak()
324 Postfix = "\","; in BreakableStringLiteralUsingOperators()
332 Postfix = SignOnNewLine ? "'" : "' +"; in BreakableStringLiteralUsingOperators()
343 Postfix = SignOnNewLine ? "\"" : "\" +"; in BreakableStringLiteralUsingOperators()
[all …]
H A DBreakableToken.h254 StringRef Prefix, StringRef Postfix,
280 StringRef Postfix; variable
H A DContinuationIndenter.cpp2383 StringRef Postfix; in createBreakableToken() local
2388 if ((Text.ends_with(Postfix = "\"") && in createBreakableToken()
2395 Text.ends_with(Postfix = "\")"))) { in createBreakableToken()
2397 Current, StartColumn, Prefix, Postfix, UnbreakableTailLength, in createBreakableToken()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp1911 #define INSTR_CASE(Prefix, Instr, Suffix, Postfix) \ in addConstantComments() argument
1912 case X86::Prefix##Instr##Suffix##rm##Postfix: in addConstantComments()
2010 #define MOV_AVX512_CASE(Suffix, Postfix) \ in addConstantComments() argument
2011 case X86::VMOVDQA64##Suffix##rm##Postfix: \ in addConstantComments()
2012 case X86::VMOVDQA32##Suffix##rm##Postfix: \ in addConstantComments()
2013 case X86::VMOVDQU64##Suffix##rm##Postfix: \ in addConstantComments()
2014 case X86::VMOVDQU32##Suffix##rm##Postfix: \ in addConstantComments()
2015 case X86::VMOVDQU16##Suffix##rm##Postfix: \ in addConstantComments()
2016 case X86::VMOVDQU8##Suffix##rm##Postfix: \ in addConstantComments()
2017 case X86::VMOVAPS##Suffix##rm##Postfix: \ in addConstantComments()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp108 bool Postfix) const;
110 bool Postfix) const;
535 SVal Iter, bool Postfix) const { in handleIncrement()
556 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleIncrement()
561 SVal Iter, bool Postfix) const { in handleDecrement()
582 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleDecrement()
/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
307 def MOVM # TYPE.Size # AM # m # TYPE.Postfix
323 def MOVM # TYPE.Size # m # AM # TYPE.Postfix
H A DM68kInstrInfo.td612 string Postfix = postfix;
777 let Postfix = "_TC" in {
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsAMDGPU.def291 // Postfix l indicates the 1st argument is i64.
292 // Postfix h indicates the 4/5-th arguments are half4.
310 // Postfix w32 indicates the builtin requires wavefront size of 32.
311 // Postfix w64 indicates the builtin requires wavefront size of 64.
463 // Postfix w32 indicates the builtin requires wavefront size of 32.
464 // Postfix w64 indicates the builtin requires wavefront size of 64.
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h176 Postfix, enumerator
470 const std::string_view Postfix; variable
474 : Node(KPostfixQualifiedType), Ty(Ty_), Postfix(Postfix_) {} in PostfixQualifiedType()
476 template<typename Fn> void match(Fn F) const { F(Ty, Postfix); } in match()
480 OB += Postfix; in printLeft()
1988 const std::string_view Postfix; variable
2004 OB += Postfix; in printLeft()
2844 Postfix, // Postfix unary: expr @ enumerator
3241 {"cc", OperatorInfo::NamedCast, false, Node::Prec::Postfix, "const_cast"},
3242 {"cl", OperatorInfo::Call, false, Node::Prec::Postfix, "operator()"},
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DPathDiagnostic.cpp894 StringRef Postfix = StringRef());
910 StringRef Prefix, StringRef Postfix) { in describeTemplateParameters() argument
920 Out << Postfix; in describeTemplateParameters()
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp180 case Node::Prec::Postfix: in print()
181 return printStr("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.def428 // [C99 6.5.2.4] Postfix increment and decrement
H A DExpr.h2304 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.