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 DTypeface_Delegate.java60 private final int mWeight; field in class:Typeface_Delegate
87 int weight = mWeight + ((mStyle & Font.BOLD) == 0 ? 0 : FontFamily_Delegate.BOLD_FONT_WEIGHT_DELTA);
156 delegate.mWeight));
217 mWeight = weight;
H A DFontFamily_Delegate.java95 int mWeight; field in class:FontFamily_Delegate.FontInfo
177 desiredStyle.mWeight = desiredWeight;
344 fontInfo.mWeight = font.isBold() ? BOLD_FONT_WEIGHT : DEFAULT_FONT_WEIGHT;
407 fontInfo.mWeight = weight;
414 int weight = fontInfo.mWeight;
419 if (font.mWeight == weight && font.mIsItalic == isItalic) {
431 int score = Math.abs(font1.mWeight - font2.mWeight);
449 int desiredWeight = outFont.mWeight;
450 int srcWeight = srcFont.mWeight;
[all...]

Completed in 225 milliseconds