Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:promiseFn
(Results
1 - 2
of
2
) sorted by relevance
/third_party/node/test/parallel/
H
A
D
test-util-callbackify.js
40
function
promiseFn
() {
function
44
const cbPromiseFn = callbackify(
promiseFn
);
92
function
promiseFn
() {
96
Object.defineProperty(
promiseFn
, 'name', {
103
const cbPromiseFn = callbackify(
promiseFn
);
104
assert.strictEqual(
promiseFn
.name, obj);
166
function
promiseFn
(arg) {
171
Object.defineProperty(
promiseFn
, 'length', {
178
const cbPromiseFn = callbackify(
promiseFn
);
179
assert.strictEqual(
promiseFn
[all...]
/third_party/node/lib/
H
A
D
assert.js
773
async function waitForActual(
promiseFn
) {
775
if (typeof
promiseFn
=== 'function') {
776
// Return a rejected promise if `
promiseFn
` throws synchronously.
777
resultPromise =
promiseFn
();
781
'
promiseFn
', resultPromise);
783
} else if (checkIsPromise(
promiseFn
)) {
784
resultPromise =
promiseFn
;
787
'
promiseFn
', ['Function', 'Promise'],
promiseFn
);
896
* Expects the function `
promiseFn
` t
[all...]
Completed in 2 milliseconds