Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/unittests/Format/
H A DDefinitionBlockSeparatorTest.cpp330 std::string Postfix = "\n" in TEST_F() local
336 verifyFormat(Prefix + removeEmptyLines(Infix) + removeEmptyLines(Postfix), in TEST_F()
337 Style, Prefix + Infix + Postfix); in TEST_F()
344 std::string Postfix = "// Enum test1\n" in TEST_F() local
387 verifyFormat(Prefix + "\n\n\n" + Postfix, Style, in TEST_F()
388 Prefix + removeEmptyLines(Postfix)); in TEST_F()
H A DMacroCallReconstructorTest.cpp531 auto Postfix = tokens("}();"); in TEST_F() local
541 Postfix, in TEST_F()
558 Postfix, in TEST_F()
626 auto Postfix = tokens("})"); in TEST_F() local
634 Postfix, in TEST_F()
647 Postfix, in TEST_F()
/llvm-project-15.0.7/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.startswith(Prefix) && Tok.TokenText.endswith(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()
H A DBreakableToken.h252 StringRef Prefix, StringRef Postfix,
278 StringRef Postfix; variable
H A DContinuationIndenter.cpp2099 StringRef Postfix; in createBreakableToken() local
2104 if ((Text.endswith(Postfix = "\"") && in createBreakableToken()
2109 (Text.startswith(Prefix = "_T(\"") && Text.endswith(Postfix = "\")"))) { in createBreakableToken()
2118 Current, StartColumn, Prefix, Postfix, UnbreakableTailLength, in createBreakableToken()
/llvm-project-15.0.7/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
176 def MOV # TYPE.Size # REG # i # TYPE.Postfix
196 def MOV # TYPE.Size # REG # AM # TYPE.Postfix
225 def MOV # TYPE.Size # DST_AM # SRC_AM # TYPE.Postfix
288 def MOVM # TYPE.Size # AM # m # TYPE.Postfix
304 def MOVM # TYPE.Size # m # AM # TYPE.Postfix
H A DM68kInstrInfo.td607 string Postfix = postfix;
765 let Postfix = "_TC" in {
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp108 bool Postfix) const;
110 bool Postfix) const;
538 const SVal &Iter, bool Postfix) const { in handleIncrement()
559 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleIncrement()
564 const SVal &Iter, bool Postfix) const { in handleDecrement()
585 State = setIteratorPosition(State, RetVal, Postfix ? *Pos : *NewPos); in handleDecrement()
/llvm-project-15.0.7/clang/lib/Driver/ToolChains/
H A DAMDGPUOpenMP.cpp35 const char *Postfix, in getOutputFileName() argument
40 C.getArgs().MakeArgString(Base.str() + Postfix + "." + Extension); in getOutputFileName()
43 C.getDriver().GetTemporaryPath(Base.str() + Postfix, Extension); in getOutputFileName()
/llvm-project-15.0.7/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h170 Postfix, enumerator
457 const StringView Postfix; variable
461 : Node(KPostfixQualifiedType), Ty(Ty_), Postfix(Postfix_) {} in PostfixQualifiedType()
467 OB += Postfix; in printLeft()
1836 const StringView Postfix; variable
1852 OB += Postfix; in printLeft()
2574 Postfix, // Postfix unary: expr @ enumerator
2975 {"mm", OperatorInfo::Postfix, false, Node::Prec::Postfix, "operator--"},
2989 {"pp", OperatorInfo::Postfix, false, Node::Prec::Postfix, "operator++"},
4538 case OperatorInfo::Postfix: { in parseExpr()
[all …]
/llvm-project-15.0.7/libcxxabi/src/demangle/
H A DItaniumDemangle.h170 Postfix, enumerator
457 const StringView Postfix; variable
461 : Node(KPostfixQualifiedType), Ty(Ty_), Postfix(Postfix_) {} in PostfixQualifiedType()
467 OB += Postfix; in printLeft()
1836 const StringView Postfix; variable
1852 OB += Postfix; in printLeft()
2574 Postfix, // Postfix unary: expr @ enumerator
2975 {"mm", OperatorInfo::Postfix, false, Node::Prec::Postfix, "operator--"},
2989 {"pp", OperatorInfo::Postfix, false, Node::Prec::Postfix, "operator++"},
4538 case OperatorInfo::Postfix: { in parseExpr()
[all …]
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DBuiltinsAMDGPU.def247 // Postfix l indicates the 1st argument is i64.
248 // Postfix h indicates the 4/5-th arguments are half4.
262 // Postfix w32 indicates the builtin requires wavefront size of 32.
263 // Postfix w64 indicates the builtin requires wavefront size of 64.
/llvm-project-15.0.7/clang/test/CodeGenOpenCL/
H A Dbuiltins-amdgcn-raytracing.cl12 // Postfix l indicates the 1st argument is i64 and postfix h indicates
/llvm-project-15.0.7/clang-tools-extra/clang-change-namespace/
H A DChangeNamespace.cpp781 llvm::StringRef Postfix = OldNs; in replaceQualifiedSymbolInDeclContext() local
782 bool Consumed = Postfix.consume_front(OldNamespace); in replaceQualifiedSymbolInDeclContext()
785 const std::string NewNs = (NewNamespace + Postfix).str(); in replaceQualifiedSymbolInDeclContext()
/llvm-project-15.0.7/libcxxabi/src/
H A Dcxa_demangle.cpp180 case Node::Prec::Postfix: in print()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DPathDiagnostic.cpp892 StringRef Postfix = StringRef());
908 StringRef Prefix, StringRef Postfix) { in describeTemplateParameters() argument
918 Out << Postfix; in describeTemplateParameters()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DIdentifierNamingCheck.cpp272 std::string Postfix(Options.get(StyleString, "")); in getFileStyleFromOptions() local
278 if (CaseOptional || !Prefix.empty() || !Postfix.empty() || in getFileStyleFromOptions()
281 std::move(Postfix), IgnoredRegexpStr.str(), in getFileStyleFromOptions()
/llvm-project-15.0.7/llvm/lib/Demangle/
H A DItaniumDemangle.cpp179 case Node::Prec::Postfix: in print()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64SchedA57WriteRes.td16 // Postfix (optional): (XYZ)_Forward
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOperationKinds.def421 // [C99 6.5.2.4] Postfix increment and decrement
H A DExpr.h2281 static Opcode getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix);
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp1315 UnaryOperator::getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix) { in getOverloadedOpcode() argument
1318 case OO_PlusPlus: return Postfix ? UO_PostInc : UO_PreInc; in getOverloadedOpcode()
1319 case OO_MinusMinus: return Postfix ? UO_PostDec : UO_PreDec; in getOverloadedOpcode()