Lines Matching refs:IO

66   enumeration(IO &IO, FormatStyle::BreakBeforeNoexceptSpecifierStyle &Value) {  in enumeration()
67 IO.enumCase(Value, "Never", FormatStyle::BBNSS_Never); in enumeration()
68 IO.enumCase(Value, "OnlyWithParen", FormatStyle::BBNSS_OnlyWithParen); in enumeration()
69 IO.enumCase(Value, "Always", FormatStyle::BBNSS_Always); in enumeration()
74 static void enumInput(IO &IO, FormatStyle::AlignConsecutiveStyle &Value) { in enumInput()
75 IO.enumCase(Value, "None", in enumInput()
80 IO.enumCase(Value, "Consecutive", in enumInput()
85 IO.enumCase(Value, "AcrossEmptyLines", in enumInput()
90 IO.enumCase(Value, "AcrossComments", in enumInput()
95 IO.enumCase(Value, "AcrossEmptyLinesAndComments", in enumInput()
102 IO.enumCase(Value, "true", in enumInput()
107 IO.enumCase(Value, "false", in enumInput()
114 static void mapping(IO &IO, FormatStyle::AlignConsecutiveStyle &Value) { in mapping()
115 IO.mapOptional("Enabled", Value.Enabled); in mapping()
116 IO.mapOptional("AcrossEmptyLines", Value.AcrossEmptyLines); in mapping()
117 IO.mapOptional("AcrossComments", Value.AcrossComments); in mapping()
118 IO.mapOptional("AlignCompound", Value.AlignCompound); in mapping()
119 IO.mapOptional("AlignFunctionPointers", Value.AlignFunctionPointers); in mapping()
120 IO.mapOptional("PadOperators", Value.PadOperators); in mapping()
126 static void mapping(IO &IO, in mapping()
128 IO.mapOptional("Enabled", Value.Enabled); in mapping()
129 IO.mapOptional("AcrossEmptyLines", Value.AcrossEmptyLines); in mapping()
130 IO.mapOptional("AcrossComments", Value.AcrossComments); in mapping()
131 IO.mapOptional("AlignCaseColons", Value.AlignCaseColons); in mapping()
137 static void enumeration(IO &IO, FormatStyle::AttributeBreakingStyle &Value) { in enumeration()
138 IO.enumCase(Value, "Always", FormatStyle::ABS_Always); in enumeration()
139 IO.enumCase(Value, "Leave", FormatStyle::ABS_Leave); in enumeration()
140 IO.enumCase(Value, "Never", FormatStyle::ABS_Never); in enumeration()
146 static void enumeration(IO &IO, in enumeration()
148 IO.enumCase(Value, "None", FormatStyle::AIAS_None); in enumeration()
149 IO.enumCase(Value, "Left", FormatStyle::AIAS_Left); in enumeration()
150 IO.enumCase(Value, "Right", FormatStyle::AIAS_Right); in enumeration()
155 static void enumeration(IO &IO, FormatStyle::BinaryOperatorStyle &Value) { in enumeration()
156 IO.enumCase(Value, "All", FormatStyle::BOS_All); in enumeration()
157 IO.enumCase(Value, "true", FormatStyle::BOS_All); in enumeration()
158 IO.enumCase(Value, "None", FormatStyle::BOS_None); in enumeration()
159 IO.enumCase(Value, "false", FormatStyle::BOS_None); in enumeration()
160 IO.enumCase(Value, "NonAssignment", FormatStyle::BOS_NonAssignment); in enumeration()
165 static void enumeration(IO &IO, FormatStyle::BinPackStyle &Value) { in enumeration()
166 IO.enumCase(Value, "Auto", FormatStyle::BPS_Auto); in enumeration()
167 IO.enumCase(Value, "Always", FormatStyle::BPS_Always); in enumeration()
168 IO.enumCase(Value, "Never", FormatStyle::BPS_Never); in enumeration()
174 static void enumeration(IO &IO, in enumeration()
176 IO.enumCase(Value, "Both", FormatStyle::BFCS_Both); in enumeration()
177 IO.enumCase(Value, "None", FormatStyle::BFCS_None); in enumeration()
178 IO.enumCase(Value, "Before", FormatStyle::BFCS_Before); in enumeration()
179 IO.enumCase(Value, "After", FormatStyle::BFCS_After); in enumeration()
184 static void enumeration(IO &IO, FormatStyle::BraceBreakingStyle &Value) { in enumeration()
185 IO.enumCase(Value, "Attach", FormatStyle::BS_Attach); in enumeration()
186 IO.enumCase(Value, "Linux", FormatStyle::BS_Linux); in enumeration()
187 IO.enumCase(Value, "Mozilla", FormatStyle::BS_Mozilla); in enumeration()
188 IO.enumCase(Value, "Stroustrup", FormatStyle::BS_Stroustrup); in enumeration()
189 IO.enumCase(Value, "Allman", FormatStyle::BS_Allman); in enumeration()
190 IO.enumCase(Value, "Whitesmiths", FormatStyle::BS_Whitesmiths); in enumeration()
191 IO.enumCase(Value, "GNU", FormatStyle::BS_GNU); in enumeration()
192 IO.enumCase(Value, "WebKit", FormatStyle::BS_WebKit); in enumeration()
193 IO.enumCase(Value, "Custom", FormatStyle::BS_Custom); in enumeration()
198 static void mapping(IO &IO, FormatStyle::BraceWrappingFlags &Wrapping) { in mapping()
199 IO.mapOptional("AfterCaseLabel", Wrapping.AfterCaseLabel); in mapping()
200 IO.mapOptional("AfterClass", Wrapping.AfterClass); in mapping()
201 IO.mapOptional("AfterControlStatement", Wrapping.AfterControlStatement); in mapping()
202 IO.mapOptional("AfterEnum", Wrapping.AfterEnum); in mapping()
203 IO.mapOptional("AfterExternBlock", Wrapping.AfterExternBlock); in mapping()
204 IO.mapOptional("AfterFunction", Wrapping.AfterFunction); in mapping()
205 IO.mapOptional("AfterNamespace", Wrapping.AfterNamespace); in mapping()
206 IO.mapOptional("AfterObjCDeclaration", Wrapping.AfterObjCDeclaration); in mapping()
207 IO.mapOptional("AfterStruct", Wrapping.AfterStruct); in mapping()
208 IO.mapOptional("AfterUnion", Wrapping.AfterUnion); in mapping()
209 IO.mapOptional("BeforeCatch", Wrapping.BeforeCatch); in mapping()
210 IO.mapOptional("BeforeElse", Wrapping.BeforeElse); in mapping()
211 IO.mapOptional("BeforeLambdaBody", Wrapping.BeforeLambdaBody); in mapping()
212 IO.mapOptional("BeforeWhile", Wrapping.BeforeWhile); in mapping()
213 IO.mapOptional("IndentBraces", Wrapping.IndentBraces); in mapping()
214 IO.mapOptional("SplitEmptyFunction", Wrapping.SplitEmptyFunction); in mapping()
215 IO.mapOptional("SplitEmptyRecord", Wrapping.SplitEmptyRecord); in mapping()
216 IO.mapOptional("SplitEmptyNamespace", Wrapping.SplitEmptyNamespace); in mapping()
221 static void enumeration(IO &IO, FormatStyle::BracketAlignmentStyle &Value) { in enumeration()
222 IO.enumCase(Value, "Align", FormatStyle::BAS_Align); in enumeration()
223 IO.enumCase(Value, "DontAlign", FormatStyle::BAS_DontAlign); in enumeration()
224 IO.enumCase(Value, "AlwaysBreak", FormatStyle::BAS_AlwaysBreak); in enumeration()
225 IO.enumCase(Value, "BlockIndent", FormatStyle::BAS_BlockIndent); in enumeration()
228 IO.enumCase(Value, "true", FormatStyle::BAS_Align); in enumeration()
229 IO.enumCase(Value, "false", FormatStyle::BAS_DontAlign); in enumeration()
237 enumeration(IO &IO, in enumeration()
239 IO.enumCase(Value, "Never", FormatStyle::BWACS_Never); in enumeration()
240 IO.enumCase(Value, "MultiLine", FormatStyle::BWACS_MultiLine); in enumeration()
241 IO.enumCase(Value, "Always", FormatStyle::BWACS_Always); in enumeration()
244 IO.enumCase(Value, "false", FormatStyle::BWACS_Never); in enumeration()
245 IO.enumCase(Value, "true", FormatStyle::BWACS_Always); in enumeration()
253 enumeration(IO &IO, FormatStyle::BreakBeforeConceptDeclarationsStyle &Value) { in enumeration()
254 IO.enumCase(Value, "Never", FormatStyle::BBCDS_Never); in enumeration()
255 IO.enumCase(Value, "Allowed", FormatStyle::BBCDS_Allowed); in enumeration()
256 IO.enumCase(Value, "Always", FormatStyle::BBCDS_Always); in enumeration()
259 IO.enumCase(Value, "true", FormatStyle::BBCDS_Always); in enumeration()
260 IO.enumCase(Value, "false", FormatStyle::BBCDS_Allowed); in enumeration()
266 static void enumeration(IO &IO, in enumeration()
268 IO.enumCase(Value, "Never", FormatStyle::BBIAS_Never); in enumeration()
269 IO.enumCase(Value, "OnlyMultiline", FormatStyle::BBIAS_OnlyMultiline); in enumeration()
270 IO.enumCase(Value, "Always", FormatStyle::BBIAS_Always); in enumeration()
277 enumeration(IO &IO, FormatStyle::BreakConstructorInitializersStyle &Value) { in enumeration()
278 IO.enumCase(Value, "BeforeColon", FormatStyle::BCIS_BeforeColon); in enumeration()
279 IO.enumCase(Value, "BeforeComma", FormatStyle::BCIS_BeforeComma); in enumeration()
280 IO.enumCase(Value, "AfterColon", FormatStyle::BCIS_AfterColon); in enumeration()
286 static void enumeration(IO &IO, in enumeration()
288 IO.enumCase(Value, "BeforeColon", FormatStyle::BILS_BeforeColon); in enumeration()
289 IO.enumCase(Value, "BeforeComma", FormatStyle::BILS_BeforeComma); in enumeration()
290 IO.enumCase(Value, "AfterColon", FormatStyle::BILS_AfterColon); in enumeration()
291 IO.enumCase(Value, "AfterComma", FormatStyle::BILS_AfterComma); in enumeration()
297 static void enumeration(IO &IO, in enumeration()
299 IO.enumCase(Value, "No", FormatStyle::BTDS_No); in enumeration()
300 IO.enumCase(Value, "MultiLine", FormatStyle::BTDS_MultiLine); in enumeration()
301 IO.enumCase(Value, "Yes", FormatStyle::BTDS_Yes); in enumeration()
304 IO.enumCase(Value, "false", FormatStyle::BTDS_MultiLine); in enumeration()
305 IO.enumCase(Value, "true", FormatStyle::BTDS_Yes); in enumeration()
312 enumeration(IO &IO, FormatStyle::DefinitionReturnTypeBreakingStyle &Value) { in enumeration()
313 IO.enumCase(Value, "None", FormatStyle::DRTBS_None); in enumeration()
314 IO.enumCase(Value, "All", FormatStyle::DRTBS_All); in enumeration()
315 IO.enumCase(Value, "TopLevel", FormatStyle::DRTBS_TopLevel); in enumeration()
318 IO.enumCase(Value, "false", FormatStyle::DRTBS_None); in enumeration()
319 IO.enumCase(Value, "true", FormatStyle::DRTBS_All); in enumeration()
325 static void enumeration(IO &IO, in enumeration()
327 IO.enumCase(Value, "DontAlign", FormatStyle::ENAS_DontAlign); in enumeration()
328 IO.enumCase(Value, "Left", FormatStyle::ENAS_Left); in enumeration()
329 IO.enumCase(Value, "Right", FormatStyle::ENAS_Right); in enumeration()
332 IO.enumCase(Value, "true", FormatStyle::ENAS_Left); in enumeration()
333 IO.enumCase(Value, "false", FormatStyle::ENAS_Right); in enumeration()
340 enumeration(IO &IO, FormatStyle::EmptyLineAfterAccessModifierStyle &Value) { in enumeration()
341 IO.enumCase(Value, "Never", FormatStyle::ELAAMS_Never); in enumeration()
342 IO.enumCase(Value, "Leave", FormatStyle::ELAAMS_Leave); in enumeration()
343 IO.enumCase(Value, "Always", FormatStyle::ELAAMS_Always); in enumeration()
351 enumeration(IO &IO, FormatStyle::EmptyLineBeforeAccessModifierStyle &Value) { in enumeration()
352 IO.enumCase(Value, "Never", FormatStyle::ELBAMS_Never); in enumeration()
353 IO.enumCase(Value, "Leave", FormatStyle::ELBAMS_Leave); in enumeration()
354 IO.enumCase(Value, "LogicalBlock", FormatStyle::ELBAMS_LogicalBlock); in enumeration()
355 IO.enumCase(Value, "Always", FormatStyle::ELBAMS_Always); in enumeration()
361 static void enumeration(IO &IO, FormatStyle::IndentExternBlockStyle &Value) { in enumeration()
362 IO.enumCase(Value, "AfterExternBlock", FormatStyle::IEBS_AfterExternBlock); in enumeration()
363 IO.enumCase(Value, "Indent", FormatStyle::IEBS_Indent); in enumeration()
364 IO.enumCase(Value, "NoIndent", FormatStyle::IEBS_NoIndent); in enumeration()
365 IO.enumCase(Value, "true", FormatStyle::IEBS_Indent); in enumeration()
366 IO.enumCase(Value, "false", FormatStyle::IEBS_NoIndent); in enumeration()
371 static void mapping(IO &IO, FormatStyle::IntegerLiteralSeparatorStyle &Base) { in mapping()
372 IO.mapOptional("Binary", Base.Binary); in mapping()
373 IO.mapOptional("BinaryMinDigits", Base.BinaryMinDigits); in mapping()
374 IO.mapOptional("Decimal", Base.Decimal); in mapping()
375 IO.mapOptional("DecimalMinDigits", Base.DecimalMinDigits); in mapping()
376 IO.mapOptional("Hex", Base.Hex); in mapping()
377 IO.mapOptional("HexMinDigits", Base.HexMinDigits); in mapping()
382 static void enumeration(IO &IO, FormatStyle::JavaScriptQuoteStyle &Value) { in enumeration()
383 IO.enumCase(Value, "Leave", FormatStyle::JSQS_Leave); in enumeration()
384 IO.enumCase(Value, "Single", FormatStyle::JSQS_Single); in enumeration()
385 IO.enumCase(Value, "Double", FormatStyle::JSQS_Double); in enumeration()
390 static void enumeration(IO &IO, FormatStyle::LanguageKind &Value) { in enumeration()
391 IO.enumCase(Value, "Cpp", FormatStyle::LK_Cpp); in enumeration()
392 IO.enumCase(Value, "Java", FormatStyle::LK_Java); in enumeration()
393 IO.enumCase(Value, "JavaScript", FormatStyle::LK_JavaScript); in enumeration()
394 IO.enumCase(Value, "ObjC", FormatStyle::LK_ObjC); in enumeration()
395 IO.enumCase(Value, "Proto", FormatStyle::LK_Proto); in enumeration()
396 IO.enumCase(Value, "TableGen", FormatStyle::LK_TableGen); in enumeration()
397 IO.enumCase(Value, "TextProto", FormatStyle::LK_TextProto); in enumeration()
398 IO.enumCase(Value, "CSharp", FormatStyle::LK_CSharp); in enumeration()
399 IO.enumCase(Value, "Json", FormatStyle::LK_Json); in enumeration()
400 IO.enumCase(Value, "Verilog", FormatStyle::LK_Verilog); in enumeration()
405 static void enumeration(IO &IO, FormatStyle::LanguageStandard &Value) { in enumeration()
406 IO.enumCase(Value, "c++03", FormatStyle::LS_Cpp03); in enumeration()
407 IO.enumCase(Value, "C++03", FormatStyle::LS_Cpp03); // Legacy alias in enumeration()
408 IO.enumCase(Value, "Cpp03", FormatStyle::LS_Cpp03); // Legacy alias in enumeration()
410 IO.enumCase(Value, "c++11", FormatStyle::LS_Cpp11); in enumeration()
411 IO.enumCase(Value, "C++11", FormatStyle::LS_Cpp11); // Legacy alias in enumeration()
413 IO.enumCase(Value, "c++14", FormatStyle::LS_Cpp14); in enumeration()
414 IO.enumCase(Value, "c++17", FormatStyle::LS_Cpp17); in enumeration()
415 IO.enumCase(Value, "c++20", FormatStyle::LS_Cpp20); in enumeration()
417 IO.enumCase(Value, "Latest", FormatStyle::LS_Latest); in enumeration()
418 IO.enumCase(Value, "Cpp11", FormatStyle::LS_Latest); // Legacy alias in enumeration()
419 IO.enumCase(Value, "Auto", FormatStyle::LS_Auto); in enumeration()
425 static void enumeration(IO &IO, in enumeration()
427 IO.enumCase(Value, "Signature", FormatStyle::LBI_Signature); in enumeration()
428 IO.enumCase(Value, "OuterScope", FormatStyle::LBI_OuterScope); in enumeration()
433 static void enumeration(IO &IO, FormatStyle::LineEndingStyle &Value) { in enumeration()
434 IO.enumCase(Value, "LF", FormatStyle::LE_LF); in enumeration()
435 IO.enumCase(Value, "CRLF", FormatStyle::LE_CRLF); in enumeration()
436 IO.enumCase(Value, "DeriveLF", FormatStyle::LE_DeriveLF); in enumeration()
437 IO.enumCase(Value, "DeriveCRLF", FormatStyle::LE_DeriveCRLF); in enumeration()
443 static void enumeration(IO &IO, in enumeration()
445 IO.enumCase(Value, "None", FormatStyle::NI_None); in enumeration()
446 IO.enumCase(Value, "Inner", FormatStyle::NI_Inner); in enumeration()
447 IO.enumCase(Value, "All", FormatStyle::NI_All); in enumeration()
452 static void enumeration(IO &IO, FormatStyle::OperandAlignmentStyle &Value) { in enumeration()
453 IO.enumCase(Value, "DontAlign", FormatStyle::OAS_DontAlign); in enumeration()
454 IO.enumCase(Value, "Align", FormatStyle::OAS_Align); in enumeration()
455 IO.enumCase(Value, "AlignAfterOperator", in enumeration()
459 IO.enumCase(Value, "true", FormatStyle::OAS_Align); in enumeration()
460 IO.enumCase(Value, "false", FormatStyle::OAS_DontAlign); in enumeration()
467 enumeration(IO &IO, FormatStyle::PackConstructorInitializersStyle &Value) { in enumeration()
468 IO.enumCase(Value, "Never", FormatStyle::PCIS_Never); in enumeration()
469 IO.enumCase(Value, "BinPack", FormatStyle::PCIS_BinPack); in enumeration()
470 IO.enumCase(Value, "CurrentLine", FormatStyle::PCIS_CurrentLine); in enumeration()
471 IO.enumCase(Value, "NextLine", FormatStyle::PCIS_NextLine); in enumeration()
472 IO.enumCase(Value, "NextLineOnly", FormatStyle::PCIS_NextLineOnly); in enumeration()
477 static void enumeration(IO &IO, FormatStyle::PointerAlignmentStyle &Value) { in enumeration()
478 IO.enumCase(Value, "Middle", FormatStyle::PAS_Middle); in enumeration()
479 IO.enumCase(Value, "Left", FormatStyle::PAS_Left); in enumeration()
480 IO.enumCase(Value, "Right", FormatStyle::PAS_Right); in enumeration()
483 IO.enumCase(Value, "true", FormatStyle::PAS_Left); in enumeration()
484 IO.enumCase(Value, "false", FormatStyle::PAS_Right); in enumeration()
490 static void enumeration(IO &IO, FormatStyle::PPDirectiveIndentStyle &Value) { in enumeration()
491 IO.enumCase(Value, "None", FormatStyle::PPDIS_None); in enumeration()
492 IO.enumCase(Value, "AfterHash", FormatStyle::PPDIS_AfterHash); in enumeration()
493 IO.enumCase(Value, "BeforeHash", FormatStyle::PPDIS_BeforeHash); in enumeration()
499 static void enumeration(IO &IO, FormatStyle::QualifierAlignmentStyle &Value) { in enumeration()
500 IO.enumCase(Value, "Leave", FormatStyle::QAS_Leave); in enumeration()
501 IO.enumCase(Value, "Left", FormatStyle::QAS_Left); in enumeration()
502 IO.enumCase(Value, "Right", FormatStyle::QAS_Right); in enumeration()
503 IO.enumCase(Value, "Custom", FormatStyle::QAS_Custom); in enumeration()
508 static void mapping(IO &IO, FormatStyle::RawStringFormat &Format) { in mapping()
509 IO.mapOptional("Language", Format.Language); in mapping()
510 IO.mapOptional("Delimiters", Format.Delimiters); in mapping()
511 IO.mapOptional("EnclosingFunctions", Format.EnclosingFunctions); in mapping()
512 IO.mapOptional("CanonicalDelimiter", Format.CanonicalDelimiter); in mapping()
513 IO.mapOptional("BasedOnStyle", Format.BasedOnStyle); in mapping()
519 static void enumeration(IO &IO, FormatStyle::ReferenceAlignmentStyle &Value) { in enumeration()
520 IO.enumCase(Value, "Pointer", FormatStyle::RAS_Pointer); in enumeration()
521 IO.enumCase(Value, "Middle", FormatStyle::RAS_Middle); in enumeration()
522 IO.enumCase(Value, "Left", FormatStyle::RAS_Left); in enumeration()
523 IO.enumCase(Value, "Right", FormatStyle::RAS_Right); in enumeration()
529 static void enumeration(IO &IO, FormatStyle::RemoveParenthesesStyle &Value) { in enumeration()
530 IO.enumCase(Value, "Leave", FormatStyle::RPS_Leave); in enumeration()
531 IO.enumCase(Value, "MultipleParentheses", in enumeration()
533 IO.enumCase(Value, "ReturnStatement", FormatStyle::RPS_ReturnStatement); in enumeration()
539 static void enumeration(IO &IO, in enumeration()
541 IO.enumCase(Value, "OwnLine", FormatStyle::RCPS_OwnLine); in enumeration()
542 IO.enumCase(Value, "WithPreceding", FormatStyle::RCPS_WithPreceding); in enumeration()
543 IO.enumCase(Value, "WithFollowing", FormatStyle::RCPS_WithFollowing); in enumeration()
544 IO.enumCase(Value, "SingleLine", FormatStyle::RCPS_SingleLine); in enumeration()
551 enumeration(IO &IO, FormatStyle::RequiresExpressionIndentationKind &Value) { in enumeration()
552 IO.enumCase(Value, "Keyword", FormatStyle::REI_Keyword); in enumeration()
553 IO.enumCase(Value, "OuterScope", FormatStyle::REI_OuterScope); in enumeration()
559 static void enumeration(IO &IO, FormatStyle::ReturnTypeBreakingStyle &Value) { in enumeration()
560 IO.enumCase(Value, "None", FormatStyle::RTBS_None); in enumeration()
561 IO.enumCase(Value, "All", FormatStyle::RTBS_All); in enumeration()
562 IO.enumCase(Value, "TopLevel", FormatStyle::RTBS_TopLevel); in enumeration()
563 IO.enumCase(Value, "TopLevelDefinitions", in enumeration()
565 IO.enumCase(Value, "AllDefinitions", FormatStyle::RTBS_AllDefinitions); in enumeration()
571 static void enumeration(IO &IO, FormatStyle::SeparateDefinitionStyle &Value) { in enumeration()
572 IO.enumCase(Value, "Leave", FormatStyle::SDS_Leave); in enumeration()
573 IO.enumCase(Value, "Always", FormatStyle::SDS_Always); in enumeration()
574 IO.enumCase(Value, "Never", FormatStyle::SDS_Never); in enumeration()
579 static void enumeration(IO &IO, FormatStyle::ShortBlockStyle &Value) { in enumeration()
580 IO.enumCase(Value, "Never", FormatStyle::SBS_Never); in enumeration()
581 IO.enumCase(Value, "false", FormatStyle::SBS_Never); in enumeration()
582 IO.enumCase(Value, "Always", FormatStyle::SBS_Always); in enumeration()
583 IO.enumCase(Value, "true", FormatStyle::SBS_Always); in enumeration()
584 IO.enumCase(Value, "Empty", FormatStyle::SBS_Empty); in enumeration()
589 static void enumeration(IO &IO, FormatStyle::ShortFunctionStyle &Value) { in enumeration()
590 IO.enumCase(Value, "None", FormatStyle::SFS_None); in enumeration()
591 IO.enumCase(Value, "false", FormatStyle::SFS_None); in enumeration()
592 IO.enumCase(Value, "All", FormatStyle::SFS_All); in enumeration()
593 IO.enumCase(Value, "true", FormatStyle::SFS_All); in enumeration()
594 IO.enumCase(Value, "Inline", FormatStyle::SFS_Inline); in enumeration()
595 IO.enumCase(Value, "InlineOnly", FormatStyle::SFS_InlineOnly); in enumeration()
596 IO.enumCase(Value, "Empty", FormatStyle::SFS_Empty); in enumeration()
601 static void enumeration(IO &IO, FormatStyle::ShortIfStyle &Value) { in enumeration()
602 IO.enumCase(Value, "Never", FormatStyle::SIS_Never); in enumeration()
603 IO.enumCase(Value, "WithoutElse", FormatStyle::SIS_WithoutElse); in enumeration()
604 IO.enumCase(Value, "OnlyFirstIf", FormatStyle::SIS_OnlyFirstIf); in enumeration()
605 IO.enumCase(Value, "AllIfsAndElse", FormatStyle::SIS_AllIfsAndElse); in enumeration()
608 IO.enumCase(Value, "Always", FormatStyle::SIS_OnlyFirstIf); in enumeration()
609 IO.enumCase(Value, "false", FormatStyle::SIS_Never); in enumeration()
610 IO.enumCase(Value, "true", FormatStyle::SIS_WithoutElse); in enumeration()
615 static void enumeration(IO &IO, FormatStyle::ShortLambdaStyle &Value) { in enumeration()
616 IO.enumCase(Value, "None", FormatStyle::SLS_None); in enumeration()
617 IO.enumCase(Value, "false", FormatStyle::SLS_None); in enumeration()
618 IO.enumCase(Value, "Empty", FormatStyle::SLS_Empty); in enumeration()
619 IO.enumCase(Value, "Inline", FormatStyle::SLS_Inline); in enumeration()
620 IO.enumCase(Value, "All", FormatStyle::SLS_All); in enumeration()
621 IO.enumCase(Value, "true", FormatStyle::SLS_All); in enumeration()
626 static void enumeration(IO &IO, FormatStyle::SortIncludesOptions &Value) { in enumeration()
627 IO.enumCase(Value, "Never", FormatStyle::SI_Never); in enumeration()
628 IO.enumCase(Value, "CaseInsensitive", FormatStyle::SI_CaseInsensitive); in enumeration()
629 IO.enumCase(Value, "CaseSensitive", FormatStyle::SI_CaseSensitive); in enumeration()
632 IO.enumCase(Value, "false", FormatStyle::SI_Never); in enumeration()
633 IO.enumCase(Value, "true", FormatStyle::SI_CaseSensitive); in enumeration()
639 static void enumeration(IO &IO, in enumeration()
641 IO.enumCase(Value, "Before", FormatStyle::SJSIO_Before); in enumeration()
642 IO.enumCase(Value, "After", FormatStyle::SJSIO_After); in enumeration()
648 static void enumeration(IO &IO, in enumeration()
650 IO.enumCase(Value, "Never", FormatStyle::SUD_Never); in enumeration()
651 IO.enumCase(Value, "Lexicographic", FormatStyle::SUD_Lexicographic); in enumeration()
652 IO.enumCase(Value, "LexicographicNumeric", in enumeration()
656 IO.enumCase(Value, "false", FormatStyle::SUD_Never); in enumeration()
657 IO.enumCase(Value, "true", FormatStyle::SUD_LexicographicNumeric); in enumeration()
664 enumeration(IO &IO, FormatStyle::SpaceAroundPointerQualifiersStyle &Value) { in enumeration()
665 IO.enumCase(Value, "Default", FormatStyle::SAPQ_Default); in enumeration()
666 IO.enumCase(Value, "Before", FormatStyle::SAPQ_Before); in enumeration()
667 IO.enumCase(Value, "After", FormatStyle::SAPQ_After); in enumeration()
668 IO.enumCase(Value, "Both", FormatStyle::SAPQ_Both); in enumeration()
673 static void mapping(IO &IO, FormatStyle::SpaceBeforeParensCustom &Spacing) { in mapping()
674 IO.mapOptional("AfterControlStatements", Spacing.AfterControlStatements); in mapping()
675 IO.mapOptional("AfterForeachMacros", Spacing.AfterForeachMacros); in mapping()
676 IO.mapOptional("AfterFunctionDefinitionName", in mapping()
678 IO.mapOptional("AfterFunctionDeclarationName", in mapping()
680 IO.mapOptional("AfterIfMacros", Spacing.AfterIfMacros); in mapping()
681 IO.mapOptional("AfterOverloadedOperator", Spacing.AfterOverloadedOperator); in mapping()
682 IO.mapOptional("AfterPlacementOperator", Spacing.AfterPlacementOperator); in mapping()
683 IO.mapOptional("AfterRequiresInClause", Spacing.AfterRequiresInClause); in mapping()
684 IO.mapOptional("AfterRequiresInExpression", in mapping()
686 IO.mapOptional("BeforeNonEmptyParentheses", in mapping()
693 static void enumeration(IO &IO, FormatStyle::SpaceBeforeParensStyle &Value) { in enumeration()
694 IO.enumCase(Value, "Never", FormatStyle::SBPO_Never); in enumeration()
695 IO.enumCase(Value, "ControlStatements", in enumeration()
697 IO.enumCase(Value, "ControlStatementsExceptControlMacros", in enumeration()
699 IO.enumCase(Value, "NonEmptyParentheses", in enumeration()
701 IO.enumCase(Value, "Always", FormatStyle::SBPO_Always); in enumeration()
702 IO.enumCase(Value, "Custom", FormatStyle::SBPO_Custom); in enumeration()
705 IO.enumCase(Value, "false", FormatStyle::SBPO_Never); in enumeration()
706 IO.enumCase(Value, "true", FormatStyle::SBPO_ControlStatements); in enumeration()
707 IO.enumCase(Value, "ControlStatementsExceptForEachMacros", in enumeration()
713 static void enumeration(IO &IO, FormatStyle::SpacesInAnglesStyle &Value) { in enumeration()
714 IO.enumCase(Value, "Never", FormatStyle::SIAS_Never); in enumeration()
715 IO.enumCase(Value, "Always", FormatStyle::SIAS_Always); in enumeration()
716 IO.enumCase(Value, "Leave", FormatStyle::SIAS_Leave); in enumeration()
719 IO.enumCase(Value, "false", FormatStyle::SIAS_Never); in enumeration()
720 IO.enumCase(Value, "true", FormatStyle::SIAS_Always); in enumeration()
725 static void mapping(IO &IO, FormatStyle::SpacesInLineComment &Space) { in mapping()
728 IO.mapOptional("Minimum", Space.Minimum); in mapping()
729 IO.mapOptional("Maximum", signedMaximum); in mapping()
738 static void mapping(IO &IO, FormatStyle::SpacesInParensCustom &Spaces) { in mapping()
739 IO.mapOptional("InCStyleCasts", Spaces.InCStyleCasts); in mapping()
740 IO.mapOptional("InConditionalStatements", Spaces.InConditionalStatements); in mapping()
741 IO.mapOptional("InEmptyParentheses", Spaces.InEmptyParentheses); in mapping()
742 IO.mapOptional("Other", Spaces.Other); in mapping()
747 static void enumeration(IO &IO, FormatStyle::SpacesInParensStyle &Value) { in enumeration()
748 IO.enumCase(Value, "Never", FormatStyle::SIPO_Never); in enumeration()
749 IO.enumCase(Value, "Custom", FormatStyle::SIPO_Custom); in enumeration()
754 static void enumeration(IO &IO, FormatStyle::TrailingCommaStyle &Value) { in enumeration()
755 IO.enumCase(Value, "None", FormatStyle::TCS_None); in enumeration()
756 IO.enumCase(Value, "Wrapped", FormatStyle::TCS_Wrapped); in enumeration()
762 static void enumeration(IO &IO, in enumeration()
764 IO.enumCase(Value, "Leave", FormatStyle::TCAS_Leave); in enumeration()
765 IO.enumCase(Value, "Always", FormatStyle::TCAS_Always); in enumeration()
766 IO.enumCase(Value, "Never", FormatStyle::TCAS_Never); in enumeration()
771 static void enumInput(IO &IO, in enumInput()
773 IO.enumCase(Value, "Leave", in enumInput()
777 IO.enumCase(Value, "Always", in enumInput()
781 IO.enumCase(Value, "Never", in enumInput()
786 IO.enumCase(Value, "true", in enumInput()
789 IO.enumCase(Value, "false", in enumInput()
794 static void mapping(IO &IO, in mapping()
796 IO.mapOptional("Kind", Value.Kind); in mapping()
797 IO.mapOptional("OverEmptyLines", Value.OverEmptyLines); in mapping()
802 static void enumeration(IO &IO, FormatStyle::UseTabStyle &Value) { in enumeration()
803 IO.enumCase(Value, "Never", FormatStyle::UT_Never); in enumeration()
804 IO.enumCase(Value, "false", FormatStyle::UT_Never); in enumeration()
805 IO.enumCase(Value, "Always", FormatStyle::UT_Always); in enumeration()
806 IO.enumCase(Value, "true", FormatStyle::UT_Always); in enumeration()
807 IO.enumCase(Value, "ForIndentation", FormatStyle::UT_ForIndentation); in enumeration()
808 IO.enumCase(Value, "ForContinuationAndIndentation", in enumeration()
810 IO.enumCase(Value, "AlignWithSpaces", FormatStyle::UT_AlignWithSpaces); in enumeration()
815 static void mapping(IO &IO, FormatStyle &Style) { in mapping()
817 IO.mapOptional("Language", Style.Language); in mapping()
820 if (IO.outputting()) { in mapping()
827 IO.mapOptional("# BasedOnStyle", StyleName); in mapping()
833 IO.mapOptional("BasedOnStyle", BasedOnStyle); in mapping()
837 ((FormatStyle *)IO.getContext())->Language; in mapping()
839 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle)); in mapping()
874 if (!IO.outputting()) { in mapping()
875 IO.mapOptional("AlignEscapedNewlinesLeft", Style.AlignEscapedNewlines); in mapping()
876 IO.mapOptional("AllowAllConstructorInitializersOnNextLine", OnNextLine); in mapping()
877 IO.mapOptional("BreakBeforeInheritanceComma", in mapping()
879 IO.mapOptional("BreakConstructorInitializersBeforeComma", in mapping()
881 IO.mapOptional("ConstructorInitializerAllOnOneLineOrOnePerLine", in mapping()
883 IO.mapOptional("DeriveLineEnding", DeriveLineEnding); in mapping()
884 IO.mapOptional("DerivePointerBinding", Style.DerivePointerAlignment); in mapping()
885 IO.mapOptional("IndentFunctionDeclarationAfterType", in mapping()
887 IO.mapOptional("IndentRequires", Style.IndentRequiresClause); in mapping()
888 IO.mapOptional("PointerBindsToType", Style.PointerAlignment); in mapping()
889 IO.mapOptional("SpaceAfterControlStatementKeyword", in mapping()
891 IO.mapOptional("SpaceInEmptyParentheses", SpaceInEmptyParentheses); in mapping()
892 IO.mapOptional("SpacesInConditionalStatement", in mapping()
894 IO.mapOptional("SpacesInCStyleCastParentheses", in mapping()
896 IO.mapOptional("SpacesInParentheses", SpacesInParentheses); in mapping()
897 IO.mapOptional("UseCRLF", UseCRLF); in mapping()
900 IO.mapOptional("AccessModifierOffset", Style.AccessModifierOffset); in mapping()
901 IO.mapOptional("AlignAfterOpenBracket", Style.AlignAfterOpenBracket); in mapping()
902 IO.mapOptional("AlignArrayOfStructures", Style.AlignArrayOfStructures); in mapping()
903 IO.mapOptional("AlignConsecutiveAssignments", in mapping()
905 IO.mapOptional("AlignConsecutiveBitFields", in mapping()
907 IO.mapOptional("AlignConsecutiveDeclarations", in mapping()
909 IO.mapOptional("AlignConsecutiveMacros", Style.AlignConsecutiveMacros); in mapping()
910 IO.mapOptional("AlignConsecutiveShortCaseStatements", in mapping()
912 IO.mapOptional("AlignEscapedNewlines", Style.AlignEscapedNewlines); in mapping()
913 IO.mapOptional("AlignOperands", Style.AlignOperands); in mapping()
914 IO.mapOptional("AlignTrailingComments", Style.AlignTrailingComments); in mapping()
915 IO.mapOptional("AllowAllArgumentsOnNextLine", in mapping()
917 IO.mapOptional("AllowAllParametersOfDeclarationOnNextLine", in mapping()
919 IO.mapOptional("AllowBreakBeforeNoexceptSpecifier", in mapping()
921 IO.mapOptional("AllowShortBlocksOnASingleLine", in mapping()
923 IO.mapOptional("AllowShortCaseLabelsOnASingleLine", in mapping()
925 IO.mapOptional("AllowShortCompoundRequirementOnASingleLine", in mapping()
927 IO.mapOptional("AllowShortEnumsOnASingleLine", in mapping()
929 IO.mapOptional("AllowShortFunctionsOnASingleLine", in mapping()
931 IO.mapOptional("AllowShortIfStatementsOnASingleLine", in mapping()
933 IO.mapOptional("AllowShortLambdasOnASingleLine", in mapping()
935 IO.mapOptional("AllowShortLoopsOnASingleLine", in mapping()
937 IO.mapOptional("AlwaysBreakAfterDefinitionReturnType", in mapping()
939 IO.mapOptional("AlwaysBreakAfterReturnType", in mapping()
941 IO.mapOptional("AlwaysBreakBeforeMultilineStrings", in mapping()
943 IO.mapOptional("AlwaysBreakTemplateDeclarations", in mapping()
945 IO.mapOptional("AttributeMacros", Style.AttributeMacros); in mapping()
946 IO.mapOptional("BinPackArguments", Style.BinPackArguments); in mapping()
947 IO.mapOptional("BinPackParameters", Style.BinPackParameters); in mapping()
948 IO.mapOptional("BitFieldColonSpacing", Style.BitFieldColonSpacing); in mapping()
949 IO.mapOptional("BracedInitializerIndentWidth", in mapping()
951 IO.mapOptional("BraceWrapping", Style.BraceWrapping); in mapping()
952 IO.mapOptional("BreakAdjacentStringLiterals", in mapping()
954 IO.mapOptional("BreakAfterAttributes", Style.BreakAfterAttributes); in mapping()
955 IO.mapOptional("BreakAfterJavaFieldAnnotations", in mapping()
957 IO.mapOptional("BreakArrays", Style.BreakArrays); in mapping()
958 IO.mapOptional("BreakBeforeBinaryOperators", in mapping()
960 IO.mapOptional("BreakBeforeConceptDeclarations", in mapping()
962 IO.mapOptional("BreakBeforeBraces", Style.BreakBeforeBraces); in mapping()
963 IO.mapOptional("BreakBeforeInlineASMColon", in mapping()
965 IO.mapOptional("BreakBeforeTernaryOperators", in mapping()
967 IO.mapOptional("BreakConstructorInitializers", in mapping()
969 IO.mapOptional("BreakInheritanceList", Style.BreakInheritanceList); in mapping()
970 IO.mapOptional("BreakStringLiterals", Style.BreakStringLiterals); in mapping()
971 IO.mapOptional("ColumnLimit", Style.ColumnLimit); in mapping()
972 IO.mapOptional("CommentPragmas", Style.CommentPragmas); in mapping()
973 IO.mapOptional("CompactNamespaces", Style.CompactNamespaces); in mapping()
974 IO.mapOptional("ConstructorInitializerIndentWidth", in mapping()
976 IO.mapOptional("ContinuationIndentWidth", Style.ContinuationIndentWidth); in mapping()
977 IO.mapOptional("Cpp11BracedListStyle", Style.Cpp11BracedListStyle); in mapping()
978 IO.mapOptional("DerivePointerAlignment", Style.DerivePointerAlignment); in mapping()
979 IO.mapOptional("DisableFormat", Style.DisableFormat); in mapping()
980 IO.mapOptional("EmptyLineAfterAccessModifier", in mapping()
982 IO.mapOptional("EmptyLineBeforeAccessModifier", in mapping()
984 IO.mapOptional("ExperimentalAutoDetectBinPacking", in mapping()
986 IO.mapOptional("FixNamespaceComments", Style.FixNamespaceComments); in mapping()
987 IO.mapOptional("ForEachMacros", Style.ForEachMacros); in mapping()
988 IO.mapOptional("IfMacros", Style.IfMacros); in mapping()
989 IO.mapOptional("IncludeBlocks", Style.IncludeStyle.IncludeBlocks); in mapping()
990 IO.mapOptional("IncludeCategories", Style.IncludeStyle.IncludeCategories); in mapping()
991 IO.mapOptional("IncludeIsMainRegex", Style.IncludeStyle.IncludeIsMainRegex); in mapping()
992 IO.mapOptional("IncludeIsMainSourceRegex", in mapping()
994 IO.mapOptional("IndentAccessModifiers", Style.IndentAccessModifiers); in mapping()
995 IO.mapOptional("IndentCaseBlocks", Style.IndentCaseBlocks); in mapping()
996 IO.mapOptional("IndentCaseLabels", Style.IndentCaseLabels); in mapping()
997 IO.mapOptional("IndentExternBlock", Style.IndentExternBlock); in mapping()
998 IO.mapOptional("IndentGotoLabels", Style.IndentGotoLabels); in mapping()
999 IO.mapOptional("IndentPPDirectives", Style.IndentPPDirectives); in mapping()
1000 IO.mapOptional("IndentRequiresClause", Style.IndentRequiresClause); in mapping()
1001 IO.mapOptional("IndentWidth", Style.IndentWidth); in mapping()
1002 IO.mapOptional("IndentWrappedFunctionNames", in mapping()
1004 IO.mapOptional("InsertBraces", Style.InsertBraces); in mapping()
1005 IO.mapOptional("InsertNewlineAtEOF", Style.InsertNewlineAtEOF); in mapping()
1006 IO.mapOptional("InsertTrailingCommas", Style.InsertTrailingCommas); in mapping()
1007 IO.mapOptional("IntegerLiteralSeparator", Style.IntegerLiteralSeparator); in mapping()
1008 IO.mapOptional("JavaImportGroups", Style.JavaImportGroups); in mapping()
1009 IO.mapOptional("JavaScriptQuotes", Style.JavaScriptQuotes); in mapping()
1010 IO.mapOptional("JavaScriptWrapImports", Style.JavaScriptWrapImports); in mapping()
1011 IO.mapOptional("KeepEmptyLinesAtTheStartOfBlocks", in mapping()
1013 IO.mapOptional("KeepEmptyLinesAtEOF", Style.KeepEmptyLinesAtEOF); in mapping()
1014 IO.mapOptional("LambdaBodyIndentation", Style.LambdaBodyIndentation); in mapping()
1015 IO.mapOptional("LineEnding", Style.LineEnding); in mapping()
1016 IO.mapOptional("MacroBlockBegin", Style.MacroBlockBegin); in mapping()
1017 IO.mapOptional("MacroBlockEnd", Style.MacroBlockEnd); in mapping()
1018 IO.mapOptional("Macros", Style.Macros); in mapping()
1019 IO.mapOptional("MaxEmptyLinesToKeep", Style.MaxEmptyLinesToKeep); in mapping()
1020 IO.mapOptional("NamespaceIndentation", Style.NamespaceIndentation); in mapping()
1021 IO.mapOptional("NamespaceMacros", Style.NamespaceMacros); in mapping()
1022 IO.mapOptional("ObjCBinPackProtocolList", Style.ObjCBinPackProtocolList); in mapping()
1023 IO.mapOptional("ObjCBlockIndentWidth", Style.ObjCBlockIndentWidth); in mapping()
1024 IO.mapOptional("ObjCBreakBeforeNestedBlockParam", in mapping()
1026 IO.mapOptional("ObjCPropertyAttributeOrder", in mapping()
1028 IO.mapOptional("ObjCSpaceAfterProperty", Style.ObjCSpaceAfterProperty); in mapping()
1029 IO.mapOptional("ObjCSpaceBeforeProtocolList", in mapping()
1031 IO.mapOptional("PackConstructorInitializers", in mapping()
1033 IO.mapOptional("PenaltyBreakAssignment", Style.PenaltyBreakAssignment); in mapping()
1034 IO.mapOptional("PenaltyBreakBeforeFirstCallParameter", in mapping()
1036 IO.mapOptional("PenaltyBreakComment", Style.PenaltyBreakComment); in mapping()
1037 IO.mapOptional("PenaltyBreakFirstLessLess", in mapping()
1039 IO.mapOptional("PenaltyBreakOpenParenthesis", in mapping()
1041 IO.mapOptional("PenaltyBreakScopeResolution", in mapping()
1043 IO.mapOptional("PenaltyBreakString", Style.PenaltyBreakString); in mapping()
1044 IO.mapOptional("PenaltyBreakTemplateDeclaration", in mapping()
1046 IO.mapOptional("PenaltyExcessCharacter", Style.PenaltyExcessCharacter); in mapping()
1047 IO.mapOptional("PenaltyIndentedWhitespace", in mapping()
1049 IO.mapOptional("PenaltyReturnTypeOnItsOwnLine", in mapping()
1051 IO.mapOptional("PointerAlignment", Style.PointerAlignment); in mapping()
1052 IO.mapOptional("PPIndentWidth", Style.PPIndentWidth); in mapping()
1053 IO.mapOptional("QualifierAlignment", Style.QualifierAlignment); in mapping()
1060 IO.mapOptional("QualifierOrder", Style.QualifierOrder); in mapping()
1061 IO.mapOptional("RawStringFormats", Style.RawStringFormats); in mapping()
1062 IO.mapOptional("ReferenceAlignment", Style.ReferenceAlignment); in mapping()
1063 IO.mapOptional("ReflowComments", Style.ReflowComments); in mapping()
1064 IO.mapOptional("RemoveBracesLLVM", Style.RemoveBracesLLVM); in mapping()
1065 IO.mapOptional("RemoveParentheses", Style.RemoveParentheses); in mapping()
1066 IO.mapOptional("RemoveSemicolon", Style.RemoveSemicolon); in mapping()
1067 IO.mapOptional("RequiresClausePosition", Style.RequiresClausePosition); in mapping()
1068 IO.mapOptional("RequiresExpressionIndentation", in mapping()
1070 IO.mapOptional("SeparateDefinitionBlocks", Style.SeparateDefinitionBlocks); in mapping()
1071 IO.mapOptional("ShortNamespaceLines", Style.ShortNamespaceLines); in mapping()
1072 IO.mapOptional("SkipMacroDefinitionBody", Style.SkipMacroDefinitionBody); in mapping()
1073 IO.mapOptional("SortIncludes", Style.SortIncludes); in mapping()
1074 IO.mapOptional("SortJavaStaticImport", Style.SortJavaStaticImport); in mapping()
1075 IO.mapOptional("SortUsingDeclarations", Style.SortUsingDeclarations); in mapping()
1076 IO.mapOptional("SpaceAfterCStyleCast", Style.SpaceAfterCStyleCast); in mapping()
1077 IO.mapOptional("SpaceAfterLogicalNot", Style.SpaceAfterLogicalNot); in mapping()
1078 IO.mapOptional("SpaceAfterTemplateKeyword", in mapping()
1080 IO.mapOptional("SpaceAroundPointerQualifiers", in mapping()
1082 IO.mapOptional("SpaceBeforeAssignmentOperators", in mapping()
1084 IO.mapOptional("SpaceBeforeCaseColon", Style.SpaceBeforeCaseColon); in mapping()
1085 IO.mapOptional("SpaceBeforeCpp11BracedList", in mapping()
1087 IO.mapOptional("SpaceBeforeCtorInitializerColon", in mapping()
1089 IO.mapOptional("SpaceBeforeInheritanceColon", in mapping()
1091 IO.mapOptional("SpaceBeforeJsonColon", Style.SpaceBeforeJsonColon); in mapping()
1092 IO.mapOptional("SpaceBeforeParens", Style.SpaceBeforeParens); in mapping()
1093 IO.mapOptional("SpaceBeforeParensOptions", Style.SpaceBeforeParensOptions); in mapping()
1094 IO.mapOptional("SpaceBeforeRangeBasedForLoopColon", in mapping()
1096 IO.mapOptional("SpaceBeforeSquareBrackets", in mapping()
1098 IO.mapOptional("SpaceInEmptyBlock", Style.SpaceInEmptyBlock); in mapping()
1099 IO.mapOptional("SpacesBeforeTrailingComments", in mapping()
1101 IO.mapOptional("SpacesInAngles", Style.SpacesInAngles); in mapping()
1102 IO.mapOptional("SpacesInContainerLiterals", in mapping()
1104 IO.mapOptional("SpacesInLineCommentPrefix", in mapping()
1106 IO.mapOptional("SpacesInParens", Style.SpacesInParens); in mapping()
1107 IO.mapOptional("SpacesInParensOptions", Style.SpacesInParensOptions); in mapping()
1108 IO.mapOptional("SpacesInSquareBrackets", Style.SpacesInSquareBrackets); in mapping()
1109 IO.mapOptional("Standard", Style.Standard); in mapping()
1110 IO.mapOptional("StatementAttributeLikeMacros", in mapping()
1112 IO.mapOptional("StatementMacros", Style.StatementMacros); in mapping()
1113 IO.mapOptional("TabWidth", Style.TabWidth); in mapping()
1114 IO.mapOptional("TypeNames", Style.TypeNames); in mapping()
1115 IO.mapOptional("TypenameMacros", Style.TypenameMacros); in mapping()
1116 IO.mapOptional("UseTab", Style.UseTab); in mapping()
1117 IO.mapOptional("VerilogBreakBetweenInstancePorts", in mapping()
1119 IO.mapOptional("WhitespaceSensitiveMacros", in mapping()
1206 static size_t size(IO &IO, std::vector<FormatStyle> &Seq) { in size()
1209 static FormatStyle &element(IO &IO, std::vector<FormatStyle> &Seq, in element()
1217 Template = *((const FormatStyle *)IO.getContext()); in element()