Lines Matching refs:Expanded

873   FormatStyle Expanded = Style;  in expandPresets()  local
874 Expanded.BraceWrapping = {/*AfterCaseLabel=*/false, in expandPresets()
894 Expanded.BraceWrapping.AfterClass = true; in expandPresets()
895 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
896 Expanded.BraceWrapping.AfterNamespace = true; in expandPresets()
899 Expanded.BraceWrapping.AfterClass = true; in expandPresets()
900 Expanded.BraceWrapping.AfterEnum = true; in expandPresets()
901 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
902 Expanded.BraceWrapping.AfterStruct = true; in expandPresets()
903 Expanded.BraceWrapping.AfterUnion = true; in expandPresets()
904 Expanded.BraceWrapping.AfterExternBlock = true; in expandPresets()
905 Expanded.IndentExternBlock = FormatStyle::IEBS_AfterExternBlock; in expandPresets()
906 Expanded.BraceWrapping.SplitEmptyFunction = true; in expandPresets()
907 Expanded.BraceWrapping.SplitEmptyRecord = false; in expandPresets()
910 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
911 Expanded.BraceWrapping.BeforeCatch = true; in expandPresets()
912 Expanded.BraceWrapping.BeforeElse = true; in expandPresets()
915 Expanded.BraceWrapping.AfterCaseLabel = true; in expandPresets()
916 Expanded.BraceWrapping.AfterClass = true; in expandPresets()
917 Expanded.BraceWrapping.AfterControlStatement = FormatStyle::BWACS_Always; in expandPresets()
918 Expanded.BraceWrapping.AfterEnum = true; in expandPresets()
919 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
920 Expanded.BraceWrapping.AfterNamespace = true; in expandPresets()
921 Expanded.BraceWrapping.AfterObjCDeclaration = true; in expandPresets()
922 Expanded.BraceWrapping.AfterStruct = true; in expandPresets()
923 Expanded.BraceWrapping.AfterUnion = true; in expandPresets()
924 Expanded.BraceWrapping.AfterExternBlock = true; in expandPresets()
925 Expanded.IndentExternBlock = FormatStyle::IEBS_AfterExternBlock; in expandPresets()
926 Expanded.BraceWrapping.BeforeCatch = true; in expandPresets()
927 Expanded.BraceWrapping.BeforeElse = true; in expandPresets()
928 Expanded.BraceWrapping.BeforeLambdaBody = true; in expandPresets()
931 Expanded.BraceWrapping.AfterCaseLabel = true; in expandPresets()
932 Expanded.BraceWrapping.AfterClass = true; in expandPresets()
933 Expanded.BraceWrapping.AfterControlStatement = FormatStyle::BWACS_Always; in expandPresets()
934 Expanded.BraceWrapping.AfterEnum = true; in expandPresets()
935 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
936 Expanded.BraceWrapping.AfterNamespace = true; in expandPresets()
937 Expanded.BraceWrapping.AfterObjCDeclaration = true; in expandPresets()
938 Expanded.BraceWrapping.AfterStruct = true; in expandPresets()
939 Expanded.BraceWrapping.AfterExternBlock = true; in expandPresets()
940 Expanded.IndentExternBlock = FormatStyle::IEBS_AfterExternBlock; in expandPresets()
941 Expanded.BraceWrapping.BeforeCatch = true; in expandPresets()
942 Expanded.BraceWrapping.BeforeElse = true; in expandPresets()
943 Expanded.BraceWrapping.BeforeLambdaBody = true; in expandPresets()
946 Expanded.BraceWrapping = { in expandPresets()
965 Expanded.IndentExternBlock = FormatStyle::IEBS_AfterExternBlock; in expandPresets()
968 Expanded.BraceWrapping.AfterFunction = true; in expandPresets()
973 return Expanded; in expandPresets()
2824 FormatStyle Expanded = expandPresets(Style); in reformat() local
2825 if (Expanded.DisableFormat) in reformat()
2829 if (Expanded.Language == FormatStyle::LK_JavaScript && isMpegTS(Code)) in reformat()
2859 return NamespaceEndCommentsFixer(Env, Expanded).process(); in reformat()
2864 return UsingDeclarationsSorter(Env, Expanded).process(); in reformat()
2871 return JavaScriptRequoter(Env, Expanded).process(); in reformat()
2875 return Formatter(Env, Expanded, Status).process(); in reformat()
2881 return TrailingCommaInserter(Env, Expanded).process(); in reformat()