| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | reptest.cpp | 245 NoopReplaceable noop; in TestReplaceableClass() local 247 if((p=noop.clone())!=NULL) { in TestReplaceableClass() 252 if(!noop.hasMetaData()) { in TestReplaceableClass() 259 noop2=noop; in TestReplaceableClass() 267 NoopReplaceable noop3(noop); in TestReplaceableClass()
|
| /third_party/node/lib/internal/util/ |
| H A D | debuglog.js | 47 const noop = () => {}; 67 debugImpls[set] = noop;
|
| /third_party/node/deps/undici/src/lib/api/ |
| H A D | readable.js | 19 const noop = () => {} 178 : noop 189 .on('error', noop)
|
| /third_party/node/lib/internal/repl/ |
| H A D | history.js | 20 const noop = FunctionPrototype; 160 fs.close(repl._historyHandle, noop);
|
| /third_party/node/lib/internal/process/ |
| H A D | execution.js | 146 function noop() {} function 186 require('timers').setImmediate(noop);
|
| /third_party/mksh/ |
| H A D | emacsfn.h | 90 FN(noop, "no-op", 0) 137 FN(noop, "no-op", 0)
|
| /third_party/ffmpeg/libavcodec/ppc/ |
| H A D | h264chroma_template.c | 71 #define noop(a) a macro 165 CHROMA_MC8_ALTIVEC_CORE(v32ss, noop); in PREFIX_h264_chroma_mc8_altivec() 244 #undef noop macro
|
| /third_party/nghttp2/src/ |
| H A D | shrpx_live_check.cc | 112 read_(&LiveCheck::noop), 113 write_(&LiveCheck::noop), 154 read_ = write_ = &LiveCheck::noop; in disconnect() 702 int LiveCheck::noop() { return 0; } in noop() function in shrpx::LiveCheck
|
| H A D | shrpx_live_check.h | 65 int noop();
|
| H A D | shrpx_memcached_connection.cc | 106 do_read_(&MemcachedConnection::noop), 107 do_write_(&MemcachedConnection::noop), 148 do_read_ = do_write_ = &MemcachedConnection::noop; in disconnect() 729 int MemcachedConnection::noop() { return 0; } in noop() function in shrpx::MemcachedConnection
|
| H A D | shrpx_http_downstream_connection.h | 91 int noop();
|
| H A D | shrpx_http_downstream_connection.cc | 212 on_read_(&HttpDownstreamConnection::noop), 213 on_write_(&HttpDownstreamConnection::noop), 214 signal_write_(&HttpDownstreamConnection::noop), 1312 on_write_ = &HttpDownstreamConnection::noop; in write_clear() 1448 on_write_ = &HttpDownstreamConnection::noop; in write_tls() 1602 int HttpDownstreamConnection::noop() { return 0; } in noop() function in shrpx::HttpDownstreamConnection
|
| H A D | shrpx_client_handler.h | 67 int noop();
|
| H A D | shrpx_memcached_connection.h | 130 int noop();
|
| H A D | shrpx_http2_session.h | 153 int noop();
|
| /third_party/node/test/parallel/ |
| H A D | test-assert.js | 269 const noop = () => {}; 271 () => { a.throws((noop)); }, 281 () => { a.throws(noop, TypeError); }, 290 () => { a.throws(noop, 'fhqwhgads'); }, 299 () => { a.throws(noop, TypeError, 'fhqwhgads'); }, 309 a.throws(noop);
|
| /third_party/node/lib/internal/cluster/ |
| H A D | child.js | 24 const noop = FunctionPrototype; 170 fakeHandle = setInterval(noop, TIMEOUT_MAX);
|
| /third_party/node/lib/internal/console/ |
| H A D | constructor.js | 300 // Add and later remove a noop error handler to catch synchronous 303 stream.once('error', noop); 313 stream.removeListener('error', noop); 370 // we are only adding noop if there is no one else listening for 'error' 372 stream.once('error', noop); 680 function noop() {} function
|
| /third_party/node/test/fixtures/wpt/resources/webidl2/lib/ |
| H A D | writer.js | 5 const noop = str => str; 9 if (!opt[o]) opt[o] = noop;
|
| /third_party/python/Lib/test/test_asyncio/ |
| H A D | test_events.py | 2159 def noop(*args, **kwargs): function 2209 h = asyncio.Handle(noop, (1, 2), self.loop) 2210 filename, lineno = test_utils.get_function_source(noop) 2212 '<Handle noop(1, 2) at %s:%s>' 2221 cb = types.coroutine(noop) 2224 '<Handle noop() at %s:%s>' 2228 cb = functools.partial(noop, 1, 2) 2230 regex = (r'^<Handle noop\(1, 2\)\(3\) at %s:%s>$' 2235 cb = functools.partial(noop, x=1) 2237 regex = (r'^<Handle noop\( [all...] |
| /third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
| H A D | processor.js | 9 this.func = func || function noop() {};
|
| /third_party/python/Doc/includes/ |
| H A D | mp_pool.py | 34 def noop(x): function
|
| /third_party/mesa3d/src/mapi/ |
| H A D | mapi_abi.py | 397 """Return the noop functions.""" 419 noop = '%s\n{\n%s\n%s\n}' % (proto, stmt1, stmt2) 421 noop = '%s\n{\n%s\n}' % (proto, stmt1) 423 noops.append(noop) 428 """Return an initializer for the noop dispatch table.""" 594 self.prefix_noop = 'noop'
|
| /third_party/mesa3d/src/gallium/winsys/amdgpu/drm/ |
| H A D | amdgpu_cs.c | 257 if (cs->noop) in amdgpu_cs_get_next_fence() 980 cs->noop = ctx->ws->noop_cs; in amdgpu_cs_create() 1490 bool noop = false; in amdgpu_cs_submit_ib() local 1602 if (acs->noop) { in amdgpu_cs_submit_ib() 1610 noop = true; in amdgpu_cs_submit_ib() 1618 if (!noop) { in amdgpu_cs_submit_ib() 1643 } else if (!noop) { in amdgpu_cs_submit_ib() 1665 if (r || noop) in amdgpu_cs_submit_ib()
|
| H A D | amdgpu_cs.h | 158 bool noop; member
|