Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/libcbor/
H A D.clang-format3 # BasedOnStyle: Google
109 BasedOnStyle: google
125 BasedOnStyle: google
/freebsd-14.2/contrib/llvm-project/lld/
H A D.clang-format1 BasedOnStyle: LLVM
/freebsd-14.2/contrib/llvm-project/libcxx/modules/
H A D.clang-format1 BasedOnStyle: InheritParentConfig
/freebsd-14.2/contrib/wpa/wpa_supplicant/binder/
H A D.clang-format1 BasedOnStyle: LLVM
/freebsd-14.2/contrib/googletest/
H A D.clang-format4 BasedOnStyle: Google
/freebsd-14.2/
H A D.clang-format3 BasedOnStyle: WebKit
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h3549 std::string BasedOnStyle; member
3554 BasedOnStyle == Other.BasedOnStyle;
/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp513 IO.mapOptional("BasedOnStyle", Format.BasedOnStyle); in mapping()
819 StringRef BasedOnStyle; in mapping() local
828 BasedOnStyle = StyleName; in mapping()
833 IO.mapOptional("BasedOnStyle", BasedOnStyle); in mapping()
834 if (!BasedOnStyle.empty()) { in mapping()
838 if (!getPredefinedStyle(BasedOnStyle, Language, &Style)) { in mapping()
839 IO.setError(Twine("Unknown value for BasedOnStyle: ", BasedOnStyle)); in mapping()
857 const bool IsGoogleOrChromium = BasedOnStyle.equals_insensitive("google") || in mapping()
858 BasedOnStyle.equals_insensitive("chromium"); in mapping()
H A DContinuationIndenter.cpp203 if (!getPredefinedStyle(RawStringFormat.BasedOnStyle, in RawStringFormatStyleManager()