Home
last modified time | relevance | path

Searched refs:bnum (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/npm/node_modules/semver/internal/
Didentifiers.js4 const bnum = numeric.test(b) constant
6 if (anum && bnum) {
12 : (anum && !bnum) ? -1
13 : (bnum && !anum) ? 1
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/3.2/bigint/
Dbigint_1.ts34 function func(bnum: bigint) {
36 bnum++;
38 return bnum;
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.7/9_numeric_separators/
D9_numeric_separators.ts26 const bnum = 0b10_01; constant
30 Assert.equal(9, bnum);
/third_party/python/Lib/
Dpdb.py558 bnum = len(bdb.Breakpoint.bpbynumber) - 1
561 bnum = int(arg)
565 self.commands_bnum = bnum
567 if bnum in self.commands:
568 old_command_defs = (self.commands[bnum],
569 self.commands_doprompt[bnum],
570 self.commands_silent[bnum])
573 self.commands[bnum] = []
574 self.commands_doprompt[bnum] = True
575 self.commands_silent[bnum] = False
[all …]
/third_party/node/tools/lint-md/
Dlint-md.mjs19682 const bnum = numeric.test(b); constant
19683 if (anum && bnum) {
19688 : (anum && !bnum) ? -1
19689 : (bnum && !anum) ? 1
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs1138 const bnum = numeric.test(b);
1139 if (anum && bnum) {
1143 return a === b ? 0 : anum && !bnum ? -1 : bnum && !anum ? 1 : a < b ? -1 : 1;