Searched refs:outer (Results 1 – 25 of 28) sorted by relevance
12
243 BackgroundHandler(WeakReference<AppEntryListManager> outer, Looper looper) { in BackgroundHandler() argument245 mOuter = outer; in BackgroundHandler()250 AppEntryListManager outer = mOuter.get(); in handleMessage() local251 if (outer == null) { in handleMessage()256 outer.loadInfo(outer.mSession.getAllApps()); in handleMessage()257 outer.mMainHandler.sendEmptyMessage(MainHandler.MSG_INFO_UPDATED); in handleMessage()261 outer.loadInfo(Collections.singletonList(entry)); in handleMessage()262 outer.mMainHandler.sendEmptyMessage(MainHandler.MSG_INFO_UPDATED); in handleMessage()273 MainHandler(WeakReference<AppEntryListManager> outer) { in MainHandler() argument274 mOuter = outer; in MainHandler()[all …]
122 public static Point calculateCenterPosition(Point outer, Point inner, boolean alignStart,124 if (inner.x > outer.x || inner.y > outer.y) {126 + " completely within the outer rectangle " + outer + ".");132 relativePosition.x = isRtl ? outer.x - inner.x : 0;134 relativePosition.x = Math.round((outer.x - inner.x) / 2f);136 relativePosition.y = Math.round((outer.y - inner.y) / 2f);148 public static float calculateMinZoom(Point outer, Point inner) { in calculateMinZoom() argument150 if (inner.x / (float) inner.y > outer.x / (float) outer.y) { in calculateMinZoom()151 minZoom = inner.x / (float) outer.x; in calculateMinZoom()153 minZoom = inner.y / (float) outer.y; in calculateMinZoom()[all …]
32 private RectF outer; field in BoundedRect38 outer = new RectF(outerRect); in BoundedRect()48 outer = new RectF(outerRect); in BoundedRect()58 outer.set(outerRect); in resetTo()97 r.set(outer); in setToOuter()105 return new RectF(outer); in getOuter()120 float[] outerCorners = CropMath.getCornersFromRect(outer); in moveInner()131 if (!CropMath.inclusiveContains(outer, correctedInnerX, correctedInnerY)) { in moveInner()146 if (!CropMath.inclusiveContains(outer, correctedInnerX, correctedInnerY)) { in moveInner()150 CropMath.getEdgePoints(outer, correctionVec); in moveInner()[all …]
213 RectF outer = mCropObj.getOuterBounds(); in applyOriginalAspect() local214 float w = outer.width(); in applyOriginalAspect()215 float h = outer.height(); in applyOriginalAspect()218 mCropObj.resetBoundsTo(outer, outer); in applyOriginalAspect()
57 public void resetBoundsTo(RectF inner, RectF outer) { in resetBoundsTo() argument58 mBoundedRect.resetTo(0, outer, inner); in resetBoundsTo()
43 IOException outer = new IOException("message2", inner); in testGetCompleteMessage() local44 String msg = ExceptionUtils.getCompleteMessage(outer); in testGetCompleteMessage()52 IOException outer = new IOException("message2", inner); in testGetCompleteMessageWithMsg() local53 String msg = ExceptionUtils.getCompleteMessage("mymessage", outer); in testGetCompleteMessageWithMsg()78 IOException outer = new IOException("message2", inner); in testGetRootCause() local80 assertThat((IOException) ExceptionUtils.getRootCause(outer)).isEqualTo(inner); in testGetRootCause()86 IOException outer = new IOException(); in testAppendCause() local88 ExceptionUtils.appendCause(outer, inner); in testAppendCause()90 assertThat((IOException) ExceptionUtils.getRootCause(outer)).isEqualTo(inner); in testAppendCause()
54 for (uint32_t outer = 0; outer < outerSize; ++outer) { in l2normFloat32Impl() local55 const float* inputBeg = inputData + outer * axisSize * innerSize; in l2normFloat32Impl()57 float* outputBeg = outputData + outer * axisSize * innerSize; in l2normFloat32Impl()81 for (uint32_t outer = 0; outer < outerSize; ++outer) { in l2normQuant8Impl() local82 const uint8_t* inputBeg = inputData + outer * axisSize * innerSize; in l2normQuant8Impl()84 uint8_t* outputBeg = outputData + outer * axisSize * innerSize; in l2normQuant8Impl()113 for (uint32_t outer = 0; outer < outerSize; ++outer) { in l2normQuant8SignedImpl() local114 const int8_t* inputBeg = inputData + outer * axisSize * innerSize; in l2normQuant8SignedImpl()116 int8_t* outputBeg = outputData + outer * axisSize * innerSize; in l2normQuant8SignedImpl()
38 for (uint32_t outer = 0; outer < outerSize; ++outer) { in compute() local43 T maxValue = input[outer * axisSize * innerSize + inner]; in compute()45 maxValue = std::max(maxValue, input[(outer * axisSize + i) * innerSize + inner]); in compute()51 (input[(outer * axisSize + i) * innerSize + inner] - maxValue) * beta)); in compute()56 output[(outer * axisSize + i) * innerSize + inner] = in compute()57 (input[(outer * axisSize + i) * innerSize + inner] - maxValue) * beta - in compute()
37 for (int outer = 0; outer < outerSize; ++outer) { in argMinMaxImpl() local39 auto minMaxValue = inputData[outer * axisSize * innerSize + inner]; in argMinMaxImpl()42 const auto& value = inputData[(outer * axisSize + i) * innerSize + inner]; in argMinMaxImpl()48 outputData[outer * innerSize + inner] = minMaxIndex; in argMinMaxImpl()
57 for (uint32_t outer = 0; outer < outerSize; ++outer) { in softmaxSlowFloat32() local58 const float* inputBeg = inputData + outer * axisSize * innerSize; in softmaxSlowFloat32()60 float* outputBeg = outputData + outer * axisSize * innerSize; in softmaxSlowFloat32()132 for (uint32_t outer = 0; outer < outerSize; ++outer) { in softmaxQuant8Impl() local133 const T* inputBeg = inputData + outer * axisSize * innerSize; in softmaxQuant8Impl()135 T* outputBeg = outputData + outer * axisSize * innerSize; in softmaxQuant8Impl()
37 for (uint32_t outer = 0; outer < outerSize; ++outer) { in eval() local39 const T* inputBase = inputData + outer * axisSize * innerSize + inner; in eval()40 T* outputBase = outputData + outer * axisSize * innerSize + inner; in eval()
38 for (uint32_t outer = 0; outer < outerSize; ++outer) { in eval() local43 std::memcpy(outputData + (outer * indicesCount + outputIndex) * innerSize, in eval()44 inputData + (outer * axisSize + inputIndex) * innerSize, in eval()
54 for (uint32_t outer = 0; outer < outerSize; ++outer) { in localResponseNormFloat32Impl() local55 const float* inputBase = inputData + outer * axisSize * innerSize; in localResponseNormFloat32Impl()56 float* outputBase = outputData + outer * axisSize * innerSize; in localResponseNormFloat32Impl()
168 RectF outer = mCropObj.getOuterBounds(); in applyOriginalAspect() local169 float w = outer.width(); in applyOriginalAspect()170 float h = outer.height(); in applyOriginalAspect()173 mCropObj.resetBoundsTo(outer, outer); in applyOriginalAspect()309 RectF outer = mCropObj.getOuterBounds(); in onDraw() local310 FilterCropRepresentation.findNormalizedCrop(mScreenCropBounds, (int) outer.width(), in onDraw()311 (int) outer.height()); in onDraw()
277 int outer = mRadius + mRadiusInc - rgap; in layoutPie() local279 layoutItems(mItems, (float) (Math.PI / 2), inner, outer, gap); in layoutPie()283 int outer, int gap) { in layoutItems() argument297 outer, inner, mCenter); in layoutItems()307 int r = inner + (outer - inner) * 2 / 3; in layoutItems()313 item.setGeometry(itemstart, sweep, inner, outer); in layoutItems()316 outer + mRadiusInc / 2, gap); in layoutItems()322 private Path makeSlice(float start, float end, int outer, int inner, Point center) { in makeSlice() argument324 new RectF(center.x - outer, center.y - outer, center.x + outer, in makeSlice()325 center.y + outer); in makeSlice()
43 private int outer; field in PieItem137 outer = outside; in setGeometry()166 return outer; in getOuterRadius()
279 int outer = radius + radiusInc - rgap; in layoutPie() local281 layoutItems(items, (float) (Math.PI / 2), inner, outer, gap); in layoutPie()284 private void layoutItems(List<PieItem> items, float centerAngle, int inner, int outer, int gap) { in layoutItems() argument297 Path path = makeSlice(getDegrees(0) - gap, getDegrees(sweep) + gap, outer, inner, center); in layoutItems()307 int r = inner + (outer - inner) * 2 / 3; in layoutItems()313 item.setGeometry(itemstart, sweep, inner, outer); in layoutItems()315 layoutItems(item.getItems(), angle, inner, outer + radiusInc / 2, gap); in layoutItems()321 private Path makeSlice(float start, float end, int outer, int inner, Point center) { in makeSlice() argument322 RectF bb = new RectF(center.x - outer, center.y - outer, center.x + outer, center.y + outer); in makeSlice()
40 private int outer; field in PieItem120 outer = outside; in setGeometry()144 return outer; in getOuterRadius()
133 …a from audio_playlists left outer join audio_playlists_map on audio_playlists._id=audio_playlists_…
248 outer: in performFiltering()254 break outer; in performFiltering() local264 break outer; in performFiltering() local
503 outer: while (true) { in findDocumentPath()523 break outer; in findDocumentPath() local530 break outer; in findDocumentPath() local
95 // Warn against catch clause parameters from shadowing variables in the outer scope
141 try (ScopedTiming outer = new ScopedTiming(timingLogger, labelOuter)) { in logNestedTiming() argument
1204 * Think of Values as being sliced along its outer-most dimension.
1dictionary=main:en_us,locale=en_US,description=English (US),date ...