/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
FixedPointUtil.java | 25 public static FixedPointPreCompInfo precompute(ECPoint p, int minWidth) 29 int n = 1 << minWidth; 36 int d = (bits + minWidth - 1) / minWidth; 38 ECPoint[] pow2Table = new ECPoint[minWidth]; 40 for (int i = 1; i < minWidth; ++i) 50 for (int bit = minWidth - 1; bit >= 0; --bit) 64 info.setWidth(minWidth);
|
FixedPointCombMultiplier.java | 23 int minWidth = getWidthForCombSize(size); 25 FixedPointPreCompInfo info = FixedPointUtil.precompute(p, minWidth);
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/ |
BaseDrawable.java | 26 private float leftWidth, rightWidth, topHeight, bottomHeight, minWidth, minHeight; 38 minWidth = drawable.getMinWidth(); 78 return minWidth; 81 public void setMinWidth (float minWidth) { 82 this.minWidth = minWidth;
|
Drawable.java | 47 public void setMinWidth (float minWidth);
|
/external/conscrypt/src/platform/java/org/conscrypt/ |
Hex.java | 40 public static String intToHexString(int i, int minWidth) { 47 } while ((i >>>= 4) != 0 || (bufLen - cursor < minWidth));
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
Stack.java | 42 private float prefWidth, prefHeight, minWidth, minHeight, maxWidth, maxHeight;
67 minWidth = 0;
79 minWidth = Math.max(minWidth, layout.getMinWidth());
86 minWidth = Math.max(minWidth, child.getWidth());
123 return minWidth;
|
Container.java | 19 private Value minWidth = Value.minWidth, minHeight = Value.minHeight; 110 float minWidth = this.minWidth.get(actor), minHeight = this.minHeight.get(actor); 119 if (width < minWidth) width = minWidth; 197 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */ 200 minWidth = size; 209 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */ 213 minWidth = width [all...] |
Cell.java | 22 Value minWidth, minHeight; 77 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */ 80 minWidth = size; 89 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */ 93 minWidth = width; 102 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */ 108 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */ 114 /** Sets the minWidth, prefWidth, and maxWidth to the specified value. */ 117 minWidth = width; 123 /** Sets the minWidth, prefWidth, and maxWidth to the specified value. * [all...] |
Window.java | 76 titleTable.add(titleLabel).expandX().fillX().minWidth(0); 128 float minWidth = getMinWidth(), maxWidth = getMaxWidth(); 140 if (width - amountX < minWidth) amountX = -(minWidth - width); 154 if (width + amountX < minWidth) amountX = minWidth - width;
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/ |
EllipsizeLayout.java | 113 // TODO: Respect android:minWidth (easy with @TargetApi(16)) 114 final int minWidth = 0; 115 if (maxWidth < minWidth) { 116 maxWidth = minWidth;
|
/external/deqp/modules/egl/ |
teglMemoryStressTests.cpp | 72 MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use); 105 MemoryAllocator::MemoryAllocator (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig config, int seed, ObjectType types, int minWidth, int minHeight, int maxWidth, int maxHeight, bool use) 114 , m_minWidth (minWidth) 320 int minWidth; 401 m_allocator = new MemoryAllocator(m_eglTestCtx, m_display, m_config, m_seed, m_spec.types, m_spec.minWidth, m_spec.minHeight, m_spec.maxWidth, m_spec.maxHeight, m_spec.use); 479 spec.minWidth = 256; 493 spec.minWidth = 256; 507 spec.minWidth = 1024; 521 spec.minWidth = 1024; 535 spec.minWidth = 64 [all...] |
/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/ |
Lwjgl3WindowConfiguration.java | 84 public void setWindowSizeLimits(int minWidth, int minHeight, int maxWidth, int maxHeight) { 85 windowMinWidth = minWidth;
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
RBBINode.java | 296 static void printString(String s, int minWidth) { 297 for (int i = minWidth; i < 0; i++) { 301 for (int i = s.length(); i < minWidth; i++) { 313 static void printInt(int i, int minWidth) { 315 printString(s, Math.max(minWidth, s.length() + 1)); 320 static void printHex(int i, int minWidth) { 325 printString(s, minWidth);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
RBBINode.java | 295 static void printString(String s, int minWidth) { 296 for (int i = minWidth; i < 0; i++) { 300 for (int i = s.length(); i < minWidth; i++) { 312 static void printInt(int i, int minWidth) { 314 printString(s, Math.max(minWidth, s.length() + 1)); 319 static void printHex(int i, int minWidth) { 324 printString(s, minWidth);
|
/frameworks/base/core/java/android/appwidget/ |
AppWidgetProviderInfo.java | 82 * <p>This field corresponds to the <code>android:minWidth</code> attribute in 85 public int minWidth; 98 * is greater than minWidth or if horizontal resizing isn't enabled (see {@link #resizeMode}). 224 this.minWidth = in.readInt(); 315 out.writeInt(this.minWidth); 342 that.minWidth = this.minWidth;
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
PhotoActionPopup.java | 130 final int minWidth = context.getResources().getDimensionPixelSize( 132 if (anchorView.getWidth() < minWidth) { 133 listPopupWindow.setWidth(minWidth);
|
/packages/apps/DeskClock/src/com/android/alarmclock/ |
WidgetUtils.java | 51 int minWidth = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH); 52 if (minWidth == 0) { 58 float ratio = (density * minWidth) / res.getDimension(R.dimen.min_digital_widget_width);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
LabelMaker.java | 162 public int add(GL10 gl, Drawable drawable, int minWidth, int minHeight) { 163 return add(gl, drawable, null, null, minWidth, minHeight); 175 int minWidth, int minHeight) { 183 minWidth = Math.max(minWidth, background.getMinimumWidth()); 202 int width = Math.max(minWidth, textWidth + padWidth);
|
/frameworks/ex/framesequence/src/android/support/rastermill/ |
FrameSequenceDrawable.java | 73 public abstract Bitmap acquireBitmap(int minWidth, int minHeight); 86 public Bitmap acquireBitmap(int minWidth, int minHeight) { 87 return Bitmap.createBitmap(minWidth, minHeight, Bitmap.Config.ARGB_8888); 216 int minWidth, int minHeight) { 217 Bitmap bitmap = bitmapProvider.acquireBitmap(minWidth, minHeight); 219 if (bitmap.getWidth() < minWidth
|
/frameworks/ex/framesequence/samples/FrameSequenceSamples/src/com/android/framesequence/samples/ |
FrameSequenceTest.java | 38 public Bitmap acquireBitmap(int minWidth, int minHeight) { 40 Bitmap.createBitmap(minWidth + 1, minHeight + 4, Bitmap.Config.ARGB_8888);
|
/external/icu/icu4c/source/common/ |
rbbinode.h | 112 RBBI_DEBUG_printUnicodeString(const UnicodeString &s, int minWidth=0);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherAppWidgetInfo.java | 43 int minWidth = -1; 60 // to indicate that they should be calculated based on the layout and minWidth/minHeight
|
/frameworks/support/v7/cardview/src/android/support/v7/widget/ |
CardView.java | 194 final int minWidth = (int) Math.ceil(IMPL.getMinWidth(mCardViewDelegate)); 195 widthMeasureSpec = MeasureSpec.makeMeasureSpec(Math.max(minWidth, 260 public void setMinimumWidth(int minWidth) { 261 mUserSetMinWidth = minWidth; 262 super.setMinimumWidth(minWidth);
|
/frameworks/base/core/java/android/content/pm/ |
ActivityInfo.java | [all...] |
/cts/hostsidetests/services/activitymanager/src/android/server/cts/ |
ActivityManagerManifestLayoutTests.java | 100 final int minWidth = dpToPx(MIN_WIDTH_DP, mDisplay.getDpi()); 104 Assert.assertEquals("Min width is incorrect", minWidth, containingRect.width);
|