/third_party/python/Lib/test/ |
H A D | test_smtplib.py | 311 self.assertEqual(smtp.noop(), expected) 1234 code, message = smtp.noop() 1244 smtp.noop() 1256 smtp.noop() 1267 smtp.noop() 1277 smtp.noop() 1295 smtp.noop()
|
H A D | test_poplib.py | 318 self.assertOK(self.client.noop()) 441 self.assertTrue(self.client.noop().startswith(b'+OK'))
|
H A D | test_threading.py | 944 def noop(): pass function 946 threading.Thread(target=noop).start()
|
/third_party/elfutils/src/ |
H A D | findtextrel.c | 178 noop (void *arg __attribute__ ((unused))) in noop() function 464 tdestroy (knownsrcs, noop); in process_file()
|
/third_party/node/deps/npm/node_modules/graceful-fs/ |
H A D | graceful-fs.js | 22 function noop () {} 32 var debug = noop
|
/third_party/node/lib/ |
H A D | _http_server.js | 835 const noop = () => {}; 871 if (this.listenerCount('error', noop) === 0) { 872 this.on('error', noop);
|
H A D | _tls_wrap.js | 120 const noop = FunctionPrototype; 853 ssl.onhandshakestart = noop;
|
H A D | net.js | 148 const noop = () => {}; 352 self._handle.onread = noop; 839 this._handle.onread = noop;
|
/third_party/node/lib/internal/test_runner/ |
H A D | test.js | 71 const noop = FunctionPrototype; 215 fn = noop; 300 fn = noop;
|
/third_party/node/test/common/ |
H A D | index.js | 53 const noop = () => {}; 432 fn = noop; 434 fn = noop;
|
/third_party/nghttp2/src/ |
H A D | nghttp.h | 224 int noop();
|
H A D | shrpx_client_handler.cc | 115 int ClientHandler::noop() { return 0; } in noop() function in shrpx::ClientHandler 479 write_ = &ClientHandler::noop; in ClientHandler()
|
H A D | shrpx_http2_session.cc | 204 read_ = write_ = &Http2Session::noop; 257 read_ = write_ = &Http2Session::noop; in disconnect() 1969 int Http2Session::noop() { return 0; } in noop() function in shrpx::Http2Session
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_blit.c | 397 bool noop = apply_blit_scissor(&info->scissor, in iris_blit() local 401 if (noop) in iris_blit()
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | genX_gpu_memcpy.c | 270 anv_batch_emit(state->batch, GENX(MI_NOOP), noop); in emit_so_memcpy_fini()
|
/third_party/python/Lib/ |
H A D | poplib.py | 64 NOOP noop() 264 def noop(self): member in POP3
|
H A D | imaplib.py | 376 typ, dat = self.noop() # Prod server for response 676 def noop(self): member in IMAP4 679 (typ, [data]) = <instance>.noop()
|
H A D | smtplib.py | 523 def noop(self): member in SMTP 524 """SMTP 'noop' command -- doesn't do anything :>""" 525 return self.docmd("noop")
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_blit.c | 473 bool noop = apply_blit_scissor(&info->scissor, in crocus_blit() local 477 if (noop) in crocus_blit()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
H A D | BasicTest.java | 2941 Normalizer2 noop = Norm2AllModes.NOOP_NORMALIZER2; in TestNoopNormalizer2() 2942 assertEquals("noop.normalizeSecondAndAppend()", "ä\u0327", in TestNoopNormalizer2() 2943 noop.normalizeSecondAndAppend(new StringBuilder("ä"), "\u0327").toString()); in TestNoopNormalizer2() 2944 assertEquals("noop.getDecomposition()", null, noop.getDecomposition('ä')); in TestNoopNormalizer2() 2945 assertTrue("noop.hasBoundaryAfter()", noop.hasBoundaryAfter(0x0308)); in TestNoopNormalizer2() 2946 assertTrue("noop.isInert()", noop.isInert(0x0308)); in TestNoopNormalizer2()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
H A D | BasicTest.java | 2938 Normalizer2 noop = Norm2AllModes.NOOP_NORMALIZER2; in TestNoopNormalizer2() 2939 assertEquals("noop.normalizeSecondAndAppend()", "ä\u0327", in TestNoopNormalizer2() 2940 noop.normalizeSecondAndAppend(new StringBuilder("ä"), "\u0327").toString()); in TestNoopNormalizer2() 2941 assertEquals("noop.getDecomposition()", null, noop.getDecomposition('ä')); in TestNoopNormalizer2() 2942 assertTrue("noop.hasBoundaryAfter()", noop.hasBoundaryAfter(0x0308)); in TestNoopNormalizer2() 2943 assertTrue("noop.isInert()", noop.isInert(0x0308)); in TestNoopNormalizer2()
|
/foundation/arkui/ace_engine/advanced_ui_component/popup/interfaces/ |
H A D | popup.js | 188 const noop = () => { 240 this.onClose = noop;
|
/third_party/mesa3d/src/gallium/auxiliary/driver_noop/ |
H A D | noop_pipe.c | 37 DEBUG_GET_ONCE_BOOL_OPTION(noop, "GALLIUM_NOOP", false)
|
/third_party/skia/third_party/skcms/ |
H A D | skcms.cc | 138 // By storing f=K-1, those old unusued f=0 values now mean K=1, a noop scale factor. 2533 const OpAndArg noop = { Op_load_a8/*doesn't matter*/, nullptr }; 2539 return noop; 2543 case Bad: return noop;
|
/third_party/python/Lib/unittest/test/ |
H A D | test_loader.py | 1580 def noop(arg): function 1586 setattr(Foo, 'test_partial', functools.partial(noop, None))
|