Searched refs:mWeight (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
H A DMeteringRectangle.java78 private final int mWeight; field in class:MeteringRectangle
96 mWeight = checkArgumentInRange(
120 mWeight = checkArgumentNonnegative(meteringWeight, "meteringWeight must be nonnegative");
141 mWeight = checkArgumentNonnegative(meteringWeight, "meteringWeight must be nonnegative");
186 return mWeight;
247 && mWeight == other.mWeight);
255 return HashCodeHelpers.hashCode(mX, mY, mWidth, mHeight, mWeight);
267 return String.format("(x:%d, y:%d, w:%d, h:%d, wt:%d)", mX, mY, mWidth, mHeight, mWeight);
/frameworks/opt/net/voip/src/jni/rtp/
H A DEchoSuppressor.h55 float mWeight; member in class:EchoSuppressor
H A DEchoSuppressor.cpp82 mWeight = 1.0f / (mRecordLength * mWindowSize);
167 float varY = mY2Sum - mWeight * mYSum * mYSum;
169 float cov = mXYSums[i] - mWeight * mXSums[i] * mYSum;
171 float varXi = mX2Sums[i] - mWeight * mXSums[i] * mXSums[i];
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DFontFamily_Delegate.java70 int mWeight; field in class:FontFamily_Delegate.FontInfo
152 desiredStyle.mWeight = desiredWeight;
312 fontInfo.mWeight = weight;
319 int weight = fontInfo.mWeight;
324 if (font.mWeight == weight && font.mIsItalic == isItalic) {
336 int score = Math.abs(font1.mWeight - font2.mWeight);
354 int desiredWeight = outFont.mWeight;
355 int srcWeight = srcFont.mWeight;
371 outFont.mWeight
[all...]
H A DTypeface_Delegate.java60 private final int mWeight; field in class:Typeface_Delegate
90 int weight = mWeight + ((mStyle & Font.BOLD) == 0 ? 0 : FontFamily_Delegate.BOLD_FONT_WEIGHT_DELTA);
147 delegate.mWeight));
208 mWeight = weight;

Completed in 127 milliseconds