/third_party/icu/ |
D | .gitattributes | 1 # The line "* text=auto !eol" means the following: 4 * text=auto !eol 10 # "!eol" is the equivalent of "svneol=native". 12 *.bat text !eol 13 *.c text !eol diff=cpp 14 *.cc text !eol diff=cpp 15 *.classpath text !eol 16 *.cmd text eol=crlf 17 *.cpp text !eol diff=cpp 18 *.css text !eol diff=css [all …]
|
/third_party/boost/libs/spirit/test/qi/ |
D | end.cpp | 27 using qi::eol; in main() 32 BOOST_TEST(test("\r", eol)); in main() 33 BOOST_TEST(test("\r\n", eol)); in main() 34 BOOST_TEST(test("\n", eol)); in main() 35 BOOST_TEST(!test("\b", eol)); in main() 37 BOOST_TEST(!test("\r", !eol, false)); in main() 38 BOOST_TEST(!test("\r\n", !eol, false)); in main() 39 BOOST_TEST(!test("\n", !eol, false)); in main() 40 BOOST_TEST(test("\b", !eol, false)); in main() 42 BOOST_TEST(test(" \r", eol, ascii::char_(' '))); in main() [all …]
|
/third_party/skia/third_party/externals/angle2/ |
D | .gitattributes | 2 *.sln eol=crlf 3 *.vcxproj eol=crlf 4 *.vcxproj.filters eol=crlf 5 *.bat eol=crlf 6 *.rc eol=crlf 7 **/compiled/*.h eol=crlf 8 **/shaders/gen/*.inc eol=lf 9 *.sh eol=lf 10 *.gn eol=lf 11 *.gni eol=lf [all …]
|
/third_party/curl/ |
D | .gitattributes | 2 buildconf eol=lf 3 configure.ac eol=lf 4 *.m4 eol=lf 5 *.in eol=lf 6 *.am eol=lf 7 *.sh eol=lf 12 *.bat text eol=crlf 13 *.btm text eol=crlf 14 *.cmd text eol=crlf
|
/third_party/lz4/ |
D | .gitattributes | 2 * text eol=lf 5 *.c text eol=lf 6 *.h text eol=lf 13 *.sln text eol=crlf 14 *.vcxproj* text eol=crlf 15 *.vcproj* text eol=crlf 17 *.rc text eol=crlf 20 *.bat text eol=crlf 21 *.cmd text eol=crlf
|
/third_party/boost/libs/spirit/test/x3/ |
D | eol.cpp | 17 using boost::spirit::x3::eol; in main() 19 BOOST_SPIRIT_ASSERT_CONSTEXPR_CTORS(eol); in main() 22 BOOST_TEST((test("\r\n", eol))); in main() 23 BOOST_TEST((test("\r", eol))); in main() 24 BOOST_TEST((test("\n", eol))); in main() 25 BOOST_TEST((!test("\n\r", eol))); in main() 26 BOOST_TEST((!test("", eol))); in main() 30 BOOST_TEST(what(eol) == "eol"); in main()
|
/third_party/skia/third_party/externals/imgui/ |
D | .gitattributes | 17 *.sln text eol=crlf 18 *.vcxproj text eol=crlf 19 *.vcxproj.filters text eol=crlf 20 *.natvis text eol=crlf 22 Makefile text eol=lf 23 *.sh text eol=lf 24 *.pbxproj text eol=lf 25 *.storyboard text eol=lf 26 *.plist text eol=lf
|
/third_party/typescript_eslint/ |
D | .gitattributes | 2 *.js eol=lf 3 *.json eol=lf 4 *.md eol=lf 5 *.ts eol=lf 6 *.tsx eol=lf 7 *.yml eol=lf
|
/third_party/boost/libs/spirit/repository/example/qi/ |
D | flush_multi_pass.cpp | 41 using spirit::qi::eol; in preprocessor() 48 line = ( command | *(char_ - eol) ) in preprocessor() 49 >> eol in preprocessor() 54 "#define" >> *lit(' ') >> *(char_ - ' ') >> *lit(' ') >> *(char_ - eol) in preprocessor() 55 | "#undef" >> *lit(' ') >> *(char_ - eol) in preprocessor() 75 using spirit::qi::eol; in main() 89 bool result = parse(first, end, '#' >> *(char_ - eol) >> eol); in main()
|
D | options.cpp | 58 using boost::spirit::karma::eol; in operator <<() 61 lit("Includes:") << (string % ',') << eol in operator <<() 62 << lit("Preprocessor symbols:") << ((string <<"="<< int_) % ',') << eol in operator <<() 63 << buffer[-( lit("Output file:")<< string << eol)] in operator <<() 64 << lit("Source file:")<< string << eol in operator <<()
|
/third_party/glslang/ |
D | .gitattributes | 11 *.h text eol=lf 12 *.c text eol=lf 13 *.cpp text eol=lf 14 *.y text eol=lf 15 *.out text eol=lf 16 *.conf text eol=lf 17 *.err text eol=lf
|
/third_party/libusb/ |
D | .gitattributes | 1 *.ac eol=lf 2 *.am eol=lf 3 *.bat eol=crlf 4 *.sh eol=lf 7 INSTALL_WIN.txt eol=crlf
|
/third_party/libsnd/ |
D | .gitattributes | 5 *.ac text eol=lf 6 *.am text eol=lf 7 *.m4 text eol=lf 8 *.pc text eol=lf 9 *.spec text eol=lf 10 *.sh text eol=lf
|
/third_party/jsoncpp/ |
D | .gitattributes | 6 *.sh eol=lf 7 *.bat eol=crlf 8 *.vcproj eol=crlf 9 *.vcxproj eol=crlf 10 *.sln eol=crlf 11 devtools/agent_vm* eol=crlf
|
/third_party/boost/libs/spirit/test/karma/ |
D | eol.cpp | 23 BOOST_TEST((test("\n", eol))); in main() 24 BOOST_TEST((test("\n", eol))); in main() 28 BOOST_TEST((test_delimited("\n ", eol, space))); in main() 29 BOOST_TEST((test_delimited("\n ", eol, space))); in main()
|
/third_party/python/Lib/email/ |
D | quoprimime.py | 152 def body_encode(body, maxlinelen=76, eol=NL): argument 179 soft_break = '=' + eol 225 return eol.join(encoded_body) 231 def decode(encoded, eol=NL): argument 246 decoded += eol 271 decoded += eol 273 if encoded[-1] not in '\r\n' and decoded.endswith(eol):
|
/third_party/libsoup/libsoup/ |
D | soup-headers.c | 41 char *eol, *sol, *p; in soup_headers_parse() local 122 while ((eol = strchr (value, '\n'))) { in soup_headers_parse() 124 sol = eol + 1; in soup_headers_parse() 129 while (eol[-1] == ' ' || eol[-1] == '\t' || eol[-1] == '\r') in soup_headers_parse() 130 eol--; in soup_headers_parse() 133 *eol = ' '; in soup_headers_parse() 134 memmove (eol + 1, sol, strlen (sol) + 1); in soup_headers_parse() 138 eol = strchr (value, '\0'); in soup_headers_parse() 139 while (eol > value && in soup_headers_parse() 140 (eol[-1] == ' ' || eol[-1] == '\t' || eol[-1] == '\r')) in soup_headers_parse() [all …]
|
/third_party/libusb/msvc/ |
D | .gitattributes | 1 *.sln eol=crlf 2 *.vcxproj eol=crlf 3 *.vcxproj.filters eol=crlf
|
/third_party/flutter/skia/third_party/externals/dawn/ |
D | .gitattributes | 2 *.sh eol=lf 3 *.gn eol=lf 4 *.gni eol=lf
|
/third_party/skia/third_party/externals/dawn/ |
D | .gitattributes | 2 *.sh eol=lf 3 *.gn eol=lf 4 *.gni eol=lf
|
/third_party/boost/libs/spirit/repository/test/karma/ |
D | confix.cpp | 79 confix(string("//"), eol)[" some C++ comment"]))); in main() 81 confix(string("//"), eol)[string], " some C++ comment"))); in main() 93 confix(string(L"//"), eol)[L" some C++ comment"]))); in main() 104 confix(string("//"), eol)["some C++ comment"], space))); in main() 116 confix(string(L"//"), eol)[L"some C++ comment"], space))); in main()
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/calc7/ |
D | error_handler.hpp | 58 bool eol = false; in get_pos() local 61 eol = true; in get_pos() 66 eol = true; in get_pos() 69 if (eol) in get_pos()
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/calc8/ |
D | error_handler.hpp | 58 bool eol = false; in get_pos() local 61 eol = true; in get_pos() 66 eol = true; in get_pos() 69 if (eol) in get_pos()
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure1/ |
D | error_handler.hpp | 58 bool eol = false; in get_pos() local 61 eol = true; in get_pos() 66 eol = true; in get_pos() 69 if (eol) in get_pos()
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/mini_c/ |
D | error_handler.hpp | 58 bool eol = false; in get_pos() local 61 eol = true; in get_pos() 66 eol = true; in get_pos() 69 if (eol) in get_pos()
|