Searched defs:sweep (Results 1 - 8 of 8) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DMatrixUtils.java72 private static void sweep(final int row, final float[][] squareMatrix0, method in class:MatrixUtils
115 sweep(i, squareMatrix, inverseMatrix, size);
/packages/apps/Camera/src/com/android/camera/
H A DPieController.java87 public void addItem(String prefKey, float center, float sweep) { argument
102 // use center and sweep to determine layout
103 item.setFixedSlice(center, sweep);
/packages/apps/Settings/src/com/android/settings/widget/
H A DChartView.java134 protected void layoutSweep(ChartSweepView sweep) { argument
138 layoutSweep(sweep, parentRect, childRect);
139 sweep.layout(childRect.left, childRect.top, childRect.right, childRect.bottom);
142 protected void layoutSweep(ChartSweepView sweep, Rect parentRect, Rect childRect) { argument
143 final Rect sweepMargins = sweep.getMargins();
145 // sweep is always placed along specific dimension
146 if (sweep.getFollowAxis() == ChartSweepView.VERTICAL) {
147 parentRect.top += sweepMargins.top + (int) sweep.getPoint();
151 Gravity.apply(SWEEP_GRAVITY, parentRect.width(), sweep.getMeasuredHeight(),
155 parentRect.left += sweepMargins.left + (int) sweep
[all...]
H A DChartDataUsageView.java98 final ChartSweepView sweep = (ChartSweepView) msg.obj;
99 updateVertAxisBounds(sweep);
102 // we keep dispatching repeating updates until sweep is dropped
103 sendUpdateAxisDelayed(sweep, true);
244 // since we just changed axis, make sweep recalculate its value
284 private void sendUpdateAxisDelayed(ChartSweepView sweep, boolean force) { argument
285 if (force || !mHandler.hasMessages(MSG_UPDATE_AXIS, sweep)) {
287 mHandler.obtainMessage(MSG_UPDATE_AXIS, sweep), DELAY_MILLIS);
291 private void clearUpdateAxisDelayed(ChartSweepView sweep) { argument
292 mHandler.removeMessages(MSG_UPDATE_AXIS, sweep);
[all...]
H A DChartSweepView.java101 public void onSweep(ChartSweepView sweep, boolean sweepDone); argument
102 public void requestEdit(ChartSweepView sweep); argument
217 public void setSweepDrawable(Drawable sweep, int color) { argument
223 if (sweep != null) {
224 sweep.setCallback(this);
225 if (sweep.isStateful()) {
226 sweep.setState(getDrawableState());
228 sweep.setVisible(getVisibility() == VISIBLE, false);
229 mSweep = sweep;
232 sweep
[all...]
/packages/apps/Browser/src/com/android/browser/view/
H A DPieItem.java35 private float sweep; field in class:PieItem
115 sweep = sw;
129 return sweep;
/packages/apps/Camera/src/com/android/camera/ui/
H A DPieItem.java41 private float sweep; field in class:PieItem
136 sweep = sw;
141 public void setFixedSlice(float center, float sweep) { argument
143 this.sweep = sweep;
159 return sweep;
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
H A DPieItem.java40 private float sweep; field in class:PieItem
135 sweep = sw;
140 public void setFixedSlice(float center, float sweep) { argument
142 this.sweep = sweep;
158 return sweep;

Completed in 141 milliseconds