diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
commit | 094638589de6a6c9f91fad0005843fc1c1adc957 (patch) | |
tree | 7d55b9e950eb724da222548997547bf6710b1b58 /library/cpp/string_utils | |
parent | bc921e787bed8a51a43725b78382e806800c44c1 (diff) | |
download | ydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz |
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/string_utils')
22 files changed, 0 insertions, 297 deletions
diff --git a/library/cpp/string_utils/base64/bench/metrics/ya.make b/library/cpp/string_utils/base64/bench/metrics/ya.make deleted file mode 100644 index b0406516c37..00000000000 --- a/library/cpp/string_utils/base64/bench/metrics/ya.make +++ /dev/null @@ -1,20 +0,0 @@ -OWNER( - yazevnul - g:util -) - -PY2TEST() - -SIZE(LARGE) - -TAG( - ya:force_sandbox - sb:intel_e5_2660v1 - ya:fat -) - -TEST_SRCS(main.py) - -DEPENDS(library/cpp/string_utils/base64/bench) - -END() diff --git a/library/cpp/string_utils/base64/bench/ya.make b/library/cpp/string_utils/base64/bench/ya.make deleted file mode 100644 index 5ac5f3d6ced..00000000000 --- a/library/cpp/string_utils/base64/bench/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -OWNER( - yazevnul - g:util -) - -Y_BENCHMARK() - -SRCS( - main.cpp -) - -PEERDIR( - library/cpp/string_utils/base64 -) - -END() diff --git a/library/cpp/string_utils/base64/fuzz/generic/ya.make b/library/cpp/string_utils/base64/fuzz/generic/ya.make deleted file mode 100644 index d155e2b0a08..00000000000 --- a/library/cpp/string_utils/base64/fuzz/generic/ya.make +++ /dev/null @@ -1,12 +0,0 @@ -OWNER( - yazevnul - g:util -) - -FUZZ() - -PEERDIR( - library/cpp/string_utils/base64/fuzz/lib -) - -END() diff --git a/library/cpp/string_utils/base64/fuzz/lib/ya.make b/library/cpp/string_utils/base64/fuzz/lib/ya.make deleted file mode 100644 index 7b981b86a30..00000000000 --- a/library/cpp/string_utils/base64/fuzz/lib/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -OWNER( - yazevnul - g:util -) - -LIBRARY() - -SRCS( - main.cpp -) - -PEERDIR( - library/cpp/string_utils/base64 -) - -END() diff --git a/library/cpp/string_utils/base64/fuzz/uneven/ya.make b/library/cpp/string_utils/base64/fuzz/uneven/ya.make deleted file mode 100644 index 18cb18ef52f..00000000000 --- a/library/cpp/string_utils/base64/fuzz/uneven/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -FUZZ() - -OWNER( - g:util -) - -SRCS( - main.cpp -) - -PEERDIR( - library/cpp/string_utils/base64 -) - -END() diff --git a/library/cpp/string_utils/base64/fuzz/ya.make b/library/cpp/string_utils/base64/fuzz/ya.make deleted file mode 100644 index bef82061c46..00000000000 --- a/library/cpp/string_utils/base64/fuzz/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -OWNER( - yazevnul - g:util -) - -RECURSE( - generic - lib - uneven -) diff --git a/library/cpp/string_utils/base64/ut/ya.make b/library/cpp/string_utils/base64/ut/ya.make deleted file mode 100644 index 9b61241f0e5..00000000000 --- a/library/cpp/string_utils/base64/ut/ya.make +++ /dev/null @@ -1,22 +0,0 @@ -OWNER( - g:util - yazevnul -) - -UNITTEST_FOR(library/cpp/string_utils/base64) - -SRCS( - base64_ut.cpp - base64_decode_uneven_ut.cpp -) - -PEERDIR( - contrib/libs/base64/avx2 - contrib/libs/base64/ssse3 - contrib/libs/base64/neon32 - contrib/libs/base64/neon64 - contrib/libs/base64/plain32 - contrib/libs/base64/plain64 -) - -END() diff --git a/library/cpp/string_utils/base64/ya.make b/library/cpp/string_utils/base64/ya.make deleted file mode 100644 index f5258c446cf..00000000000 --- a/library/cpp/string_utils/base64/ya.make +++ /dev/null @@ -1,23 +0,0 @@ -OWNER( - g:util - yazevnul -) - -LIBRARY() - -SRCS( - base64.cpp -) - -PEERDIR( - contrib/libs/base64/avx2 - contrib/libs/base64/ssse3 - contrib/libs/base64/neon32 - contrib/libs/base64/neon64 - contrib/libs/base64/plain32 - contrib/libs/base64/plain64 -) - -END() - -RECURSE_FOR_TESTS(ut) diff --git a/library/cpp/string_utils/indent_text/ya.make b/library/cpp/string_utils/indent_text/ya.make deleted file mode 100644 index cd0ed9ec61f..00000000000 --- a/library/cpp/string_utils/indent_text/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -LIBRARY() - -OWNER(nga) - -SRCS( - indent_text.cpp -) - -END() diff --git a/library/cpp/string_utils/levenshtein_diff/ut/ya.make b/library/cpp/string_utils/levenshtein_diff/ut/ya.make deleted file mode 100644 index a3b9b8fea5f..00000000000 --- a/library/cpp/string_utils/levenshtein_diff/ut/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -UNITTEST_FOR(library/cpp/string_utils/levenshtein_diff) - -OWNER(myltsev) - -SRCS( - levenshtein_diff_ut.cpp -) - -END() diff --git a/library/cpp/string_utils/levenshtein_diff/ya.make b/library/cpp/string_utils/levenshtein_diff/ya.make deleted file mode 100644 index bafefe53653..00000000000 --- a/library/cpp/string_utils/levenshtein_diff/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -LIBRARY() - -OWNER(g:mt) - -SRCS( - levenshtein_diff.cpp -) - -PEERDIR( - util/draft -) - -END() diff --git a/library/cpp/string_utils/parse_size/ut/ya.make b/library/cpp/string_utils/parse_size/ut/ya.make deleted file mode 100644 index da19cf025b4..00000000000 --- a/library/cpp/string_utils/parse_size/ut/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -UNITTEST_FOR(library/cpp/string_utils/parse_size) - -OWNER(g:images-robot) - -SRCS( - parse_size_ut.cpp -) - -END() diff --git a/library/cpp/string_utils/parse_size/ya.make b/library/cpp/string_utils/parse_size/ya.make deleted file mode 100644 index 4a62abcac27..00000000000 --- a/library/cpp/string_utils/parse_size/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -LIBRARY() - -OWNER(g:images-robot) - -SRCS( - parse_size.cpp - parse_size.h -) - -END() diff --git a/library/cpp/string_utils/quote/ut/ya.make b/library/cpp/string_utils/quote/ut/ya.make deleted file mode 100644 index eca955144ff..00000000000 --- a/library/cpp/string_utils/quote/ut/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -UNITTEST_FOR(library/cpp/string_utils/quote) - -OWNER(vladon) - -SRCS( - quote_ut.cpp -) - -END() diff --git a/library/cpp/string_utils/quote/ya.make b/library/cpp/string_utils/quote/ya.make deleted file mode 100644 index 55bb3cf939b..00000000000 --- a/library/cpp/string_utils/quote/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -LIBRARY() - -OWNER(g:util) - -SRCS( - quote.cpp - quote.h -) - -END() diff --git a/library/cpp/string_utils/relaxed_escaper/ut/ya.make b/library/cpp/string_utils/relaxed_escaper/ut/ya.make deleted file mode 100644 index 7ebd393c482..00000000000 --- a/library/cpp/string_utils/relaxed_escaper/ut/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -UNITTEST_FOR(library/cpp/string_utils/relaxed_escaper) - -OWNER(velavokr) - -SRCS( - relaxed_escaper_ut.cpp -) - -END() diff --git a/library/cpp/string_utils/relaxed_escaper/ya.make b/library/cpp/string_utils/relaxed_escaper/ya.make deleted file mode 100644 index 3f0fa5bc076..00000000000 --- a/library/cpp/string_utils/relaxed_escaper/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -LIBRARY() - -OWNER(velavokr) - -SRCS( - relaxed_escaper.cpp -) - -END() diff --git a/library/cpp/string_utils/scan/ya.make b/library/cpp/string_utils/scan/ya.make deleted file mode 100644 index 2faae86b09f..00000000000 --- a/library/cpp/string_utils/scan/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -OWNER( - g:util -) - -LIBRARY() - -SRCS( - scan.cpp -) - -END() diff --git a/library/cpp/string_utils/url/ut/ya.make b/library/cpp/string_utils/url/ut/ya.make deleted file mode 100644 index 0efa30e4d2c..00000000000 --- a/library/cpp/string_utils/url/ut/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -UNITTEST_FOR(library/cpp/string_utils/url) - -OWNER(g:util) - -SRCS( - url_ut.cpp -) - -END() diff --git a/library/cpp/string_utils/url/ya.make b/library/cpp/string_utils/url/ya.make deleted file mode 100644 index b08d69ec83d..00000000000 --- a/library/cpp/string_utils/url/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -LIBRARY() - -OWNER(g:util) - -SRCS( - url.cpp - url.h -) - -END() diff --git a/library/cpp/string_utils/ya.make b/library/cpp/string_utils/ya.make deleted file mode 100644 index cd731bda953..00000000000 --- a/library/cpp/string_utils/ya.make +++ /dev/null @@ -1,37 +0,0 @@ -RECURSE( - ascii_encode - ascii_encode/ut - base64 - base64/bench - base64/bench/metrics - base64/ut - base64/fuzz - csv - csv/bench - csv/ut - col_diff - col_diff/ut - indent_text - levenshtein_diff - levenshtein_diff/ut - old_url_normalize - old_url_normalize/ut - parse_size - parse_size/ut - parse_vector - parse_vector/ut - secret_string - quote - quote/ut - relaxed_escaper - relaxed_escaper/ut - scan - subst_buf - subst_buf/ut - tskv_format - tskv_format/ut - tskv_format/fuzz - url - url/ut - ztstrbuf -) diff --git a/library/cpp/string_utils/ztstrbuf/ya.make b/library/cpp/string_utils/ztstrbuf/ya.make deleted file mode 100644 index 28b3f32f589..00000000000 --- a/library/cpp/string_utils/ztstrbuf/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -LIBRARY() - -OWNER(myltsev) - -SRCS( - ztstrbuf.cpp -) - -END() |