Home
last modified time | relevance | path

Searched refs:noop (Results 26 - 50 of 91) sorted by relevance

1234

/third_party/icu/icu4c/source/test/intltest/
H A Dreptest.cpp245 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 Ddebuglog.js47 const noop = () => {};
67 debugImpls[set] = noop;
/third_party/node/deps/undici/src/lib/api/
H A Dreadable.js19 const noop = () => {}
178 : noop
189 .on('error', noop)
/third_party/node/lib/internal/repl/
H A Dhistory.js20 const noop = FunctionPrototype;
160 fs.close(repl._historyHandle, noop);
/third_party/node/lib/internal/process/
H A Dexecution.js146 function noop() {} function
186 require('timers').setImmediate(noop);
/third_party/mksh/
H A Demacsfn.h90 FN(noop, "no-op", 0)
137 FN(noop, "no-op", 0)
/third_party/ffmpeg/libavcodec/ppc/
H A Dh264chroma_template.c71 #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 Dshrpx_live_check.cc112 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 Dshrpx_live_check.h65 int noop();
H A Dshrpx_memcached_connection.cc106 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 Dshrpx_http_downstream_connection.h91 int noop();
H A Dshrpx_http_downstream_connection.cc212 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 Dshrpx_client_handler.h67 int noop();
H A Dshrpx_memcached_connection.h130 int noop();
H A Dshrpx_http2_session.h153 int noop();
/third_party/node/test/parallel/
H A Dtest-assert.js269 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 Dchild.js24 const noop = FunctionPrototype;
170 fakeHandle = setInterval(noop, TIMEOUT_MAX);
/third_party/node/lib/internal/console/
H A Dconstructor.js300 // 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 Dwriter.js5 const noop = str => str;
9 if (!opt[o]) opt[o] = noop;
/third_party/python/Lib/test/test_asyncio/
H A Dtest_events.py2159 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 Dprocessor.js9 this.func = func || function noop() {};
/third_party/python/Doc/includes/
H A Dmp_pool.py34 def noop(x): function
/third_party/mesa3d/src/mapi/
H A Dmapi_abi.py397 """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 Damdgpu_cs.c257 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 Damdgpu_cs.h158 bool noop; member

Completed in 19 milliseconds

1234