Home
last modified time | relevance | path

Searched refs:isFunction (Results 1 – 25 of 121) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyWasmObjectWriter.cpp77 assert(SymA.isFunction()); in getRelocType()
90 if (SymA.isFunction()) in getRelocType()
98 if (SymA.isFunction()) in getRelocType()
104 if (SymA.isFunction()) in getRelocType()
/third_party/typescript/tests/baselines/reference/
DnarrowFromAnyWithTypePredicate.types5 declare function isFunction(x): x is Function;
6 >isFunction : (x: any) => x is Function
26 if (isFunction(x)) { // 'any' is not narrowed when target type is 'Function'
27 >isFunction(x) : boolean
28 >isFunction : (x: any) => x is Function
DnarrowFromAnyWithTypePredicate.symbols5 declare function isFunction(x): x is Function;
6 >isFunction : Symbol(isFunction, Decl(narrowFromAnyWithTypePredicate.ts, 0, 19))
35 if (isFunction(x)) { // 'any' is not narrowed when target type is 'Function'
36 >isFunction : Symbol(isFunction, Decl(narrowFromAnyWithTypePredicate.ts, 0, 19))
DnarrowFromAnyWithTypePredicate.js3 declare function isFunction(x): x is Function;
10 if (isFunction(x)) { // 'any' is not narrowed when target type is 'Function'
39 if (isFunction(x)) { // 'any' is not narrowed when target type is 'Function'
DconditionalTypes2.types66 function isFunction<T>(value: T): value is Extract<T, Function> {
67 >isFunction : <T>(value: T) => value is Extract<T, Function>
81 if (isFunction(item)) {
82 >isFunction(item) : boolean
83 >isFunction : <T>(value: T) => value is Extract<T, Function>
98 if (isFunction(x)) {
99 >isFunction(x) : boolean
100 >isFunction : <T>(value: T) => value is Extract<T, Function>
117 if (isFunction(x)) {
118 >isFunction(x) : boolean
[all …]
DconditionalTypes2.js30 function isFunction<T>(value: T): value is Extract<T, Function> {
35 if (isFunction(item)) {
42 if (isFunction(x)) {
49 if (isFunction(x)) {
117 if (isFunction(value)) {
263 function isFunction(value) { function
267 if (isFunction(item)) {
273 if (isFunction(x)) {
279 if (isFunction(x)) {
318 if (isFunction(value)) {
[all …]
/third_party/node/deps/npm/node_modules/core-util-is/lib/
Dutil.js88 function isFunction(arg) { function
91 exports.isFunction = isFunction;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTOModule.cpp277 info.isFunction = false; in addObjCClass()
291 info.isFunction = false; in addObjCClass()
316 info.isFunction = false; in addObjCCategory()
335 info.isFunction = false; in addObjCClassRef()
415 bool isFunction) { in addDefinedSymbol() argument
421 if (isFunction) { in addDefinedSymbol()
466 info.isFunction = isFunction; in addDefinedSymbol()
498 info.isFunction = false; in addAsmGlobalSymbol()
506 if (info.isFunction) in addAsmGlobalSymbol()
531 info.isFunction = false; in addAsmGlobalSymbolUndef()
[all …]
/third_party/node/deps/npm/node_modules/object-keys/
Dindex.js79 var isFunction = toStr.call(object) === '[object Function]';
84 if (!isObject && !isFunction && !isArguments) {
88 var skipProto = hasProtoEnumBug && isFunction;
/third_party/typescript/tests/cases/conformance/types/any/
DnarrowFromAnyWithTypePredicate.ts2 declare function isFunction(x): x is Function; function
9 if (isFunction(x)) { // 'any' is not narrowed when target type is 'Function'
/third_party/node/deps/npm/node_modules/es6-promisify/dist/
Dpromise.js10 function isFunction(x) { function
58 return isFunction(resolve);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
DItaniumDemangle.cpp401 if (!isFunction()) in getFunctionBaseName()
431 if (!isFunction()) in getFunctionDeclContextName()
476 if (!isFunction()) in getFunctionName()
484 if (!isFunction()) in getFunctionParameters()
503 if (!isFunction()) in getFunctionReturnType()
527 if (!isFunction()) in hasFunctionQualifiers()
565 bool ItaniumPartialDemangler::isFunction() const { in isFunction() function in ItaniumPartialDemangler
578 return !isFunction() && !isSpecialName(); in isData()
/third_party/node/deps/npm/node_modules/core-util-is/
Dtest.js57 assert.equal(t.isFunction(null), false);
58 assert.equal(t.isFunction({ }), false);
59 assert.equal(t.isFunction(function() {}), true);
/third_party/typescript/tests/cases/conformance/types/conditional/
DconditionalTypes2.ts32 function isFunction<T>(value: T): value is Extract<T, Function> { function
37 if (isFunction(item)) {
44 if (isFunction(x)) {
51 if (isFunction(x)) {
119 if (isFunction(value)) {
/third_party/node/deps/npm/node_modules/lodash._getnative/
Dindex.js77 function isFunction(value) { function
131 if (isFunction(value)) {
/third_party/node/deps/npm/node_modules/define-properties/
Dindex.js10 var isFunction = function (fn) { function
30 if (name in object && (!isFunction(predicate) || !predicate())) {
/third_party/node/deps/npm/node_modules/es6-promise/lib/es6-promise/
Dpromise.js2 isFunction
413 if ( isFunction(callback) ) {
D-internal.js3 isFunction
81 } else if (isFunction(then)) {
171 let hasCallback = isFunction(callback),
/third_party/typescript_eslint/packages/experimental-utils/src/ast-utils/
Dpredicates.ts75 function isFunction( function
127 return isFunction(node) || isFunctionType(node);
222 isFunction,
/third_party/node/test/parallel/
Dtest-util.js146 assert.strictEqual(util.isFunction(() => {}), true);
147 assert.strictEqual(util.isFunction(function() {}), true);
148 assert.strictEqual(util.isFunction(), false);
149 assert.strictEqual(util.isFunction('string'), false);
/third_party/node/deps/npm/node_modules/lodash._createset/
Dindex.js197 function isFunction(value) { function
257 var pattern = (isFunction(value) || isHostObject(value)) ? reIsNative : reIsHostCtor;
/third_party/node/deps/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/
D_stream_writable.js194 if (util.isFunction(encoding)) {
204 if (!util.isFunction(cb))
416 if (util.isFunction(chunk)) {
420 } else if (util.isFunction(encoding)) {
/third_party/typescript/tests/cases/conformance/types/unknown/
DunknownType1.ts73 declare function isFunction(x: unknown): x is Function; function
82 if (isFunction(x)) {
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/
DQrCode.java229 private boolean[][] isFunction; field in QrCode
259 isFunction = new boolean[size][size]; in QrCode()
266 isFunction = null; in QrCode()
401 isFunction[y][x] = true; in setFunctionModule()
465 if (!isFunction[y][x] && i < data.length * 8) { in drawCodewords()
500 modules[y][x] ^= invert & !isFunction[y][x]; in applyMask()
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dno-implied-eval.ts102 function isFunction(node: TSESTree.Node): boolean { function
158 if (EVAL_LIKE_METHODS.has(calleeName) && !isFunction(handler)) {

12345