Home
last modified time | relevance | path

Searched refs:isCallable (Results 1 – 18 of 18) sorted by relevance

/third_party/node/deps/npm/node_modules/is-callable/
Dtest.js6 var isCallable = require('./'); variable
52 st.notOk(isCallable(), 'undefined is not callable');
53 st.notOk(isCallable(null), 'null is not callable');
54 st.notOk(isCallable(false), 'false is not callable');
55 st.notOk(isCallable(true), 'true is not callable');
59 t.notOk(isCallable([]), 'array is not callable');
60 t.notOk(isCallable({}), 'object is not callable');
61 t.notOk(isCallable(/a/g), 'regex literal is not callable');
62 t.notOk(isCallable(new RegExp('a', 'g')), 'regex object is not callable');
63 t.notOk(isCallable(new Date()), 'new Date() is not callable');
[all …]
DREADME.md18 var isCallable = require('is-callable');
21 assert.notOk(isCallable(undefined));
22 assert.notOk(isCallable(null));
23 assert.notOk(isCallable(false));
24 assert.notOk(isCallable(true));
25 assert.notOk(isCallable([]));
26 assert.notOk(isCallable({}));
27 assert.notOk(isCallable(/a/g));
28 assert.notOk(isCallable(new RegExp('a', 'g')));
29 assert.notOk(isCallable(new Date()));
[all …]
Dindex.js29 module.exports = function isCallable(value) { function
/third_party/node/deps/npm/node_modules/es-to-primitive/
Des2015.js6 var isCallable = require('is-callable'); variable
21 if (isCallable(method)) {
34 if (!isCallable(func)) {
Des5.js7 var isCallable = require('is-callable'); variable
23 if (isCallable(O[methods[i]])) {
/third_party/node/deps/npm/node_modules/es-abstract/
DREADME.md23 assert(ES.isCallable(function () {}));
24 assert(!ES.isCallable(/a/g));
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DObjectLinkingLayer.cpp106 if (Sym->isCallable()) in notifyResolved()
125 if (Sym->isCallable()) in notifyResolved()
DLazyReexports.cpp204 assert(KV.second.AliasFlags.isCallable() && in extractFlags()
DCompileOnDemandLayer.cpp147 if (Flags.isCallable()) in emit()
DCore.cpp68 if (PrintCallable && Flags.isCallable()) in flagsMatchCLOpts()
72 if (PrintData && !Flags.isCallable()) in flagsMatchCLOpts()
168 if (Flags.isCallable()) in operator <<()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DJITSymbol.h147 bool isCallable() const { return (Flags & Callable) == Callable; } in isCallable() function
/third_party/python/Doc/library/
D2to3.rst353 ``operator.isCallable(obj)`` ``callable(obj)``
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h413 bool isCallable() const { return IsCallable; } in isCallable() function
/third_party/python/Doc/whatsnew/
D3.0.rst643 :func:`sequenceIncludes` and :func:`isCallable`.
827 ``isinstance(f, collections.Callable)``. The :func:`operator.isCallable`
D2.7.rst199 * :func:`operator.isCallable` and :func:`operator.sequenceIncludes`,
/third_party/python/Misc/NEWS.d/
D3.7.0a3.rst541 Updates 2to3 to convert from operator.isCallable(obj) to callable(obj).
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp123464 virtual bool isCallable(JSObject* obj) const;
123849 virtual bool isCallable(JSObject* obj) const override;
/third_party/python/Misc/
DHISTORY17318 __div__, __idiv__, isCallable, sequenceIncludes.