/external/volley/src/main/java/com/android/volley/toolbox/ |
D | ImageLoader.java | 151 public boolean isCached(String requestUrl, int maxWidth, int maxHeight) { 152 return isCached(requestUrl, maxWidth, maxHeight, ScaleType.CENTER_INSIDE); 167 public boolean isCached(String requestUrl, int maxWidth, int maxHeight, ScaleType scaleType) { 170 String cacheKey = getCacheKey(requestUrl, maxWidth, maxHeight, scaleType); 192 String requestUrl, ImageListener imageListener, int maxWidth, int maxHeight) { 193 return get(requestUrl, imageListener, maxWidth, maxHeight, ScaleType.CENTER_INSIDE); 216 int maxHeight, 222 final String cacheKey = getCacheKey(requestUrl, maxWidth, maxHeight, scaleType); 256 makeImageRequest(requestUrl, maxWidth, maxHeight, scaleType, cacheKey); 266 int maxHeight, [all …]
|
D | ImageRequest.java | 78 int maxHeight, in ImageRequest() argument 91 mMaxHeight = maxHeight; in ImageRequest() 104 int maxHeight, in ImageRequest() argument 111 maxHeight, in ImageRequest()
|
D | NetworkImageView.java | 191 int maxHeight = wrapHeight ? 0 : height; in loadImageIfNecessary() local 241 maxHeight, in loadImageIfNecessary()
|
/external/deqp/modules/egl/ |
D | teglMemoryStressTests.cpp | 72 …g, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use); 105 …ig, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use) in MemoryAllocator() argument 117 , m_maxHeight (maxHeight) in MemoryAllocator() 323 int maxHeight; member 401 …d, m_spec.types, m_spec.minWidth, m_spec.minHeight, m_spec.maxWidth, m_spec.maxHeight, m_spec.use); in iterate() 482 spec.maxHeight = 256; in init() 496 spec.maxHeight = 256; in init() 510 spec.maxHeight = 1024; in init() 524 spec.maxHeight = 1024; in init() 538 spec.maxHeight = 1024; in init() [all …]
|
/external/setupdesign/main/src/com/google/android/setupdesign/view/ |
D | FillContentLayout.java | 45 private int maxHeight; field in FillContentLayout 64 maxHeight = a.getDimensionPixelSize(R.styleable.SudFillContentLayout_android_maxHeight, -1); in init() 98 Math.min(maxHeight, parentHeight), in measureIllustrationChild()
|
/external/setupdesign/main/src/com/google/android/setupdesign/template/ |
D | IconMixin.java | 151 final int maxHeight; in setUpscaleIcon() local 156 maxHeight = iconView.getMaxHeight(); in setUpscaleIcon() 158 maxHeight = (int) iconView.getResources().getDimension(R.dimen.sud_glif_icon_max_height); in setUpscaleIcon() 160 layoutParams.height = shouldUpscaleIcon ? maxHeight : originalHeight; in setUpscaleIcon()
|
/external/volley/src/test/java/com/android/volley/toolbox/ |
D | NetworkImageViewTest.java | 73 int maxHeight, in get() argument 77 lastMaxHeight = maxHeight; in get()
|
D | ImageRequestTest.java | 129 int maxHeight, in verifyResize() argument 134 new ImageRequest("", null, maxWidth, maxHeight, scaleType, Config.RGB_565, null); in verifyResize()
|
/external/skia/docs/ |
D | catalogTrailer.txt | 9 var maxHeight = 256 70 var height = rec.height < maxHeight ? rec.height : maxHeight
|
/external/skqp/docs/ |
D | catalogTrailer.txt | 9 var maxHeight = 256 70 var height = rec.height < maxHeight ? rec.height : maxHeight
|
/external/skqp/src/core/ |
D | SkRegion_path.cpp | 34 bool init(int maxHeight, int maxTransitions, bool pathIsInverse); 123 bool SkRgnBuilder::init(int maxHeight, int maxTransitions, bool pathIsInverse) { in init() argument 124 if ((maxHeight | maxTransitions) < 0) { in init() 138 size_t count = safe.mul(safe.addInt(maxHeight, 1), safe.addInt(3, maxTransitions)); in init()
|
D | SkClipStack.h | 486 int maxHeight,
|
D | SkClipStack.cpp | 937 int maxHeight, in getConservativeBounds() argument 943 SkIntToScalar(maxWidth), SkIntToScalar(maxHeight)); in getConservativeBounds()
|
/external/skia/src/core/ |
D | SkRegion_path.cpp | 34 bool init(int maxHeight, int maxTransitions, bool pathIsInverse); 123 bool SkRgnBuilder::init(int maxHeight, int maxTransitions, bool pathIsInverse) { in init() argument 124 if ((maxHeight | maxTransitions) < 0) { in init() 138 size_t count = safe.mul(safe.addInt(maxHeight, 1), safe.addInt(3, maxTransitions)); in init()
|
D | SkClipStack.h | 486 int maxHeight,
|
D | SkClipStack.cpp | 937 int maxHeight, in getConservativeBounds() argument 943 SkIntToScalar(maxWidth), SkIntToScalar(maxHeight)); in getConservativeBounds()
|
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
D | SurfaceViewRenderer.java | 325 final int maxHeight = getDefaultSize(Integer.MAX_VALUE, heightSpec); in getDesiredLayoutSize() local 327 RendererCommon.getDisplaySize(scalingType, frameAspectRatio(), maxWidth, maxHeight); in getDesiredLayoutSize() 332 size.y = maxHeight; in getDesiredLayoutSize()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | ConversationDialogActivity.java | 88 final int maxHeight = textView.getHeight(); in formatPages() local 102 final int maxLinesPerPage = (int)(maxHeight / fontHeight); in formatPages()
|
/external/deqp/modules/gles31/functional/ |
D | es31fFboNoAttachmentTests.cpp | 505 const int maxHeight = 2048; // MAX_FRAMEBUFFER_HEIGHT in ES 3.1 in createFboNoAttachmentTests() local 518 for (int height = 16; height <= maxHeight; height *= 4) in createFboNoAttachmentTests() 602 const int height = rng.getInt(1, maxHeight); in createFboNoAttachmentTests()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachinePipeliner.cpp | 2127 SUnit *maxHeight = nullptr; in computeNodeOrder() local 2129 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder() 2130 maxHeight = I; in computeNodeOrder() 2131 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder() 2132 getZeroLatencyHeight(I) > getZeroLatencyHeight(maxHeight)) in computeNodeOrder() 2133 maxHeight = I; in computeNodeOrder() 2134 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder() 2136 getZeroLatencyHeight(maxHeight) && in computeNodeOrder() 2137 getMOV(I) < getMOV(maxHeight)) in computeNodeOrder() 2138 maxHeight = I; in computeNodeOrder() [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachinePipeliner.cpp | 2009 SUnit *maxHeight = nullptr; in computeNodeOrder() local 2011 if (maxHeight == 0 || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder() 2012 maxHeight = I; in computeNodeOrder() 2013 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder() 2014 getMOV(I) < getMOV(maxHeight) && in computeNodeOrder() 2015 !hasDataDependence(maxHeight, I)) in computeNodeOrder() 2016 maxHeight = I; in computeNodeOrder() 2017 else if (hasDataDependence(I, maxHeight)) in computeNodeOrder() 2018 maxHeight = I; in computeNodeOrder() 2020 NodeOrder.insert(maxHeight); in computeNodeOrder() [all …]
|
/external/doclava/res/assets/templates/assets/ |
D | doclava-developer-docs.js | 96 resizePackagesNav.css({maxHeight:swapperHeight + "px", height:packageHeight}); property 236 resizePackagesNav.css({maxHeight:swapperHeight + "px"}); property
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | CssSchema.java | 568 Property maxHeight = new Property(1, maxHeightLiterals0, zeroFns); 569 builder.put("max-height", maxHeight); 720 builder.put("max-width", maxHeight);
|
/external/tensorflow/tensorflow/lite/java/demo/app/src/main/java/com/example/android/tflitecamerademo/ |
D | Camera2BasicFragment.java | 279 int maxHeight, in chooseOptimalSize() argument 290 && option.getHeight() <= maxHeight in chooseOptimalSize()
|
/external/deqp/modules/glshared/ |
D | glsLifetimeTests.hpp | 396 Rectangle randomViewport (const RenderContext& ctx, GLint maxWidth, GLint maxHeight,
|