Lines Matching refs:IO
38 enumeration(IO &IO, FormatStyle::BreakBeforeNoexceptSpecifierStyle &Value) { in enumeration()
39 IO.enumCase(Value, "Never", FormatStyle::BBNSS_Never); in enumeration()
40 IO.enumCase(Value, "OnlyWithParen", FormatStyle::BBNSS_OnlyWithParen); in enumeration()
41 IO.enumCase(Value, "Always", FormatStyle::BBNSS_Always); in enumeration()
46 static void enumInput(IO &IO, FormatStyle::AlignConsecutiveStyle &Value) { in enumInput()
47 IO.enumCase(Value, "None", in enumInput()
52 IO.enumCase(Value, "Consecutive", in enumInput()
57 IO.enumCase(Value, "AcrossEmptyLines", in enumInput()
62 IO.enumCase(Value, "AcrossComments", in enumInput()
67 IO.enumCase(Value, "AcrossEmptyLinesAndComments", in enumInput()
74 IO.enumCase(Value, "true", in enumInput()
79 IO.enumCase(Value, "false", in enumInput()
86 static void mapping(IO &IO, FormatStyle::AlignConsecutiveStyle &Value) { in mapping()
87 IO.mapOptional("Enabled", Value.Enabled); in mapping()
88 IO.mapOptional("AcrossEmptyLines", Value.AcrossEmptyLines); in mapping()
89 IO.mapOptional("AcrossComments", Value.AcrossComments); in mapping()
90 IO.mapOptional("AlignCompound", Value.AlignCompound); in mapping()
91 IO.mapOptional("AlignFunctionPointers", Value.AlignFunctionPointers); in mapping()
92 IO.mapOptional("PadOperators", Value.PadOperators); in mapping()
98 static void mapping(IO &IO, in mapping()
100 IO.mapOptional("Enabled", Value.Enabled); in mapping()
101 IO.mapOptional("AcrossEmptyLines", Value.AcrossEmptyLines); in mapping()
102 IO.mapOptional("AcrossComments", Value.AcrossComments); in mapping()
103 IO.mapOptional("AlignCaseArrows", Value.AlignCaseArrows); in mapping()
104 IO.mapOptional("AlignCaseColons", Value.AlignCaseColons); in mapping()
110 static void enumeration(IO &IO, FormatStyle::AttributeBreakingStyle &Value) { in enumeration()
111 IO.enumCase(Value, "Always", FormatStyle::ABS_Always); in enumeration()
112 IO.enumCase(Value, "Leave", FormatStyle::ABS_Leave); in enumeration()
113 IO.enumCase(Value, "Never", FormatStyle::ABS_Never); in enumeration()
119 static void enumeration(IO &IO, in enumeration()
121 IO.enumCase(Value, "None", FormatStyle::AIAS_None); in enumeration()
122 IO.enumCase(Value, "Left", FormatStyle::AIAS_Left); in enumeration()
123 IO.enumCase(Value, "Right", FormatStyle::AIAS_Right); in enumeration()
128 static void enumeration(IO &IO, FormatStyle::BinaryOperatorStyle &Value) { in enumeration()
129 IO.enumCase(Value, "All", FormatStyle::BOS_All); in enumeration()
130 IO.enumCase(Value, "true", FormatStyle::BOS_All); in enumeration()
131 IO.enumCase(Value, "None", FormatStyle::BOS_None); in enumeration()
132 IO.enumCase(Value, "false", FormatStyle::BOS_None); in enumeration()
133 IO.enumCase(Value, "NonAssignment", FormatStyle::BOS_NonAssignment); in enumeration()
138 static void enumeration(IO &IO, FormatStyle::BinPackStyle &Value) { in enumeration()
139 IO.enumCase(Value, "Auto", FormatStyle::BPS_Auto); in enumeration()
140 IO.enumCase(Value, "Always", FormatStyle::BPS_Always); in enumeration()
141 IO.enumCase(Value, "Never", FormatStyle::BPS_Never); in enumeration()
147 static void enumeration(IO &IO, in enumeration()
149 IO.enumCase(Value, "Both", FormatStyle::BFCS_Both); in enumeration()
150 IO.enumCase(Value, "None", FormatStyle::BFCS_None); in enumeration()
151 IO.enumCase(Value, "Before", FormatStyle::BFCS_Before); in enumeration()
152 IO.enumCase(Value, "After", FormatStyle::BFCS_After); in enumeration()
157 static void enumeration(IO &IO, FormatStyle::BraceBreakingStyle &Value) { in enumeration()
158 IO.enumCase(Value, "Attach", FormatStyle::BS_Attach); in enumeration()
159 IO.enumCase(Value, "Linux", FormatStyle::BS_Linux); in enumeration()
160 IO.enumCase(Value, "Mozilla", FormatStyle::BS_Mozilla); in enumeration()
161 IO.enumCase(Value, "Stroustrup", FormatStyle::BS_Stroustrup); in enumeration()
162 IO.enumCase(Value, "Allman", FormatStyle::BS_Allman); in enumeration()
163 IO.enumCase(Value, "Whitesmiths", FormatStyle::BS_Whitesmiths); in enumeration()
164 IO.enumCase(Value, "GNU", FormatStyle::BS_GNU); in enumeration()
165 IO.enumCase(Value, "WebKit", FormatStyle::BS_WebKit); in enumeration()
166 IO.enumCase(Value, "Custom", FormatStyle::BS_Custom); in enumeration()
171 static void mapping(IO &IO, FormatStyle::BraceWrappingFlags &Wrapping) { in mapping()
172 IO.mapOptional("AfterCaseLabel", Wrapping.AfterCaseLabel); in mapping()
173 IO.mapOptional("AfterClass", Wrapping.AfterClass); in mapping()
174 IO.mapOptional("AfterControlStatement", Wrapping.AfterControlStatement); in mapping()
175 IO.mapOptional("AfterEnum", Wrapping.AfterEnum); in mapping()
176 IO.mapOptional("AfterExternBlock", Wrapping.AfterExternBlock); in mapping()
177 IO.mapOptional("AfterFunction", Wrapping.AfterFunction); in mapping()
178 IO.mapOptional("AfterNamespace", Wrapping.AfterNamespace); in mapping()
179 IO.mapOptional("AfterObjCDeclaration", Wrapping.AfterObjCDeclaration); in mapping()
180 IO.mapOptional("AfterStruct", Wrapping.AfterStruct); in mapping()
181 IO.mapOptional("AfterUnion", Wrapping.AfterUnion); in mapping()
182 IO.mapOptional("BeforeCatch", Wrapping.BeforeCatch); in mapping()
183 IO.mapOptional("BeforeElse", Wrapping.BeforeElse); in mapping()
184 IO.mapOptional("BeforeLambdaBody", Wrapping.BeforeLambdaBody); in mapping()
185 IO.mapOptional("BeforeWhile", Wrapping.BeforeWhile); in mapping()
186 IO.mapOptional("IndentBraces", Wrapping.IndentBraces); in mapping()
187 IO.mapOptional("SplitEmptyFunction", Wrapping.SplitEmptyFunction); in mapping()
188 IO.mapOptional("SplitEmptyRecord", Wrapping.SplitEmptyRecord); in mapping()
189 IO.mapOptional("SplitEmptyNamespace", Wrapping.SplitEmptyNamespace); in mapping()
194 static void enumeration(IO &IO, FormatStyle::BracketAlignmentStyle &Value) { in enumeration()
195 IO.enumCase(Value, "Align", FormatStyle::BAS_Align); in enumeration()
196 IO.enumCase(Value, "DontAlign", FormatStyle::BAS_DontAlign); in enumeration()
197 IO.enumCase(Value, "AlwaysBreak", FormatStyle::BAS_AlwaysBreak); in enumeration()
198 IO.enumCase(Value, "BlockIndent", FormatStyle::BAS_BlockIndent); in enumeration()
201 IO.enumCase(Value, "true", FormatStyle::BAS_Align); in enumeration()
202 IO.enumCase(Value, "false", FormatStyle::BAS_DontAlign); in enumeration()
210 enumeration(IO &IO, in enumeration()
212 IO.enumCase(Value, "Never", FormatStyle::BWACS_Never); in enumeration()
213 IO.enumCase(Value, "MultiLine", FormatStyle::BWACS_MultiLine); in enumeration()
214 IO.enumCase(Value, "Always", FormatStyle::BWACS_Always); in enumeration()
217 IO.enumCase(Value, "false", FormatStyle::BWACS_Never); in enumeration()
218 IO.enumCase(Value, "true", FormatStyle::BWACS_Always); in enumeration()
226 enumeration(IO &IO, FormatStyle::BreakBeforeConceptDeclarationsStyle &Value) { in enumeration()
227 IO.enumCase(Value, "Never", FormatStyle::BBCDS_Never); in enumeration()
228 IO.enumCase(Value, "Allowed", FormatStyle::BBCDS_Allowed); in enumeration()
229 IO.enumCase(Value, "Always", FormatStyle::BBCDS_Always); in enumeration()
232 IO.enumCase(Value, "true", FormatStyle::BBCDS_Always); in enumeration()
233 IO.enumCase(Value, "false", FormatStyle::BBCDS_Allowed); in enumeration()
239 static void enumeration(IO &IO, in enumeration()
241 IO.enumCase(Value, "Never", FormatStyle::BBIAS_Never); in enumeration()
242 IO.enumCase(Value, "OnlyMultiline", FormatStyle::BBIAS_OnlyMultiline); in enumeration()
243 IO.enumCase(Value, "Always", FormatStyle::BBIAS_Always); in enumeration()
250 enumeration(IO &IO, FormatStyle::BreakConstructorInitializersStyle &Value) { in enumeration()
251 IO.enumCase(Value, "BeforeColon", FormatStyle::BCIS_BeforeColon); in enumeration()
252 IO.enumCase(Value, "BeforeComma", FormatStyle::BCIS_BeforeComma); in enumeration()
253 IO.enumCase(Value, "AfterColon", FormatStyle::BCIS_AfterColon); in enumeration()
259 static void enumeration(IO &IO, in enumeration()
261 IO.enumCase(Value, "BeforeColon", FormatStyle::BILS_BeforeColon); in enumeration()
262 IO.enumCase(Value, "BeforeComma", FormatStyle::BILS_BeforeComma); in enumeration()
263 IO.enumCase(Value, "AfterColon", FormatStyle::BILS_AfterColon); in enumeration()
264 IO.enumCase(Value, "AfterComma", FormatStyle::BILS_AfterComma); in enumeration()
270 static void enumeration(IO &IO, in enumeration()
272 IO.enumCase(Value, "Leave", FormatStyle::BTDS_Leave); in enumeration()
273 IO.enumCase(Value, "No", FormatStyle::BTDS_No); in enumeration()
274 IO.enumCase(Value, "MultiLine", FormatStyle::BTDS_MultiLine); in enumeration()
275 IO.enumCase(Value, "Yes", FormatStyle::BTDS_Yes); in enumeration()
278 IO.enumCase(Value, "false", FormatStyle::BTDS_MultiLine); in enumeration()
279 IO.enumCase(Value, "true", FormatStyle::BTDS_Yes); in enumeration()
284 static void enumeration(IO &IO, FormatStyle::DAGArgStyle &Value) { in enumeration()
285 IO.enumCase(Value, "DontBreak", FormatStyle::DAS_DontBreak); in enumeration()
286 IO.enumCase(Value, "BreakElements", FormatStyle::DAS_BreakElements); in enumeration()
287 IO.enumCase(Value, "BreakAll", FormatStyle::DAS_BreakAll); in enumeration()
294 enumeration(IO &IO, FormatStyle::DefinitionReturnTypeBreakingStyle &Value) { in enumeration()
295 IO.enumCase(Value, "None", FormatStyle::DRTBS_None); in enumeration()
296 IO.enumCase(Value, "All", FormatStyle::DRTBS_All); in enumeration()
297 IO.enumCase(Value, "TopLevel", FormatStyle::DRTBS_TopLevel); in enumeration()
300 IO.enumCase(Value, "false", FormatStyle::DRTBS_None); in enumeration()
301 IO.enumCase(Value, "true", FormatStyle::DRTBS_All); in enumeration()
307 static void enumeration(IO &IO, in enumeration()
309 IO.enumCase(Value, "DontAlign", FormatStyle::ENAS_DontAlign); in enumeration()
310 IO.enumCase(Value, "Left", FormatStyle::ENAS_Left); in enumeration()
311 IO.enumCase(Value, "LeftWithLastLine", FormatStyle::ENAS_LeftWithLastLine); in enumeration()
312 IO.enumCase(Value, "Right", FormatStyle::ENAS_Right); in enumeration()
315 IO.enumCase(Value, "true", FormatStyle::ENAS_Left); in enumeration()
316 IO.enumCase(Value, "false", FormatStyle::ENAS_Right); in enumeration()
323 enumeration(IO &IO, FormatStyle::EmptyLineAfterAccessModifierStyle &Value) { in enumeration()
324 IO.enumCase(Value, "Never", FormatStyle::ELAAMS_Never); in enumeration()
325 IO.enumCase(Value, "Leave", FormatStyle::ELAAMS_Leave); in enumeration()
326 IO.enumCase(Value, "Always", FormatStyle::ELAAMS_Always); in enumeration()
334 enumeration(IO &IO, FormatStyle::EmptyLineBeforeAccessModifierStyle &Value) { in enumeration()
335 IO.enumCase(Value, "Never", FormatStyle::ELBAMS_Never); in enumeration()
336 IO.enumCase(Value, "Leave", FormatStyle::ELBAMS_Leave); in enumeration()
337 IO.enumCase(Value, "LogicalBlock", FormatStyle::ELBAMS_LogicalBlock); in enumeration()
338 IO.enumCase(Value, "Always", FormatStyle::ELBAMS_Always); in enumeration()
344 static void enumeration(IO &IO, FormatStyle::IndentExternBlockStyle &Value) { in enumeration()
345 IO.enumCase(Value, "AfterExternBlock", FormatStyle::IEBS_AfterExternBlock); in enumeration()
346 IO.enumCase(Value, "Indent", FormatStyle::IEBS_Indent); in enumeration()
347 IO.enumCase(Value, "NoIndent", FormatStyle::IEBS_NoIndent); in enumeration()
348 IO.enumCase(Value, "true", FormatStyle::IEBS_Indent); in enumeration()
349 IO.enumCase(Value, "false", FormatStyle::IEBS_NoIndent); in enumeration()
354 static void mapping(IO &IO, FormatStyle::IntegerLiteralSeparatorStyle &Base) { in mapping()
355 IO.mapOptional("Binary", Base.Binary); in mapping()
356 IO.mapOptional("BinaryMinDigits", Base.BinaryMinDigits); in mapping()
357 IO.mapOptional("Decimal", Base.Decimal); in mapping()
358 IO.mapOptional("DecimalMinDigits", Base.DecimalMinDigits); in mapping()
359 IO.mapOptional("Hex", Base.Hex); in mapping()
360 IO.mapOptional("HexMinDigits", Base.HexMinDigits); in mapping()
365 static void enumeration(IO &IO, FormatStyle::JavaScriptQuoteStyle &Value) { in enumeration()
366 IO.enumCase(Value, "Leave", FormatStyle::JSQS_Leave); in enumeration()
367 IO.enumCase(Value, "Single", FormatStyle::JSQS_Single); in enumeration()
368 IO.enumCase(Value, "Double", FormatStyle::JSQS_Double); in enumeration()
373 static void mapping(IO &IO, FormatStyle::KeepEmptyLinesStyle &Value) { in mapping()
374 IO.mapOptional("AtEndOfFile", Value.AtEndOfFile); in mapping()
375 IO.mapOptional("AtStartOfBlock", Value.AtStartOfBlock); in mapping()
376 IO.mapOptional("AtStartOfFile", Value.AtStartOfFile); in mapping()
381 static void enumeration(IO &IO, FormatStyle::LanguageKind &Value) { in enumeration()
382 IO.enumCase(Value, "Cpp", FormatStyle::LK_Cpp); in enumeration()
383 IO.enumCase(Value, "Java", FormatStyle::LK_Java); in enumeration()
384 IO.enumCase(Value, "JavaScript", FormatStyle::LK_JavaScript); in enumeration()
385 IO.enumCase(Value, "ObjC", FormatStyle::LK_ObjC); in enumeration()
386 IO.enumCase(Value, "Proto", FormatStyle::LK_Proto); in enumeration()
387 IO.enumCase(Value, "TableGen", FormatStyle::LK_TableGen); in enumeration()
388 IO.enumCase(Value, "TextProto", FormatStyle::LK_TextProto); in enumeration()
389 IO.enumCase(Value, "CSharp", FormatStyle::LK_CSharp); in enumeration()
390 IO.enumCase(Value, "Json", FormatStyle::LK_Json); in enumeration()
391 IO.enumCase(Value, "Verilog", FormatStyle::LK_Verilog); in enumeration()
396 static void enumeration(IO &IO, FormatStyle::LanguageStandard &Value) { in enumeration()
397 IO.enumCase(Value, "c++03", FormatStyle::LS_Cpp03); in enumeration()
398 IO.enumCase(Value, "C++03", FormatStyle::LS_Cpp03); // Legacy alias in enumeration()
399 IO.enumCase(Value, "Cpp03", FormatStyle::LS_Cpp03); // Legacy alias in enumeration()
401 IO.enumCase(Value, "c++11", FormatStyle::LS_Cpp11); in enumeration()
402 IO.enumCase(Value, "C++11", FormatStyle::LS_Cpp11); // Legacy alias in enumeration()
404 IO.enumCase(Value, "c++14", FormatStyle::LS_Cpp14); in enumeration()
405 IO.enumCase(Value, "c++17", FormatStyle::LS_Cpp17); in enumeration()
406 IO.enumCase(Value, "c++20", FormatStyle::LS_Cpp20); in enumeration()
408 IO.enumCase(Value, "Latest", FormatStyle::LS_Latest); in enumeration()
409 IO.enumCase(Value, "Cpp11", FormatStyle::LS_Latest); // Legacy alias in enumeration()
410 IO.enumCase(Value, "Auto", FormatStyle::LS_Auto); in enumeration()
416 static void enumeration(IO &IO, in enumeration()
418 IO.enumCase(Value, "Signature", FormatStyle::LBI_Signature); in enumeration()
419 IO.enumCase(Value, "OuterScope", FormatStyle::LBI_OuterScope); in enumeration()
424 static void enumeration(IO &IO, FormatStyle::LineEndingStyle &Value) { in enumeration()
425 IO.enumCase(Value, "LF", FormatStyle::LE_LF); in enumeration()
426 IO.enumCase(Value, "CRLF", FormatStyle::LE_CRLF); in enumeration()
427 IO.enumCase(Value, "DeriveLF", FormatStyle::LE_DeriveLF); in enumeration()
428 IO.enumCase(Value, "DeriveCRLF", FormatStyle::LE_DeriveCRLF); in enumeration()
434 static void enumeration(IO &IO, in enumeration()
436 IO.enumCase(Value, "None", FormatStyle::NI_None); in enumeration()
437 IO.enumCase(Value, "Inner", FormatStyle::NI_Inner); in enumeration()
438 IO.enumCase(Value, "All", FormatStyle::NI_All); in enumeration()
443 static void enumeration(IO &IO, FormatStyle::OperandAlignmentStyle &Value) { in enumeration()
444 IO.enumCase(Value, "DontAlign", FormatStyle::OAS_DontAlign); in enumeration()
445 IO.enumCase(Value, "Align", FormatStyle::OAS_Align); in enumeration()
446 IO.enumCase(Value, "AlignAfterOperator", in enumeration()
450 IO.enumCase(Value, "true", FormatStyle::OAS_Align); in enumeration()
451 IO.enumCase(Value, "false", FormatStyle::OAS_DontAlign); in enumeration()
458 enumeration(IO &IO, FormatStyle::PackConstructorInitializersStyle &Value) { in enumeration()
459 IO.enumCase(Value, "Never", FormatStyle::PCIS_Never); in enumeration()
460 IO.enumCase(Value, "BinPack", FormatStyle::PCIS_BinPack); in enumeration()
461 IO.enumCase(Value, "CurrentLine", FormatStyle::PCIS_CurrentLine); in enumeration()
462 IO.enumCase(Value, "NextLine", FormatStyle::PCIS_NextLine); in enumeration()
463 IO.enumCase(Value, "NextLineOnly", FormatStyle::PCIS_NextLineOnly); in enumeration()
468 static void enumeration(IO &IO, FormatStyle::PointerAlignmentStyle &Value) { in enumeration()
469 IO.enumCase(Value, "Middle", FormatStyle::PAS_Middle); in enumeration()
470 IO.enumCase(Value, "Left", FormatStyle::PAS_Left); in enumeration()
471 IO.enumCase(Value, "Right", FormatStyle::PAS_Right); in enumeration()
474 IO.enumCase(Value, "true", FormatStyle::PAS_Left); in enumeration()
475 IO.enumCase(Value, "false", FormatStyle::PAS_Right); in enumeration()
481 static void enumeration(IO &IO, FormatStyle::PPDirectiveIndentStyle &Value) { in enumeration()
482 IO.enumCase(Value, "None", FormatStyle::PPDIS_None); in enumeration()
483 IO.enumCase(Value, "AfterHash", FormatStyle::PPDIS_AfterHash); in enumeration()
484 IO.enumCase(Value, "BeforeHash", FormatStyle::PPDIS_BeforeHash); in enumeration()
490 static void enumeration(IO &IO, FormatStyle::QualifierAlignmentStyle &Value) { in enumeration()
491 IO.enumCase(Value, "Leave", FormatStyle::QAS_Leave); in enumeration()
492 IO.enumCase(Value, "Left", FormatStyle::QAS_Left); in enumeration()
493 IO.enumCase(Value, "Right", FormatStyle::QAS_Right); in enumeration()
494 IO.enumCase(Value, "Custom", FormatStyle::QAS_Custom); in enumeration()
499 static void mapping(IO &IO, FormatStyle::RawStringFormat &Format) { in mapping()
500 IO.mapOptional("Language", Format.Language); in mapping()
501 IO.mapOptional("Delimiters", Format.Delimiters); in mapping()
502 IO.mapOptional("EnclosingFunctions", Format.EnclosingFunctions); in mapping()
503 IO.mapOptional("CanonicalDelimiter", Format.CanonicalDelimiter); in mapping()
504 IO.mapOptional("BasedOnStyle", Format.BasedOnStyle); in mapping()
510 static void enumeration(IO &IO, FormatStyle::ReferenceAlignmentStyle &Value) { in enumeration()
511 IO.enumCase(Value, "Pointer", FormatStyle::RAS_Pointer); in enumeration()
512 IO.enumCase(Value, "Middle", FormatStyle::RAS_Middle); in enumeration()
513 IO.enumCase(Value, "Left", FormatStyle::RAS_Left); in enumeration()
514 IO.enumCase(Value, "Right", FormatStyle::RAS_Right); in enumeration()
520 static void enumeration(IO &IO, FormatStyle::RemoveParenthesesStyle &Value) { in enumeration()
521 IO.enumCase(Value, "Leave", FormatStyle::RPS_Leave); in enumeration()
522 IO.enumCase(Value, "MultipleParentheses", in enumeration()
524 IO.enumCase(Value, "ReturnStatement", FormatStyle::RPS_ReturnStatement); in enumeration()
530 static void enumeration(IO &IO, in enumeration()
532 IO.enumCase(Value, "OwnLine", FormatStyle::RCPS_OwnLine); in enumeration()
533 IO.enumCase(Value, "WithPreceding", FormatStyle::RCPS_WithPreceding); in enumeration()
534 IO.enumCase(Value, "WithFollowing", FormatStyle::RCPS_WithFollowing); in enumeration()
535 IO.enumCase(Value, "SingleLine", FormatStyle::RCPS_SingleLine); in enumeration()
542 enumeration(IO &IO, FormatStyle::RequiresExpressionIndentationKind &Value) { in enumeration()
543 IO.enumCase(Value, "Keyword", FormatStyle::REI_Keyword); in enumeration()
544 IO.enumCase(Value, "OuterScope", FormatStyle::REI_OuterScope); in enumeration()
550 static void enumeration(IO &IO, FormatStyle::ReturnTypeBreakingStyle &Value) { in enumeration()
551 IO.enumCase(Value, "None", FormatStyle::RTBS_None); in enumeration()
552 IO.enumCase(Value, "Automatic", FormatStyle::RTBS_Automatic); in enumeration()
553 IO.enumCase(Value, "ExceptShortType", FormatStyle::RTBS_ExceptShortType); in enumeration()
554 IO.enumCase(Value, "All", FormatStyle::RTBS_All); in enumeration()
555 IO.enumCase(Value, "TopLevel", FormatStyle::RTBS_TopLevel); in enumeration()
556 IO.enumCase(Value, "TopLevelDefinitions", in enumeration()
558 IO.enumCase(Value, "AllDefinitions", FormatStyle::RTBS_AllDefinitions); in enumeration()
564 static void enumeration(IO &IO, FormatStyle::SeparateDefinitionStyle &Value) { in enumeration()
565 IO.enumCase(Value, "Leave", FormatStyle::SDS_Leave); in enumeration()
566 IO.enumCase(Value, "Always", FormatStyle::SDS_Always); in enumeration()
567 IO.enumCase(Value, "Never", FormatStyle::SDS_Never); in enumeration()
572 static void enumeration(IO &IO, FormatStyle::ShortBlockStyle &Value) { in enumeration()
573 IO.enumCase(Value, "Never", FormatStyle::SBS_Never); in enumeration()
574 IO.enumCase(Value, "false", FormatStyle::SBS_Never); in enumeration()
575 IO.enumCase(Value, "Always", FormatStyle::SBS_Always); in enumeration()
576 IO.enumCase(Value, "true", FormatStyle::SBS_Always); in enumeration()
577 IO.enumCase(Value, "Empty", FormatStyle::SBS_Empty); in enumeration()
582 static void enumeration(IO &IO, FormatStyle::ShortFunctionStyle &Value) { in enumeration()
583 IO.enumCase(Value, "None", FormatStyle::SFS_None); in enumeration()
584 IO.enumCase(Value, "false", FormatStyle::SFS_None); in enumeration()
585 IO.enumCase(Value, "All", FormatStyle::SFS_All); in enumeration()
586 IO.enumCase(Value, "true", FormatStyle::SFS_All); in enumeration()
587 IO.enumCase(Value, "Inline", FormatStyle::SFS_Inline); in enumeration()
588 IO.enumCase(Value, "InlineOnly", FormatStyle::SFS_InlineOnly); in enumeration()
589 IO.enumCase(Value, "Empty", FormatStyle::SFS_Empty); in enumeration()
594 static void enumeration(IO &IO, FormatStyle::ShortIfStyle &Value) { in enumeration()
595 IO.enumCase(Value, "Never", FormatStyle::SIS_Never); in enumeration()
596 IO.enumCase(Value, "WithoutElse", FormatStyle::SIS_WithoutElse); in enumeration()
597 IO.enumCase(Value, "OnlyFirstIf", FormatStyle::SIS_OnlyFirstIf); in enumeration()
598 IO.enumCase(Value, "AllIfsAndElse", FormatStyle::SIS_AllIfsAndElse); in enumeration()
601 IO.enumCase(Value, "Always", FormatStyle::SIS_OnlyFirstIf); in enumeration()
602 IO.enumCase(Value, "false", FormatStyle::SIS_Never); in enumeration()
603 IO.enumCase(Value, "true", FormatStyle::SIS_WithoutElse); in enumeration()
608 static void enumeration(IO &IO, FormatStyle::ShortLambdaStyle &Value) { in enumeration()
609 IO.enumCase(Value, "None", FormatStyle::SLS_None); in enumeration()
610 IO.enumCase(Value, "false", FormatStyle::SLS_None); in enumeration()
611 IO.enumCase(Value, "Empty", FormatStyle::SLS_Empty); in enumeration()
612 IO.enumCase(Value, "Inline", FormatStyle::SLS_Inline); in enumeration()
613 IO.enumCase(Value, "All", FormatStyle::SLS_All); in enumeration()
614 IO.enumCase(Value, "true", FormatStyle::SLS_All); in enumeration()
619 static void enumeration(IO &IO, FormatStyle::SortIncludesOptions &Value) { in enumeration()
620 IO.enumCase(Value, "Never", FormatStyle::SI_Never); in enumeration()
621 IO.enumCase(Value, "CaseInsensitive", FormatStyle::SI_CaseInsensitive); in enumeration()
622 IO.enumCase(Value, "CaseSensitive", FormatStyle::SI_CaseSensitive); in enumeration()
625 IO.enumCase(Value, "false", FormatStyle::SI_Never); in enumeration()
626 IO.enumCase(Value, "true", FormatStyle::SI_CaseSensitive); in enumeration()
632 static void enumeration(IO &IO, in enumeration()
634 IO.enumCase(Value, "Before", FormatStyle::SJSIO_Before); in enumeration()
635 IO.enumCase(Value, "After", FormatStyle::SJSIO_After); in enumeration()
641 static void enumeration(IO &IO, in enumeration()
643 IO.enumCase(Value, "Never", FormatStyle::SUD_Never); in enumeration()
644 IO.enumCase(Value, "Lexicographic", FormatStyle::SUD_Lexicographic); in enumeration()
645 IO.enumCase(Value, "LexicographicNumeric", in enumeration()
649 IO.enumCase(Value, "false", FormatStyle::SUD_Never); in enumeration()
650 IO.enumCase(Value, "true", FormatStyle::SUD_LexicographicNumeric); in enumeration()
657 enumeration(IO &IO, FormatStyle::SpaceAroundPointerQualifiersStyle &Value) { in enumeration()
658 IO.enumCase(Value, "Default", FormatStyle::SAPQ_Default); in enumeration()
659 IO.enumCase(Value, "Before", FormatStyle::SAPQ_Before); in enumeration()
660 IO.enumCase(Value, "After", FormatStyle::SAPQ_After); in enumeration()
661 IO.enumCase(Value, "Both", FormatStyle::SAPQ_Both); in enumeration()
666 static void mapping(IO &IO, FormatStyle::SpaceBeforeParensCustom &Spacing) { in mapping()
667 IO.mapOptional("AfterControlStatements", Spacing.AfterControlStatements); in mapping()
668 IO.mapOptional("AfterForeachMacros", Spacing.AfterForeachMacros); in mapping()
669 IO.mapOptional("AfterFunctionDefinitionName", in mapping()
671 IO.mapOptional("AfterFunctionDeclarationName", in mapping()
673 IO.mapOptional("AfterIfMacros", Spacing.AfterIfMacros); in mapping()
674 IO.mapOptional("AfterOverloadedOperator", Spacing.AfterOverloadedOperator); in mapping()
675 IO.mapOptional("AfterPlacementOperator", Spacing.AfterPlacementOperator); in mapping()
676 IO.mapOptional("AfterRequiresInClause", Spacing.AfterRequiresInClause); in mapping()
677 IO.mapOptional("AfterRequiresInExpression", in mapping()
679 IO.mapOptional("BeforeNonEmptyParentheses", in mapping()
686 static void enumeration(IO &IO, FormatStyle::SpaceBeforeParensStyle &Value) { in enumeration()
687 IO.enumCase(Value, "Never", FormatStyle::SBPO_Never); in enumeration()
688 IO.enumCase(Value, "ControlStatements", in enumeration()
690 IO.enumCase(Value, "ControlStatementsExceptControlMacros", in enumeration()
692 IO.enumCase(Value, "NonEmptyParentheses", in enumeration()
694 IO.enumCase(Value, "Always", FormatStyle::SBPO_Always); in enumeration()
695 IO.enumCase(Value, "Custom", FormatStyle::SBPO_Custom); in enumeration()
698 IO.enumCase(Value, "false", FormatStyle::SBPO_Never); in enumeration()
699 IO.enumCase(Value, "true", FormatStyle::SBPO_ControlStatements); in enumeration()
700 IO.enumCase(Value, "ControlStatementsExceptForEachMacros", in enumeration()
706 static void enumeration(IO &IO, FormatStyle::SpacesInAnglesStyle &Value) { in enumeration()
707 IO.enumCase(Value, "Never", FormatStyle::SIAS_Never); in enumeration()
708 IO.enumCase(Value, "Always", FormatStyle::SIAS_Always); in enumeration()
709 IO.enumCase(Value, "Leave", FormatStyle::SIAS_Leave); in enumeration()
712 IO.enumCase(Value, "false", FormatStyle::SIAS_Never); in enumeration()
713 IO.enumCase(Value, "true", FormatStyle::SIAS_Always); in enumeration()
718 static void mapping(IO &IO, FormatStyle::SpacesInLineComment &Space) { in mapping()
721 IO.mapOptional("Minimum", Space.Minimum); in mapping()
722 IO.mapOptional("Maximum", signedMaximum); in mapping()
731 static void mapping(IO &IO, FormatStyle::SpacesInParensCustom &Spaces) { in mapping()
732 IO.mapOptional("ExceptDoubleParentheses", Spaces.ExceptDoubleParentheses); in mapping()
733 IO.mapOptional("InCStyleCasts", Spaces.InCStyleCasts); in mapping()
734 IO.mapOptional("InConditionalStatements", Spaces.InConditionalStatements); in mapping()
735 IO.mapOptional("InEmptyParentheses", Spaces.InEmptyParentheses); in mapping()
736 IO.mapOptional("Other", Spaces.Other); in mapping()
741 static void enumeration(IO &IO, FormatStyle::SpacesInParensStyle &Value) { in enumeration()
742 IO.enumCase(Value, "Never", FormatStyle::SIPO_Never); in enumeration()
743 IO.enumCase(Value, "Custom", FormatStyle::SIPO_Custom); in enumeration()
748 static void enumeration(IO &IO, FormatStyle::TrailingCommaStyle &Value) { in enumeration()
749 IO.enumCase(Value, "None", FormatStyle::TCS_None); in enumeration()
750 IO.enumCase(Value, "Wrapped", FormatStyle::TCS_Wrapped); in enumeration()
756 static void enumeration(IO &IO, in enumeration()
758 IO.enumCase(Value, "Leave", FormatStyle::TCAS_Leave); in enumeration()
759 IO.enumCase(Value, "Always", FormatStyle::TCAS_Always); in enumeration()
760 IO.enumCase(Value, "Never", FormatStyle::TCAS_Never); in enumeration()
765 static void enumInput(IO &IO, in enumInput()
767 IO.enumCase(Value, "Leave", in enumInput()
771 IO.enumCase(Value, "Always", in enumInput()
775 IO.enumCase(Value, "Never", in enumInput()
780 IO.enumCase(Value, "true", in enumInput()
783 IO.enumCase(Value, "false", in enumInput()
788 static void mapping(IO &IO, in mapping()
790 IO.mapOptional("Kind", Value.Kind); in mapping()
791 IO.mapOptional("OverEmptyLines", Value.OverEmptyLines); in mapping()
796 static void enumeration(IO &IO, FormatStyle::UseTabStyle &Value) { in enumeration()
797 IO.enumCase(Value, "Never", FormatStyle::UT_Never); in enumeration()
798 IO.enumCase(Value, "false", FormatStyle::UT_Never); in enumeration()
799 IO.enumCase(Value, "Always", FormatStyle::UT_Always); in enumeration()
800 IO.enumCase(Value, "true", FormatStyle::UT_Always); in enumeration()
801 IO.enumCase(Value, "ForIndentation", FormatStyle::UT_ForIndentation); in enumeration()
802 IO.enumCase(Value, "ForContinuationAndIndentation", in enumeration()
804 IO.enumCase(Value, "AlignWithSpaces", FormatStyle::UT_AlignWithSpaces); in enumeration()
809 static void mapping(IO &IO, FormatStyle &Style) { in mapping()
811 IO.mapOptional("Language", Style.Language); in mapping()
814 if (IO.outputting()) { in mapping()
826 IO.mapOptional("BasedOnStyle", BasedOnStyle); in mapping()
830 ((FormatStyle *)IO.getContext())->Language; in mapping()
832 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle)); in mapping()
867 if (!IO.outputting()) { in mapping()
868 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlines); in mapping()
869 IO.mapOptional("AllowAllConstructorInitializersOnNextLine", OnNextLine); in mapping()
870 IO.mapOptional("AlwaysBreakAfterReturnType", Style.BreakAfterReturnType); in mapping()
871 IO.mapOptional("AlwaysBreakTemplateDeclarations", in mapping()
873 IO.mapOptional("BreakBeforeInheritanceComma", in mapping()
875 IO.mapOptional("BreakConstructorInitializersBeforeComma", in mapping()
877 IO.mapOptional("ConstructorInitializerAllOnOneLineOrOnePerLine", in mapping()
879 IO.mapOptional("DeriveLineEnding", DeriveLineEnding); in mapping()
880 IO.mapOptional("DerivePointerBinding", Style.DerivePointerAlignment); in mapping()
881 IO.mapOptional("KeepEmptyLinesAtEOF", Style.KeepEmptyLines.AtEndOfFile); in mapping()
882 IO.mapOptional("KeepEmptyLinesAtTheStartOfBlocks", in mapping()
884 IO.mapOptional("IndentFunctionDeclarationAfterType", in mapping()
886 IO.mapOptional("IndentRequires", Style.IndentRequiresClause); in mapping()
887 IO.mapOptional("PointerBindsToType", Style.PointerAlignment); in mapping()
888 IO.mapOptional("SpaceAfterControlStatementKeyword", in mapping()
890 IO.mapOptional("SpaceInEmptyParentheses", SpaceInEmptyParentheses); in mapping()
891 IO.mapOptional("SpacesInConditionalStatement", in mapping()
893 IO.mapOptional("SpacesInCStyleCastParentheses", in mapping()
895 IO.mapOptional("SpacesInParentheses", SpacesInParentheses); in mapping()
896 IO.mapOptional("UseCRLF", UseCRLF); in mapping()
899 IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset); in mapping()
900 IO.mapOptional("AlignAfterOpenBracket", Style.AlignAfterOpenBracket); in mapping()
901 IO.mapOptional("AlignArrayOfStructures", Style.AlignArrayOfStructures); in mapping()
902 IO.mapOptional("AlignConsecutiveAssignments", in mapping()
904 IO.mapOptional("AlignConsecutiveBitFields", in mapping()
906 IO.mapOptional("AlignConsecutiveDeclarations", in mapping()
908 IO.mapOptional("AlignConsecutiveMacros", Style.AlignConsecutiveMacros); in mapping()
909 IO.mapOptional("AlignConsecutiveShortCaseStatements", in mapping()
911 IO.mapOptional("AlignConsecutiveTableGenBreakingDAGArgColons", in mapping()
913 IO.mapOptional("AlignConsecutiveTableGenCondOperatorColons", in mapping()
915 IO.mapOptional("AlignConsecutiveTableGenDefinitionColons", in mapping()
917 IO.mapOptional("AlignEscapedNewlines", Style.AlignEscapedNewlines); in mapping()
918 IO.mapOptional("AlignOperands", Style.AlignOperands); in mapping()
919 IO.mapOptional("AlignTrailingComments", Style.AlignTrailingComments); in mapping()
920 IO.mapOptional("AllowAllArgumentsOnNextLine", in mapping()
922 IO.mapOptional("AllowAllParametersOfDeclarationOnNextLine", in mapping()
924 IO.mapOptional("AllowBreakBeforeNoexceptSpecifier", in mapping()
926 IO.mapOptional("AllowShortBlocksOnASingleLine", in mapping()
928 IO.mapOptional("AllowShortCaseExpressionOnASingleLine", in mapping()
930 IO.mapOptional("AllowShortCaseLabelsOnASingleLine", in mapping()
932 IO.mapOptional("AllowShortCompoundRequirementOnASingleLine", in mapping()
934 IO.mapOptional("AllowShortEnumsOnASingleLine", in mapping()
936 IO.mapOptional("AllowShortFunctionsOnASingleLine", in mapping()
938 IO.mapOptional("AllowShortIfStatementsOnASingleLine", in mapping()
940 IO.mapOptional("AllowShortLambdasOnASingleLine", in mapping()
942 IO.mapOptional("AllowShortLoopsOnASingleLine", in mapping()
944 IO.mapOptional("AlwaysBreakAfterDefinitionReturnType", in mapping()
946 IO.mapOptional("AlwaysBreakBeforeMultilineStrings", in mapping()
948 IO.mapOptional("AttributeMacros", Style.AttributeMacros); in mapping()
949 IO.mapOptional("BinPackArguments", Style.BinPackArguments); in mapping()
950 IO.mapOptional("BinPackParameters", Style.BinPackParameters); in mapping()
951 IO.mapOptional("BitFieldColonSpacing", Style.BitFieldColonSpacing); in mapping()
952 IO.mapOptional("BracedInitializerIndentWidth", in mapping()
954 IO.mapOptional("BraceWrapping", Style.BraceWrapping); in mapping()
955 IO.mapOptional("BreakAdjacentStringLiterals", in mapping()
957 IO.mapOptional("BreakAfterAttributes", Style.BreakAfterAttributes); in mapping()
958 IO.mapOptional("BreakAfterJavaFieldAnnotations", in mapping()
960 IO.mapOptional("BreakAfterReturnType", Style.BreakAfterReturnType); in mapping()
961 IO.mapOptional("BreakArrays", Style.BreakArrays); in mapping()
962 IO.mapOptional("BreakBeforeBinaryOperators", in mapping()
964 IO.mapOptional("BreakBeforeConceptDeclarations", in mapping()
966 IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces); in mapping()
967 IO.mapOptional("BreakBeforeInlineASMColon", in mapping()
969 IO.mapOptional("BreakBeforeTernaryOperators", in mapping()
971 IO.mapOptional("BreakConstructorInitializers", in mapping()
973 IO.mapOptional("BreakFunctionDefinitionParameters", in mapping()
975 IO.mapOptional("BreakInheritanceList", Style.BreakInheritanceList); in mapping()
976 IO.mapOptional("BreakStringLiterals", Style.BreakStringLiterals); in mapping()
977 IO.mapOptional("BreakTemplateDeclarations", in mapping()
979 IO.mapOptional("ColumnLimit", Style.ColumnLimit); in mapping()
980 IO.mapOptional("CommentPragmas", Style.CommentPragmas); in mapping()
981 IO.mapOptional("CompactNamespaces", Style.CompactNamespaces); in mapping()
982 IO.mapOptional("ConstructorInitializerIndentWidth", in mapping()
984 IO.mapOptional("ContinuationIndentWidth", Style.ContinuationIndentWidth); in mapping()
985 IO.mapOptional("Cpp11BracedListStyle", Style.Cpp11BracedListStyle); in mapping()
986 IO.mapOptional("DerivePointerAlignment", Style.DerivePointerAlignment); in mapping()
987 IO.mapOptional("DisableFormat", Style.DisableFormat); in mapping()
988 IO.mapOptional("EmptyLineAfterAccessModifier", in mapping()
990 IO.mapOptional("EmptyLineBeforeAccessModifier", in mapping()
992 IO.mapOptional("ExperimentalAutoDetectBinPacking", in mapping()
994 IO.mapOptional("FixNamespaceComments", Style.FixNamespaceComments); in mapping()
995 IO.mapOptional("ForEachMacros", Style.ForEachMacros); in mapping()
996 IO.mapOptional("IfMacros", Style.IfMacros); in mapping()
997 IO.mapOptional("IncludeBlocks", Style.IncludeStyle.IncludeBlocks); in mapping()
998 IO.mapOptional("IncludeCategories", Style.IncludeStyle.IncludeCategories); in mapping()
999 IO.mapOptional("IncludeIsMainRegex", Style.IncludeStyle.IncludeIsMainRegex); in mapping()
1000 IO.mapOptional("IncludeIsMainSourceRegex", in mapping()
1002 IO.mapOptional("IndentAccessModifiers", Style.IndentAccessModifiers); in mapping()
1003 IO.mapOptional("IndentCaseBlocks", Style.IndentCaseBlocks); in mapping()
1004 IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels); in mapping()
1005 IO.mapOptional("IndentExternBlock", Style.IndentExternBlock); in mapping()
1006 IO.mapOptional("IndentGotoLabels", Style.IndentGotoLabels); in mapping()
1007 IO.mapOptional("IndentPPDirectives", Style.IndentPPDirectives); in mapping()
1008 IO.mapOptional("IndentRequiresClause", Style.IndentRequiresClause); in mapping()
1009 IO.mapOptional("IndentWidth", Style.IndentWidth); in mapping()
1010 IO.mapOptional("IndentWrappedFunctionNames", in mapping()
1012 IO.mapOptional("InsertBraces", Style.InsertBraces); in mapping()
1013 IO.mapOptional("InsertNewlineAtEOF", Style.InsertNewlineAtEOF); in mapping()
1014 IO.mapOptional("InsertTrailingCommas", Style.InsertTrailingCommas); in mapping()
1015 IO.mapOptional("IntegerLiteralSeparator", Style.IntegerLiteralSeparator); in mapping()
1016 IO.mapOptional("JavaImportGroups", Style.JavaImportGroups); in mapping()
1017 IO.mapOptional("JavaScriptQuotes", Style.JavaScriptQuotes); in mapping()
1018 IO.mapOptional("JavaScriptWrapImports", Style.JavaScriptWrapImports); in mapping()
1019 IO.mapOptional("KeepEmptyLines", Style.KeepEmptyLines); in mapping()
1020 IO.mapOptional("LambdaBodyIndentation", Style.LambdaBodyIndentation); in mapping()
1021 IO.mapOptional("LineEnding", Style.LineEnding); in mapping()
1022 IO.mapOptional("MacroBlockBegin", Style.MacroBlockBegin); in mapping()
1023 IO.mapOptional("MacroBlockEnd", Style.MacroBlockEnd); in mapping()
1024 IO.mapOptional("Macros", Style.Macros); in mapping()
1025 IO.mapOptional("MainIncludeChar", Style.IncludeStyle.MainIncludeChar); in mapping()
1026 IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep); in mapping()
1027 IO.mapOptional("NamespaceIndentation", Style.NamespaceIndentation); in mapping()
1028 IO.mapOptional("NamespaceMacros", Style.NamespaceMacros); in mapping()
1029 IO.mapOptional("ObjCBinPackProtocolList", Style.ObjCBinPackProtocolList); in mapping()
1030 IO.mapOptional("ObjCBlockIndentWidth", Style.ObjCBlockIndentWidth); in mapping()
1031 IO.mapOptional("ObjCBreakBeforeNestedBlockParam", in mapping()
1033 IO.mapOptional("ObjCPropertyAttributeOrder", in mapping()
1035 IO.mapOptional("ObjCSpaceAfterProperty", Style.ObjCSpaceAfterProperty); in mapping()
1036 IO.mapOptional("ObjCSpaceBeforeProtocolList", in mapping()
1038 IO.mapOptional("PackConstructorInitializers", in mapping()
1040 IO.mapOptional("PenaltyBreakAssignment", Style.PenaltyBreakAssignment); in mapping()
1041 IO.mapOptional("PenaltyBreakBeforeFirstCallParameter", in mapping()
1043 IO.mapOptional("PenaltyBreakComment", Style.PenaltyBreakComment); in mapping()
1044 IO.mapOptional("PenaltyBreakFirstLessLess", in mapping()
1046 IO.mapOptional("PenaltyBreakOpenParenthesis", in mapping()
1048 IO.mapOptional("PenaltyBreakScopeResolution", in mapping()
1050 IO.mapOptional("PenaltyBreakString", Style.PenaltyBreakString); in mapping()
1051 IO.mapOptional("PenaltyBreakTemplateDeclaration", in mapping()
1053 IO.mapOptional("PenaltyExcessCharacter", Style.PenaltyExcessCharacter); in mapping()
1054 IO.mapOptional("PenaltyIndentedWhitespace", in mapping()
1056 IO.mapOptional("PenaltyReturnTypeOnItsOwnLine", in mapping()
1058 IO.mapOptional("PointerAlignment", Style.PointerAlignment); in mapping()
1059 IO.mapOptional("PPIndentWidth", Style.PPIndentWidth); in mapping()
1060 IO.mapOptional("QualifierAlignment", Style.QualifierAlignment); in mapping()
1067 IO.mapOptional("QualifierOrder", Style.QualifierOrder); in mapping()
1068 IO.mapOptional("RawStringFormats", Style.RawStringFormats); in mapping()
1069 IO.mapOptional("ReferenceAlignment", Style.ReferenceAlignment); in mapping()
1070 IO.mapOptional("ReflowComments", Style.ReflowComments); in mapping()
1071 IO.mapOptional("RemoveBracesLLVM", Style.RemoveBracesLLVM); in mapping()
1072 IO.mapOptional("RemoveParentheses", Style.RemoveParentheses); in mapping()
1073 IO.mapOptional("RemoveSemicolon", Style.RemoveSemicolon); in mapping()
1074 IO.mapOptional("RequiresClausePosition", Style.RequiresClausePosition); in mapping()
1075 IO.mapOptional("RequiresExpressionIndentation", in mapping()
1077 IO.mapOptional("SeparateDefinitionBlocks", Style.SeparateDefinitionBlocks); in mapping()
1078 IO.mapOptional("ShortNamespaceLines", Style.ShortNamespaceLines); in mapping()
1079 IO.mapOptional("SkipMacroDefinitionBody", Style.SkipMacroDefinitionBody); in mapping()
1080 IO.mapOptional("SortIncludes", Style.SortIncludes); in mapping()
1081 IO.mapOptional("SortJavaStaticImport", Style.SortJavaStaticImport); in mapping()
1082 IO.mapOptional("SortUsingDeclarations", Style.SortUsingDeclarations); in mapping()
1083 IO.mapOptional("SpaceAfterCStyleCast", Style.SpaceAfterCStyleCast); in mapping()
1084 IO.mapOptional("SpaceAfterLogicalNot", Style.SpaceAfterLogicalNot); in mapping()
1085 IO.mapOptional("SpaceAfterTemplateKeyword", in mapping()
1087 IO.mapOptional("SpaceAroundPointerQualifiers", in mapping()
1089 IO.mapOptional("SpaceBeforeAssignmentOperators", in mapping()
1091 IO.mapOptional("SpaceBeforeCaseColon", Style.SpaceBeforeCaseColon); in mapping()
1092 IO.mapOptional("SpaceBeforeCpp11BracedList", in mapping()
1094 IO.mapOptional("SpaceBeforeCtorInitializerColon", in mapping()
1096 IO.mapOptional("SpaceBeforeInheritanceColon", in mapping()
1098 IO.mapOptional("SpaceBeforeJsonColon", Style.SpaceBeforeJsonColon); in mapping()
1099 IO.mapOptional("SpaceBeforeParens", Style.SpaceBeforeParens); in mapping()
1100 IO.mapOptional("SpaceBeforeParensOptions", Style.SpaceBeforeParensOptions); in mapping()
1101 IO.mapOptional("SpaceBeforeRangeBasedForLoopColon", in mapping()
1103 IO.mapOptional("SpaceBeforeSquareBrackets", in mapping()
1105 IO.mapOptional("SpaceInEmptyBlock", Style.SpaceInEmptyBlock); in mapping()
1106 IO.mapOptional("SpacesBeforeTrailingComments", in mapping()
1108 IO.mapOptional("SpacesInAngles", Style.SpacesInAngles); in mapping()
1109 IO.mapOptional("SpacesInContainerLiterals", in mapping()
1111 IO.mapOptional("SpacesInLineCommentPrefix", in mapping()
1113 IO.mapOptional("SpacesInParens", Style.SpacesInParens); in mapping()
1114 IO.mapOptional("SpacesInParensOptions", Style.SpacesInParensOptions); in mapping()
1115 IO.mapOptional("SpacesInSquareBrackets", Style.SpacesInSquareBrackets); in mapping()
1116 IO.mapOptional("Standard", Style.Standard); in mapping()
1117 IO.mapOptional("StatementAttributeLikeMacros", in mapping()
1119 IO.mapOptional("StatementMacros", Style.StatementMacros); in mapping()
1120 IO.mapOptional("TableGenBreakingDAGArgOperators", in mapping()
1122 IO.mapOptional("TableGenBreakInsideDAGArg", in mapping()
1124 IO.mapOptional("TabWidth", Style.TabWidth); in mapping()
1125 IO.mapOptional("TypeNames", Style.TypeNames); in mapping()
1126 IO.mapOptional("TypenameMacros", Style.TypenameMacros); in mapping()
1127 IO.mapOptional("UseTab", Style.UseTab); in mapping()
1128 IO.mapOptional("VerilogBreakBetweenInstancePorts", in mapping()
1130 IO.mapOptional("WhitespaceSensitiveMacros", in mapping()
1216 static size_t size(IO &IO, std::vector<FormatStyle> &Seq) { in size()
1219 static FormatStyle &element(IO &IO, std::vector<FormatStyle> &Seq, in element()
1227 Template = *((const FormatStyle *)IO.getContext()); in element()