Lines Matching refs:Expanded

572   FormatStyle Expanded = Style;  in expandPresets()  local
573 Expanded.BraceWrapping = {false, false, false, false, false, in expandPresets()
578 Expanded.BraceWrapping.AfterClass = true; in expandPresets()
579 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
580 Expanded.BraceWrapping.AfterNamespace = true; in expandPresets()
583 Expanded.BraceWrapping.AfterClass = true; in expandPresets()
584 Expanded.BraceWrapping.AfterEnum = true; in expandPresets()
585 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
586 Expanded.BraceWrapping.AfterStruct = true; in expandPresets()
587 Expanded.BraceWrapping.AfterUnion = true; in expandPresets()
588 Expanded.BraceWrapping.AfterExternBlock = true; in expandPresets()
589 Expanded.BraceWrapping.SplitEmptyFunction = true; in expandPresets()
590 Expanded.BraceWrapping.SplitEmptyRecord = false; in expandPresets()
593 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
594 Expanded.BraceWrapping.BeforeCatch = true; in expandPresets()
595 Expanded.BraceWrapping.BeforeElse = true; in expandPresets()
598 Expanded.BraceWrapping.AfterClass = true; in expandPresets()
599 Expanded.BraceWrapping.AfterControlStatement = true; in expandPresets()
600 Expanded.BraceWrapping.AfterEnum = true; in expandPresets()
601 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
602 Expanded.BraceWrapping.AfterNamespace = true; in expandPresets()
603 Expanded.BraceWrapping.AfterObjCDeclaration = true; in expandPresets()
604 Expanded.BraceWrapping.AfterStruct = true; in expandPresets()
605 Expanded.BraceWrapping.AfterExternBlock = true; in expandPresets()
606 Expanded.BraceWrapping.BeforeCatch = true; in expandPresets()
607 Expanded.BraceWrapping.BeforeElse = true; in expandPresets()
610 Expanded.BraceWrapping = {true, true, true, true, true, true, true, true, in expandPresets()
614 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
619 return Expanded; in expandPresets()
2155 FormatStyle Expanded = expandPresets(Style); in reformat() local
2156 if (Expanded.DisableFormat) in reformat()
2160 if (Expanded.Language == FormatStyle::LK_JavaScript && isMpegTS(Code)) in reformat()
2171 return NamespaceEndCommentsFixer(Env, Expanded).process(); in reformat()
2176 return UsingDeclarationsSorter(Env, Expanded).process(); in reformat()
2183 return JavaScriptRequoter(Env, Expanded).process(); in reformat()
2187 return Formatter(Env, Expanded, Status).process(); in reformat()