Home
last modified time | relevance | path

Searched refs:CaseSensitive (Results 1 – 8 of 8) sorted by relevance

/third_party/nghttp2/
D.clang-format88 CaseSensitive: false
92 CaseSensitive: false
96 CaseSensitive: false
/third_party/ntfs-3g/include/ntfs-3g/
Dvolume.h131 #define NVolCaseSensitive(nv) test_nvol_flag(nv, CaseSensitive)
132 #define NVolSetCaseSensitive(nv) set_nvol_flag(nv, CaseSensitive)
133 #define NVolClearCaseSensitive(nv) clear_nvol_flag(nv, CaseSensitive)
/third_party/css-what/src/
Dtypes.ts36 CaseSensitive: false, constant
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DVirtualFileSystem.h660 if ((CaseSensitive ? lhs.equals(rhs) : lhs.equals_lower(rhs))) in pathComponentMatches()
688 bool CaseSensitive = variable
789 void setCaseSensitivity(bool CaseSensitive) { in setCaseSensitivity() argument
790 IsCaseSensitive = CaseSensitive; in setCaseSensitivity()
/third_party/css-what/src/__fixtures__/
Dtests.ts971 ignoreCase: IgnoreCaseMode.CaseSensitive,
/third_party/libabigail/tests/lib/
Dcatch.hpp487 struct CaseSensitive { enum Choice { argument
3541 CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity );
3545 CaseSensitive::Choice m_caseSensitivity;
3575 RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity );
3581 CaseSensitive::Choice m_caseSensitivity;
3589 …ng::EqualsMatcher Equals( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3590 …ContainsMatcher Contains( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3591 …EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3592 …tsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3593 …::RegexMatcher Matches( std::string const& regex, CaseSensitive::Choice caseSensitivity = CaseSens…
[all …]
/third_party/cJSON/
DREADME.md561 … want the correct, standard compliant, behavior, you need to use the `CaseSensitive` functions whe…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DVirtualFileSystem.cpp1572 if (!parseScalarBool(I.getValue(), FS->CaseSensitive)) in parse()