OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Calculator
(Results
1 - 2
of
2
) sorted by null
/external/v8/test/mjsunit/
top-level-assignments.js
82
function
Calculator
(x, y) {
87
Calculator
.prototype.sum = function() { return this.x + this.y; };
88
Calculator
.prototype.difference = function() { return this.x - this.y; };
89
Calculator
.prototype.product = function() { return this.x * this.y; };
90
Calculator
.prototype.quotient = function() { return this.x / this.y; };
92
var calc = new
Calculator
(20, 10);
/packages/apps/Calculator/src/com/android/calculator2/
Calculator.java
39
public class
Calculator
extends Activity implements PanelSwitcher.Listener, Logic.Listener,
54
private static final String LOG_TAG = "
Calculator
";
Completed in 64 milliseconds