Home
last modified time | relevance | path

Searched refs:BasedOnStyle (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/libcbor/
H A D.clang-format3 # BasedOnStyle: Google
109 BasedOnStyle: google
125 BasedOnStyle: google
/freebsd/contrib/llvm-project/lld/
H A D.clang-format1 BasedOnStyle: LLVM
/freebsd/contrib/llvm-project/libcxx/modules/
H A D.clang-format1 BasedOnStyle: InheritParentConfig
/freebsd/contrib/wpa/wpa_supplicant/binder/
H A D.clang-format1 BasedOnStyle: LLVM
/freebsd/contrib/googletest/
H A D.clang-format4 BasedOnStyle: Google
/freebsd/contrib/pam-krb5/
H A D.clang-format17 BasedOnStyle: LLVM
/freebsd/contrib/libucl/
H A D.clang-format2 BasedOnStyle: LLVM
/freebsd/
H A D.clang-format3 BasedOnStyle: WebKit
/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h3917 std::string BasedOnStyle; member
3922 BasedOnStyle == Other.BasedOnStyle;
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp537 IO.mapOptional("BasedOnStyle", Format.BasedOnStyle); in mapping()
882 StringRef BasedOnStyle; in mapping() local
890 BasedOnStyle = StyleName; in mapping()
895 IO.mapOptional("BasedOnStyle", BasedOnStyle); in mapping()
896 if (!BasedOnStyle.empty()) { in mapping()
900 if (!getPredefinedStyle(BasedOnStyle, Language, &Style)) { in mapping()
901 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle)); in mapping()
919 const bool IsGoogleOrChromium = BasedOnStyle.equals_insensitive("google") || in mapping()
920 BasedOnStyle.equals_insensitive("chromium"); in mapping()
H A DContinuationIndenter.cpp211 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle, in RawStringFormatStyleManager()