Lines Matching refs:result
101 client.testI32(Math.pow(2, 30), function(result) { argument
102 assert.equal(result, Math.pow(2, 30));
106 const jqxhr = client.testI32(Math.pow(-2, 31), function(result) { argument
107 assert.equal(result, Math.pow(-2, 31));
111 jqxhr.success(function(result) { argument
112 assert.equal(result, Math.pow(-2, 31));
122 client.testI64(Math.pow(2, 52), function(result) { argument
123 assert.equal(result, Math.pow(2, 52));
128 client.testI64(Math.pow(-2, 52), function(result) { argument
129 assert.equal(result, Math.pow(-2, 52));
133 .success(function(result) { argument
135 assert.equal(result, Math.pow(-2, 52));
149 const dfd = client.testException('Xception', function(result) { argument