/external/clang/test/SemaCXX/ |
D | array-bounds-ptr-arith.cpp | 3 void swallow (const char *x) { (void)x; } in swallow() function 8 swallow("Hello world!" + 6); // no-warning in test_pointer_arithmetic() 9 swallow("Hello world!" - 6); // expected-warning {{refers before the beginning of the array}} in test_pointer_arithmetic() 10 swallow("Hello world!" + 14); // expected-warning {{refers past the end of the array}} in test_pointer_arithmetic() 11 swallow("Hello world!" + 13); // no-warning in test_pointer_arithmetic() 13 swallow(hello + 6); // no-warning in test_pointer_arithmetic() 14 swallow(hello - 6); // expected-warning {{refers before the beginning of the array}} in test_pointer_arithmetic() 15 swallow(hello + 14); // expected-warning {{refers past the end of the array}} in test_pointer_arithmetic() 16 swallow(hello + 13); // no-warning in test_pointer_arithmetic() 18 swallow(helloptr + 6); // no-warning in test_pointer_arithmetic() [all …]
|
/external/llvm-project/clang/test/SemaCXX/ |
D | array-bounds-ptr-arith.cpp | 3 void swallow (const char *x) { (void)x; } in swallow() function 8 swallow("Hello world!" + 6); // no-warning in test_pointer_arithmetic() 9 swallow("Hello world!" - 6); // expected-warning {{refers before the beginning of the array}} in test_pointer_arithmetic() 10 swallow("Hello world!" + 14); // expected-warning {{refers past the end of the array}} in test_pointer_arithmetic() 11 swallow("Hello world!" + 13); // no-warning in test_pointer_arithmetic() 13 swallow(hello + 6); // no-warning in test_pointer_arithmetic() 14 swallow(hello - 6); // expected-warning {{refers before the beginning of the array}} in test_pointer_arithmetic() 15 swallow(hello + 14); // expected-warning {{refers past the end of the array}} in test_pointer_arithmetic() 16 swallow(hello + 13); // no-warning in test_pointer_arithmetic() 18 swallow(helloptr + 6); // no-warning in test_pointer_arithmetic() [all …]
|
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | p4.cpp | 199 void swallow(...); 201 swallow([=] { in f() 218 swallow([]<T *...v, template<T *> typename ...W>(W<v> ...wv) { }); in f() 258 swallow([=] { in nested() 265 swallow([=] { void h(T); }); // expected-error {{unexpanded parameter pack 'T'}} in g() 266 swallow([=] { struct A : T {}; }); // expected-error {{unexpanded parameter pack 'T'}} in g() 268 …swallow([=] { struct A : T... { using T::x; }; }); // expected-error {{unexpanded parameter pack '… in g() 269 …swallow([=] { struct A : T... { using typename T::U; }; }); // expected-error {{unexpanded paramet… in g() 272 swallow([=] { int arr[] = {T().x}; }); // expected-error {{unexpanded parameter pack 'T'}} in g() 273 …swallow([=] { struct B : T... { B() : T{0} {} }; }); // expected-error {{unexpanded parameter pack… in g() [all …]
|
/external/libwebsockets/lib/roles/http/ |
D | parsers.c | 771 goto swallow; in lws_parse_urldecode() 781 goto swallow; in lws_parse_urldecode() 823 goto swallow; in lws_parse_urldecode() 849 goto swallow; in lws_parse_urldecode() 853 goto swallow; in lws_parse_urldecode() 861 goto swallow; in lws_parse_urldecode() 866 goto swallow; in lws_parse_urldecode() 895 goto swallow; in lws_parse_urldecode() 928 goto swallow; in lws_parse_urldecode() 933 swallow: in lws_parse_urldecode() [all …]
|
/external/python/cpython3/Misc/ |
D | indent.pro | 22 --swallow-optional-blank-lines
|
/external/python/cpython2/Misc/ |
D | indent.pro | 22 --swallow-optional-blank-lines
|
/external/libwebsockets/include/libwebsockets/ |
D | lws-http.h | 145 char swallow[16]; /**< matched character buffer */ member
|
/external/libwebsockets/lib/roles/http/server/ |
D | server.c | 3089 s->swallow[s->pos++] = *sp; in lws_chunked_html_process() 3090 if (s->pos == sizeof(s->swallow) - 1) in lws_chunked_html_process() 3093 if (!strncmp(s->swallow, s->vars[n], s->pos)) { in lws_chunked_html_process() 3099 s->swallow[s->pos] = '\0'; in lws_chunked_html_process() 3100 memcpy(s->start, s->swallow, s->pos); in lws_chunked_html_process() 3111 s->swallow[s->pos] = '\0'; in lws_chunked_html_process()
|
/external/libwebsockets/lib/roles/h2/ |
D | hpack.c | 1157 goto swallow; in lws_hpack_interpret() 1205 swallow: in lws_hpack_interpret()
|
/external/python/cpython2/Doc/tutorial/ |
D | stdlib2.rst | 95 >>> d = dict(item='unladen swallow') 101 'Return the unladen swallow to $owner.'
|
/external/python/cpython3/Doc/tutorial/ |
D | stdlib2.rst | 95 >>> d = dict(item='unladen swallow') 101 'Return the unladen swallow to $owner.'
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7b2.rst | 191 The close() method of :mod:`io` objects should not swallow exceptions raised
|
D | 2.7.1rc1.rst | 602 In case of connection failure, socket.create_connection() would swallow the
|
/external/python/httplib2/ |
D | CHANGELOG | 226 More fixes for App Engine, now less likely to swallow important exceptions.
|
/external/apache-commons-bcel/ |
D | RELEASE-NOTES.txt | 226 o BCEL-234: Code must not swallow Throwable.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.2rc1.rst | 614 the very first of an iterable may swallow the exception or make the program
|
D | 3.5.4rc1.rst | 660 the very first of an iterable may swallow the exception or make the program
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_English.txt | 666 呑>'[swallow]'; 820 嚥>'[swallow]'; 3101 燕>'[swallow (bird)]';
|
/external/python/cpython2/Lib/test/ |
D | test_descr.py | 1834 def swallow(*args): function 1860 ("__enter__", run_context, iden, set(), {"__exit__" : swallow}), 1861 ("__exit__", run_context, swallow, set(), {"__enter__" : iden}),
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 2018 def swallow(*args): pass function 2036 ("__enter__", run_context, iden, set(), {"__exit__" : swallow}), 2037 ("__exit__", run_context, swallow, set(), {"__enter__" : iden}),
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 4164 吞聲 < to\-swallow\-one''s\-cries; 5744 噋 < to\-swallow\-hastily; 11129 䲻 < the\-swallow; 12386 䑍 < to\-swallow; 12509 併吞 < swallow\-up; 13227 鷾 < a\-swallow; 15777 燕 < swallow; 26812 吞聲 > to\-swallow\-one''s\-cries; 29893 併吞 > swallow\-up; 30080 吞噬 > to\-swallow; [all …]
|
/external/python/cpython2/Doc/howto/ |
D | logging.rst | 953 The logging package is designed to swallow exceptions which occur while logging
|
D | logging-cookbook.rst | 1469 # implicit return of None => don't swallow exceptions
|
/external/python/cpython3/Doc/howto/ |
D | logging.rst | 1012 The logging package is designed to swallow exceptions which occur while logging
|
/external/python/setuptools/ |
D | CHANGES.rst | 2942 * Reviewed unladen-swallow specific change from 2943 http://code.google.com/p/unladen-swallow/source/detail?spec=svn875&r=719
|