Searched refs:mP (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/awt/com/android/internal/awt/
H A DAndroidGraphics2D.java94 public static Paint mP; field in class:AndroidGraphics2D
134 mP = p;
289 if (mP == null) {
290 mP = new Paint();
292 Paint.Style tmp = mP.getStyle();
293 mP.setStyle(Paint.Style.STROKE);
294 mC.drawPath(getPath(s), mP);
295 mP.setStyle(tmp);
336 if (mP == null) {
337 mP
[all...]
/frameworks/base/core/java/android/hardware/
H A DGeomagneticField.java218 * legendre.mP[n][m]
225 * legendre.mP[n][m]
339 public final float[][] mP; field in class:GeomagneticField.LegendreTable
341 // Derivative of mP, with respect to theta.
359 mP = new float[maxN + 1][];
361 mP[0] = new float[] { 1.0f };
364 mP[n] = new float[n + 1];
368 mP[n][m] = sin * mP[n - 1][m - 1];
369 mPDeriv[n][m] = cos * mP[
[all...]

Completed in 54 milliseconds