Searched refs:mWeight (Results 1 - 7 of 7) 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/base/libs/hwui/tests/macrobench/
H A DTestSceneRunner.cpp44 ModifiedMovingAverage(int weight) : mWeight(weight) {}
50 mAverage = (((mWeight - 1) * mAverage) + today) / mWeight;
61 int mWeight; member in class:ModifiedMovingAverage
/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.java95 int mWeight; field in class:FontFamily_Delegate.FontInfo
177 desiredStyle.mWeight = desiredWeight;
346 fontInfo.mWeight = font.isBold() ? BOLD_FONT_WEIGHT : DEFAULT_FONT_WEIGHT;
418 fontInfo.mWeight = weight;
425 int weight = fontInfo.mWeight;
432 if (font.mWeight == weight && font.mIsItalic == isItalic) {
444 int score = Math.abs(font1.mWeight - font2.mWeight);
462 int desiredWeight = outFont.mWeight;
463 int srcWeight = srcFont.mWeight;
[all...]
H A DTypeface_Delegate.java62 private final int mWeight; field in class:Typeface_Delegate
89 int weight = mWeight + ((mStyle & Font.BOLD) == 0 ? 0 : FontFamily_Delegate.BOLD_FONT_WEIGHT_DELTA);
158 delegate.mWeight));
230 mWeight = weight;
/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java150 private int mWeight; field in class:ShortcutInfo
191 mWeight = b.mWeight;
239 mWeight = source.mWeight;
291 if (source.mWeight != 0) {
292 mWeight = source.mWeight;
346 private int mWeight; field in class:ShortcutInfo.Builder
453 mWeight
[all...]

Completed in 155 milliseconds