/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | ShadowCardStack.java | 65 final int max = cardParent.getChildCount(); in onCreate() local 66 for (int i = 0; i < max; i++) { in onCreate() 70 float targetY = (i - (max-1) / 2.0f) * Y; in onCreate() 75 toward.setStartDelay(200 * ((max) - i)); in onCreate() 81 rotateAway.setStartDelay(200 * ((max) - i)); in onCreate() 86 slideAway.setStartDelay(200 * ((max) - i)); in onCreate()
|
D | PictureLayout.java | 100 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight()); in onMeasure() 101 maxWidth = Math.max(maxWidth, drawable.getMinimumWidth()); in onMeasure()
|
/development/tools/bugreport/src/com/android/bugreport/util/ |
D | Lines.java | 86 private Lines(ArrayList<? extends Line> list, int min, int max) { in Lines() argument 89 mMax = max; in Lines() 139 return new Lines<T>(mList, Math.max(mMin, from), Math.min(mMax, to)); in copy()
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | CustomLayout.java | 101 mLeftWidth += Math.max(maxWidth, in onMeasure() 104 mRightWidth += Math.max(maxWidth, in onMeasure() 107 maxWidth = Math.max(maxWidth, in onMeasure() 110 maxHeight = Math.max(maxHeight, in onMeasure() 120 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight()); in onMeasure() 121 maxWidth = Math.max(maxWidth, getSuggestedMinimumWidth()); in onMeasure()
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | FragmentRetainInstance.java | 112 int max = 10000; 121 while (!mReady || mPosition >= max) { 135 max = mProgressBar.getMax();
|
/development/samples/browseable/RenderScriptIntrinsic/src/com.example.android.renderscriptintrinsic/ |
D | MainActivity.java | 253 final float max = 25.0f; in getFilterParameter() local 255 f = (float) ((max - min) * (i / 100.0) + min); in getFilterParameter() 259 final float max = 2.f; in getFilterParameter() local 261 f = (float) ((max - min) * (i / 100.0) + min); in getFilterParameter() 265 final float max = (float) Math.PI; in getFilterParameter() local 267 f = (float) ((max - min) * (i / 100.0) + min); in getFilterParameter()
|
/development/tools/compare_failed_tests/ |
D | compare_failed_tests.py | 62 max_key_len = max([len(k) for k in info_a]) 63 max_value_a_len = max([len(info_a[k]) for k in info_a]) 64 max_value_b_len = max([len(info_b[k]) for k in info_b])
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
D | LabelMaker.java | 183 minWidth = Math.max(minWidth, background.getMinimumWidth()); in add() 184 minHeight = Math.max(minHeight, background.getMinimumHeight()); in add() 201 int height = Math.max(minHeight, textHeight + padHeight); in add() 202 int width = Math.max(minWidth, textWidth + padWidth); in add() 228 lineHeight = Math.max(lineHeight, height); in add()
|
/development/samples/devbytes/animation/Bouncer/src/com/example/android/bouncer/ |
D | Bouncer1.java | 70 maxX = Math.max(mShapeX + mShapeW, maxX); in setShapeX() 79 maxY = Math.max(mShapeY + mShapeH, maxY); in setShapeY()
|
D | Bouncer3.java | 71 maxX = Math.max(mShapeX + mShapeW, maxX); in setShapeX() 80 maxY = Math.max(mShapeY + mShapeH, maxY); in setShapeY()
|
D | Bouncer.java | 96 maxX = Math.max(mShapeX + mShapeW, maxX); in setShapeX() 109 maxY = Math.max(mShapeY + mShapeH, maxY); in setShapeY()
|
D | Bouncer2.java | 71 maxX = Math.max(mShapeX + mShapeW, maxX); in setShapeX() 80 maxY = Math.max(mShapeY + mShapeH, maxY); in setShapeY()
|
/development/tools/core_connectivity/ |
D | check_style.sh | 30 local MSG=`git rev-list --format=%B --max-count=1 HEAD`
|
/development/samples/browseable/BasicRenderScript/src/com.example.android.basicrenderscript/ |
D | MainActivity.java | 70 float max = 2.0f; in onCreate() 72 float f = (float) ((max - min) * (progress / 100.0) + min); in onCreate()
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
D | AnimatedNotificationDisplayActivity.java | 82 mAnimation.setDuration(Math.max(BASE_ANIMATION_DURATION_MS / 10, in createNextAnimation() 127 int minSize = Math.max(right - left, bottom - top) + mZoomLength; in onLayout()
|
/development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/ |
D | SquareFrameLayout.java | 64 size = Math.max(widthSize, heightSize); in onMeasure()
|
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/ |
D | MagnificationService.java | 120 final float nextScale = Math.max(1f, Math.min(5f, currScale + increment)); in handleVolumeKey()
|
D | CustomViewAccessibilityActivity.java | 256 final int minWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth()) in onMeasure() 258 final int minHeight = Math.max(mOnLayout.getHeight(), mOffLayout.getHeight()) in onMeasure()
|
/development/samples/CrossCompatibility/src/com/example/android/touchexample/ |
D | TouchExampleView.java | 77 mScaleFactor = Math.max(0.1f, Math.min(mScaleFactor, 5.0f)); in onScale()
|
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
D | PhotoDecodeRunnable.java | 185 int sampleSize = Math.max(hScale, wScale); in run()
|
/development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/ |
D | Card.java | 228 public Card setMaxProgress(int max){ in setMaxProgress() argument 230 mCardProgress.setMax(max); in setMaxProgress() 676 public void setMax(int max) { in setMax() argument 677 maxValue = max; in setMax()
|
/development/scripts/ |
D | native_heapdump_viewer.py | 264 max = len(mappings) - 1 266 if max < min: 268 mid = (min + max) // 2 272 max = mid - 1
|
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/ |
D | InteractiveLineGraphView.java | 282 Math.max(getSuggestedMinimumWidth(), in onMeasure() 286 Math.max(getSuggestedMinimumHeight(), in onMeasure() 704 mCurrentViewport.left = Math.max(AXIS_X_MIN, mCurrentViewport.left); in constrainViewport() 705 mCurrentViewport.top = Math.max(AXIS_Y_MIN, mCurrentViewport.top); in constrainViewport() 706 mCurrentViewport.bottom = Math.max(Math.nextUp(mCurrentViewport.top), in constrainViewport() 708 mCurrentViewport.right = Math.max(Math.nextUp(mCurrentViewport.left), in constrainViewport() 936 x = Math.max(AXIS_X_MIN, Math.min(x, AXIS_X_MAX - curWidth)); in setViewportBottomLeft() 937 y = Math.max(AXIS_Y_MIN + curHeight, Math.min(y, AXIS_Y_MAX)); in setViewportBottomLeft()
|
/development/apps/Development/src/com/android/development/ |
D | MediaScannerActivity.java | 222 int max = elements.length; in getRandomWord() local 225 mBuilder.append(elements[mRandom.nextInt(max)]); in getRandomWord()
|
/development/tools/axl/ |
D | chewperf.py | 71 top = max(buckets.keys())
|