HomeSort by relevance Sort by last modified time
    Searched refs:formula (Results 1 - 25 of 50) sorted by null

1 2

  /packages/apps/ExactCalculator/src/com/android/calculator2/
DragController.java 80 // There is something in the formula field. There may or may not be
86 public void setDisplayFormula(CalculatorFormula formula) {
87 mDisplayFormula = formula;
114 final AlignedTextView formula = vh.getFormula(); local
122 mAnimationController.initializeScales(formula, result);
124 mAnimationController.initializeColorAnimators(formula, result);
126 mAnimationController.initializeFormulaTranslationX(formula);
128 mAnimationController.initializeFormulaTranslationY(formula, result);
140 formula.setScaleX(mAnimationController.getFormulaScale(yFraction));
141 formula.setScaleY(mAnimationController.getFormulaScale(yFraction))
    [all...]
HistoryItem.java 32 public HistoryItem(long evaluatorIndex, long millis, Spannable formula) {
35 mFormula = formula;
HistoryFragment.java 187 (CalculatorFormula) getActivity().findViewById(R.id.formula));
Calculator.java 17 // TODO: Copy & more general paste in formula? Note that this requires
18 // great care: Currently the text version of a displayed formula
19 // is not directly useful for re-evaluating the formula later, since
22 // formula window, we may eventually want to support generation of a
100 INPUT, // Result and formula both visible, no evaluation requested,
109 RESULT, // Result displayed, formula invisible.
110 // If we are in RESULT state, the formula was evaluated without
112 // The current formula is now also the last history entry.
113 ERROR // Error displayed: Formula visible, result shows error message.
376 mFormulaText = (CalculatorFormula) findViewById(R.id.formula);
887 SpannableStringBuilder formula local
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug453.go 12 func formula() float32 { func
34 x := formula()
  /prebuilts/go/linux-x86/test/fixedbugs/
bug453.go 12 func formula() float32 { func
34 x := formula()
  /external/skia/experimental/docs/
exampleSlides.js 381 "params":"target", "formula":"alpha(value, params)" }
451 { "ref":"sectorXY1", "target":"draw.y", "formula":260 },
457 "formula":"params.center.x + params.radius * Math.cos(value)"
461 "formula":"params.center.y + params.radius * Math.sin(value)"
467 { "ref":"'sectorXY' + i", "target":"draw.y", "formula":260 },
490 "target":"draw.y", "formula":260 + 1 * 25},
496 "formula":"interp_paths(value, params)"
501 "target":"draw.y", "formula":260 + 2 * 25},
507 "formula":"interp_paths(value, params)"
512 "target":"draw.y", "formula":"260 + i * 25" }
    [all...]
animationCommon.js 161 assert('range' == p || 'target' == p || 'formula' == p || 'params' == p);
166 if ('number' == typeof(action.formula)) {
167 targetObject[targetField] = action.formula;
192 assert('formula' in action && 'string' == typeof(action.formula));
194 action.func = new Function('value', 'params', "return " + action.formula);