Home
last modified time | relevance | path

Searched refs:BasedOnStyle (Results 1 – 9 of 9) 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/
H A D.clang-format3 BasedOnStyle: WebKit
/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h3708 std::string BasedOnStyle; member
3713 BasedOnStyle == Other.BasedOnStyle;
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp504 IO.mapOptional("BasedOnStyle", Format.BasedOnStyle); in mapping()
813 StringRef BasedOnStyle; in mapping() local
821 BasedOnStyle = StyleName; in mapping()
826 IO.mapOptional("BasedOnStyle", BasedOnStyle); in mapping()
827 if (!BasedOnStyle.empty()) { in mapping()
831 if (!getPredefinedStyle(BasedOnStyle, Language, &Style)) { in mapping()
832 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle)); in mapping()
850 const bool IsGoogleOrChromium = BasedOnStyle.equals_insensitive("google") || in mapping()
851 BasedOnStyle.equals_insensitive("chromium"); in mapping()
H A DContinuationIndenter.cpp203 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle, in RawStringFormatStyleManager()