reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
8654 Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None; 8655 Style.BreakBeforeBraces = FormatStyle::BS_Custom; 8656 Style.BraceWrapping.AfterFunction = true; 8657 Style.BraceWrapping.SplitEmptyFunction = false; 8658 Style.ColumnLimit = 40; 8662 Style); 8667 Style); 8672 Style); 8674 Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty; 8675 verifyFormat("int f() {}", Style); 8678 Style); 8683 Style); 8685 Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline; 8689 Style); 8693 Style); 8698 Style); 8705 Style); 8707 Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All; 8708 verifyFormat("int f() {}", Style); 8709 verifyFormat("int f() { return 0; }", Style); 8712 Style); 8717 Style);