Home
last modified time | relevance | path

Searched refs:ignored (Results 1 – 25 of 1630) sorted by relevance

12345678910>>...66

/external/easymock/src/org/easymock/
DMockControl.java467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) { in expectAndReturn() argument
471 public void expectAndReturn(int ignored, int value) { in expectAndReturn() argument
472 this.expectAndReturn((Object) ignored, (Object) value); in expectAndReturn()
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() argument
494 public void expectAndReturn(int ignored, int value, Range range) { in expectAndReturn() argument
495 this.expectAndReturn((Object) ignored, (Object) value, range); in expectAndReturn()
510 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() argument
515 public void expectAndReturn(int ignored, int value, int count) { in expectAndReturn() argument
516 this.expectAndReturn((Object) ignored, (Object) value, count); in expectAndReturn()
532 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() argument
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
DWeightedMeasurement.java66 private boolean ignored; field in WeightedMeasurement
82 ignored = false; in WeightedMeasurement()
94 boolean ignored) { in WeightedMeasurement() argument
97 this.ignored = ignored; in WeightedMeasurement()
159 public void setIgnored(boolean ignored) { in setIgnored() argument
160 this.ignored = ignored; in setIgnored()
169 return ignored; in isIgnored()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_payload_registry_unittest.cc123 bool ignored = false; in TEST_F() local
128 kTypicalChannels, kTypicalRate, &ignored)); in TEST_F()
132 kTypicalChannels, kTypicalRate, &ignored)) in TEST_F()
139 kTypicalChannels, kTypicalRate, &ignored)) in TEST_F()
161 kTypicalChannels, kTypicalRate, &ignored)); in TEST_F()
173 bool ignored = false; in TEST_F() local
177 kTypicalChannels, kTypicalRate, &ignored)); in TEST_F()
181 kTypicalChannels, kTypicalRate, &ignored)); in TEST_F()
195 kTypicalChannels, kTypicalRate, &ignored)); in TEST_F()
213 bool ignored; in TEST_F() local
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
DAndroidDigestFactory.java48 } catch (Exception ignored) { in getMD5()
59 } catch (Exception ignored) { in getSHA1()
70 } catch (Exception ignored) { in getSHA224()
81 } catch (Exception ignored) { in getSHA256()
92 } catch (Exception ignored) { in getSHA384()
103 } catch (Exception ignored) { in getSHA512()
/external/python/cpython3/Modules/_io/clinic/
Diobase.c.h18 _io__IOBase_tell(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__IOBase_tell() argument
38 _io__IOBase_flush(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__IOBase_flush() argument
58 _io__IOBase_close(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__IOBase_close() argument
79 _io__IOBase_seekable(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__IOBase_seekable() argument
99 _io__IOBase_readable(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__IOBase_readable() argument
119 _io__IOBase_writable(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__IOBase_writable() argument
139 _io__IOBase_fileno(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__IOBase_fileno() argument
159 _io__IOBase_isatty(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__IOBase_isatty() argument
278 _io__RawIOBase_readall(PyObject *self, PyObject *Py_UNUSED(ignored)) in _io__RawIOBase_readall() argument
Dtextio.c.h86 _io_IncrementalNewlineDecoder_getstate(nldecoder_object *self, PyObject *Py_UNUSED(ignored)) in _io_IncrementalNewlineDecoder_getstate() argument
111 _io_IncrementalNewlineDecoder_reset(nldecoder_object *self, PyObject *Py_UNUSED(ignored)) in _io_IncrementalNewlineDecoder_reset() argument
191 _io_TextIOWrapper_detach(textio *self, PyObject *Py_UNUSED(ignored)) in _io_TextIOWrapper_detach() argument
316 _io_TextIOWrapper_tell(textio *self, PyObject *Py_UNUSED(ignored)) in _io_TextIOWrapper_tell() argument
361 _io_TextIOWrapper_fileno(textio *self, PyObject *Py_UNUSED(ignored)) in _io_TextIOWrapper_fileno() argument
378 _io_TextIOWrapper_seekable(textio *self, PyObject *Py_UNUSED(ignored)) in _io_TextIOWrapper_seekable() argument
395 _io_TextIOWrapper_readable(textio *self, PyObject *Py_UNUSED(ignored)) in _io_TextIOWrapper_readable() argument
412 _io_TextIOWrapper_writable(textio *self, PyObject *Py_UNUSED(ignored)) in _io_TextIOWrapper_writable() argument
429 _io_TextIOWrapper_isatty(textio *self, PyObject *Py_UNUSED(ignored)) in _io_TextIOWrapper_isatty() argument
446 _io_TextIOWrapper_flush(textio *self, PyObject *Py_UNUSED(ignored)) in _io_TextIOWrapper_flush() argument
[all …]
Dbytesio.c.h18 _io_BytesIO_readable(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_readable() argument
36 _io_BytesIO_writable(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_writable() argument
54 _io_BytesIO_seekable(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_seekable() argument
72 _io_BytesIO_flush(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_flush() argument
90 _io_BytesIO_getbuffer(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_getbuffer() argument
108 _io_BytesIO_getvalue(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_getvalue() argument
128 _io_BytesIO_isatty(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_isatty() argument
146 _io_BytesIO_tell(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_tell() argument
400 _io_BytesIO_close(bytesio *self, PyObject *Py_UNUSED(ignored)) in _io_BytesIO_close() argument
Dfileio.c.h21 _io_FileIO_close(fileio *self, PyObject *Py_UNUSED(ignored)) in _io_FileIO_close() argument
82 _io_FileIO_fileno(fileio *self, PyObject *Py_UNUSED(ignored)) in _io_FileIO_fileno() argument
100 _io_FileIO_readable(fileio *self, PyObject *Py_UNUSED(ignored)) in _io_FileIO_readable() argument
118 _io_FileIO_writable(fileio *self, PyObject *Py_UNUSED(ignored)) in _io_FileIO_writable() argument
136 _io_FileIO_seekable(fileio *self, PyObject *Py_UNUSED(ignored)) in _io_FileIO_seekable() argument
189 _io_FileIO_readall(fileio *self, PyObject *Py_UNUSED(ignored)) in _io_FileIO_readall() argument
314 _io_FileIO_tell(fileio *self, PyObject *Py_UNUSED(ignored)) in _io_FileIO_tell() argument
368 _io_FileIO_isatty(fileio *self, PyObject *Py_UNUSED(ignored)) in _io_FileIO_isatty() argument
Dwinconsoleio.c.h23 _io__WindowsConsoleIO_close(winconsoleio *self, PyObject *Py_UNUSED(ignored)) in _io__WindowsConsoleIO_close() argument
88 _io__WindowsConsoleIO_fileno(winconsoleio *self, PyObject *Py_UNUSED(ignored)) in _io__WindowsConsoleIO_fileno() argument
110 _io__WindowsConsoleIO_readable(winconsoleio *self, PyObject *Py_UNUSED(ignored)) in _io__WindowsConsoleIO_readable() argument
132 _io__WindowsConsoleIO_writable(winconsoleio *self, PyObject *Py_UNUSED(ignored)) in _io__WindowsConsoleIO_writable() argument
192 _io__WindowsConsoleIO_readall(winconsoleio *self, PyObject *Py_UNUSED(ignored)) in _io__WindowsConsoleIO_readall() argument
289 _io__WindowsConsoleIO_isatty(winconsoleio *self, PyObject *Py_UNUSED(ignored)) in _io__WindowsConsoleIO_isatty() argument
Dstringio.c.h18 _io_StringIO_getvalue(stringio *self, PyObject *Py_UNUSED(ignored)) in _io_StringIO_getvalue() argument
36 _io_StringIO_tell(stringio *self, PyObject *Py_UNUSED(ignored)) in _io_StringIO_tell() argument
202 _io_StringIO_close(stringio *self, PyObject *Py_UNUSED(ignored)) in _io_StringIO_close() argument
252 _io_StringIO_readable(stringio *self, PyObject *Py_UNUSED(ignored)) in _io_StringIO_readable() argument
270 _io_StringIO_writable(stringio *self, PyObject *Py_UNUSED(ignored)) in _io_StringIO_writable() argument
288 _io_StringIO_seekable(stringio *self, PyObject *Py_UNUSED(ignored)) in _io_StringIO_seekable() argument
/external/clang/test/Preprocessor/
Dpragma_diagnostic_sections.cpp8 #pragma clang diagnostic ignored "-Wtautological-compare"
18 #pragma clang diagnostic ignored "-Wtautological-compare"
35 #pragma clang diagnostic ignored "-Wunused-macros"
42 #pragma clang diagnostic ignored "-Wreturn-type"
50 #pragma clang diagnostic ignored "-Wunused-parameter" in ww()
63 #pragma clang diagnostic ignored "-Wreorder" in S2()
/external/junit-params/src/main/java/junitparams/internal/
DNonParameterisedFrameworkMethod.java17 private final boolean ignored; field in NonParameterisedFrameworkMethod
27 NonParameterisedFrameworkMethod(Method method, Description description, boolean ignored) { in NonParameterisedFrameworkMethod() argument
29 this.ignored = ignored; in NonParameterisedFrameworkMethod()
43 return ignored; in isIgnored()
/external/mdnsresponder/android/
Dwindows_firewall_dummy.c1 int mDNSIsFileAndPrintSharingEnabled(int *ignored) { in mDNSIsFileAndPrintSharingEnabled() argument
2 (void)ignored; in mDNSIsFileAndPrintSharingEnabled()
6 int mDNSAddToFirewall(const char* ignored, const char* also_ignored) { in mDNSAddToFirewall() argument
7 (void)ignored; in mDNSAddToFirewall()
/external/conscrypt/libcore-stub/src/main/java/libcore/java/security/
DCpuFeatures.java61 } catch (NoSuchMethodException ignored) { in isAESHardwareAccelerated()
62 } catch (SecurityException ignored) { in isAESHardwareAccelerated()
63 } catch (IllegalAccessException ignored) { in isAESHardwareAccelerated()
64 } catch (IllegalArgumentException ignored) { in isAESHardwareAccelerated()
102 } catch (IOException ignored) { in getFieldFromCpuinfo()
141 } catch (Exception ignored) { in getCpuFeaturesMac()
/external/python/cpython3/Modules/clinic/
Darraymodule.c.h18 array_array___copy__(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array___copy__() argument
143 array_array_buffer_info(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array_buffer_info() argument
173 array_array_byteswap(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array_byteswap() argument
191 array_array_reverse(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array_reverse() argument
256 array_array_tolist(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array_tolist() argument
340 array_array_tobytes(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array_tobytes() argument
360 array_array_tostring(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array_tostring() argument
415 array_array_tounicode(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array_tounicode() argument
433 array_array___sizeof__(arrayobject *self, PyObject *Py_UNUSED(ignored)) in array_array___sizeof__() argument
495 array_arrayiterator___reduce__(arrayiterobject *self, PyObject *Py_UNUSED(ignored)) in array_arrayiterator___reduce__() argument
D_pickle.c.h23 _pickle_Pickler_clear_memo(PicklerObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_Pickler_clear_memo() argument
50 _pickle_Pickler___sizeof__(PicklerObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_Pickler___sizeof__() argument
125 _pickle_PicklerMemoProxy_clear(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_PicklerMemoProxy_clear() argument
143 _pickle_PicklerMemoProxy_copy(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_PicklerMemoProxy_copy() argument
161 _pickle_PicklerMemoProxy___reduce__(PicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_PicklerMemoProxy___reduce__() argument
183 _pickle_Unpickler_load(UnpicklerObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_Unpickler_load() argument
240 _pickle_Unpickler___sizeof__(UnpicklerObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_Unpickler___sizeof__() argument
319 _pickle_UnpicklerMemoProxy_clear(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_UnpicklerMemoProxy_clear() argument
337 _pickle_UnpicklerMemoProxy_copy(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_UnpicklerMemoProxy_copy() argument
355 _pickle_UnpicklerMemoProxy___reduce__(UnpicklerMemoProxyObject *self, PyObject *Py_UNUSED(ignored)) in _pickle_UnpicklerMemoProxy___reduce__() argument
D_asynciomodule.c.h60 _asyncio_Future_result(FutureObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Future_result() argument
83 _asyncio_Future_exception(FutureObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Future_exception() argument
153 _asyncio_Future_cancel(FutureObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Future_cancel() argument
171 _asyncio_Future_cancelled(FutureObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Future_cancelled() argument
192 _asyncio_Future_done(FutureObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Future_done() argument
209 _asyncio_Future__repr_info(FutureObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Future__repr_info() argument
226 _asyncio_Future__schedule_callbacks(FutureObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Future__schedule_callbacks() argument
337 _asyncio_Task__repr_info(TaskObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Task__repr_info() argument
372 _asyncio_Task_cancel(TaskObj *self, PyObject *Py_UNUSED(ignored)) in _asyncio_Task_cancel() argument
D_ssl.c.h17 _ssl__SSLSocket_do_handshake(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_do_handshake() argument
96 _ssl__SSLSocket_shared_ciphers(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_shared_ciphers() argument
113 _ssl__SSLSocket_cipher(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_cipher() argument
130 _ssl__SSLSocket_version(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_version() argument
149 _ssl__SSLSocket_selected_npn_protocol(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_selected_npn_protocol() argument
170 _ssl__SSLSocket_selected_alpn_protocol(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_selected_alpn_protocol() argument
189 _ssl__SSLSocket_compression(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_compression() argument
241 _ssl__SSLSocket_pending(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_pending() argument
307 _ssl__SSLSocket_shutdown(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_shutdown() argument
327 _ssl__SSLSocket_tls_unique_cb(PySSLSocket *self, PyObject *Py_UNUSED(ignored)) in _ssl__SSLSocket_tls_unique_cb() argument
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
DRobolectricTestRunnerMultiApiTest.java104 assertThat(runListener.ignored).isEmpty(); in noConfig()
115 assertThat(runListener.ignored).isEmpty(); in classConfigWithSdkGroup()
127 assertThat(runListener.ignored).isEmpty(); in methodConfigWithSdkGroup()
139 assertThat(runListener.ignored).isEmpty(); in classConfigMinSdk()
151 assertThat(runListener.ignored).isEmpty(); in classConfigMaxSdk()
163 assertThat(runListener.ignored).isEmpty(); in classConfigWithMinSdkAndMaxSdk()
176 assertThat(runListener.ignored).isEmpty(); in methodConfigMinSdk()
188 assertThat(runListener.ignored).isEmpty(); in methodConfigMaxSdk()
200 assertThat(runListener.ignored).isEmpty(); in methodConfigWithMinSdkAndMaxSdk()
309 private List<String> ignored = new ArrayList<>();
[all …]
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
DRandomAccessFileOutputStreamTest.java65 } catch (Exception ignored) { in tearDown()
70 } catch (Exception ignored) { in tearDown()
110 } catch (Exception ignored) { in testWrite()
134 } catch (Exception ignored) { in testWriteArray()
141 } catch (Exception ignored) { in testWriteArray()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowHandlerThread.java50 } catch (InterruptedException ignored) { in getLooper()
74 } catch (NoSuchMethodException ignored) { in onLooperPrepared()
75 } catch (InvocationTargetException ignored) { in onLooperPrepared()
76 } catch (IllegalAccessException ignored) { in onLooperPrepared()
/external/curl/tests/
Dsymbol-scan.pl111 my $ignored=0;
125 $ignored++;
167 $ignored;
169 scalar(@syms)- $ignored;
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
DRealWebSocket.java70 } catch (IOException ignored) { in RealWebSocket()
174 } catch (IOException ignored) { in close()
186 } catch (IOException ignored) { in peerClose()
193 } catch (IOException ignored) { in peerClose()
206 } catch (IOException ignored) { in readerErrorClose()
213 } catch (IOException ignored) { in readerErrorClose()
/external/clang/test/Parser/
Dobjcxx11-attributes.mm34 [[int(), noreturn]]; // expected-warning {{unknown attribute 'int' ignored}} \
36 [[class, test(foo 'x' bar),,,]]; // expected-warning {{unknown attribute 'test' ignored}}\
37 // expected-warning {{unknown attribute 'class' ignored}}
40 expected-warning {{unknown attribute 'bitand' ignored}}
60 // expected-warning {{unknown attribute 'foo' ignored}}
63 // expected-warning {{unknown attribute 'used' ignored}}
/external/clang/test/SemaObjC/
Dblock-omitted-return-type.m13 …void (^simpleBlock)() = ^ _Nonnull { //expected-warning {{attribute '_Nonnull' ignored, because it…
19 …void (^simpleBlock3)() = ^ _Nonnull (void) { //expected-warning {{attribute '_Nonnull' ignored, b…
32 …))) _Nullable const (void) { // expected-warning {{attribute '_Nullable' ignored, because it canno…
33 …// expected-warning {{attribute '_Nonnull' ignored, because it cannot be applied to omitted return…
38 …28))) _Nonnull const (void) { // expected-warning {{attribute '_Nonnull' ignored, because it canno…

12345678910>>...66