Home
last modified time | relevance | path

Searched refs:swallow (Results 1 – 25 of 50) sorted by relevance

12

/external/clang/test/SemaCXX/
Darray-bounds-ptr-arith.cpp3 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/
Darray-bounds-ptr-arith.cpp3 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/
Dp4.cpp199 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()
268swallow([=] { struct A : T... { using T::x; }; }); // expected-error {{unexpanded parameter pack '… in g()
269swallow([=] { 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()
273swallow([=] { struct B : T... { B() : T{0} {} }; }); // expected-error {{unexpanded parameter pack… in g()
[all …]
/external/libwebsockets/lib/roles/http/
Dparsers.c771 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/
Dindent.pro22 --swallow-optional-blank-lines
/external/python/cpython2/Misc/
Dindent.pro22 --swallow-optional-blank-lines
/external/libwebsockets/include/libwebsockets/
Dlws-http.h145 char swallow[16]; /**< matched character buffer */ member
/external/libwebsockets/lib/roles/http/server/
Dserver.c3089 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/
Dhpack.c1157 goto swallow; in lws_hpack_interpret()
1205 swallow: in lws_hpack_interpret()
/external/python/cpython2/Doc/tutorial/
Dstdlib2.rst95 >>> d = dict(item='unladen swallow')
101 'Return the unladen swallow to $owner.'
/external/python/cpython3/Doc/tutorial/
Dstdlib2.rst95 >>> d = dict(item='unladen swallow')
101 'Return the unladen swallow to $owner.'
/external/python/cpython2/Misc/NEWS.d/
D2.7b2.rst191 The close() method of :mod:`io` objects should not swallow exceptions raised
D2.7.1rc1.rst602 In case of connection failure, socket.create_connection() would swallow the
/external/python/httplib2/
DCHANGELOG226 More fixes for App Engine, now less likely to swallow important exceptions.
/external/apache-commons-bcel/
DRELEASE-NOTES.txt226 o BCEL-234: Code must not swallow Throwable.
/external/python/cpython3/Misc/NEWS.d/
D3.6.2rc1.rst614 the very first of an iterable may swallow the exception or make the program
D3.5.4rc1.rst660 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/
DTransliterator_Kanji_English.txt666 呑>'[swallow]';
820 嚥>'[swallow]';
3101 燕>'[swallow (bird)]';
/external/python/cpython2/Lib/test/
Dtest_descr.py1834 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/
Dtest_descr.py2018 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/
DTransliterator_Han_Latin_Definition.txt4164 吞聲 < 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/
Dlogging.rst953 The logging package is designed to swallow exceptions which occur while logging
Dlogging-cookbook.rst1469 # implicit return of None => don't swallow exceptions
/external/python/cpython3/Doc/howto/
Dlogging.rst1012 The logging package is designed to swallow exceptions which occur while logging
/external/python/setuptools/
DCHANGES.rst2942 * Reviewed unladen-swallow specific change from
2943 http://code.google.com/p/unladen-swallow/source/detail?spec=svn875&r=719

12