Searched defs:max (Results 126 - 136 of 136) sorted by relevance

123456

/frameworks/base/core/java/android/app/
H A DIActivityManager.java215 public void setProcessLimit(int max) throws RemoteException; argument
H A DNotification.java2204 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
2205 mProgressMax = max;
4269 "setShowActionsInCompactView: action %d out of bounds (max %d)",
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp83 inline static T max(T a, T b) { function in namespace:android
3373 pg->largestTypeId = max(pg->largestTypeId, srcPg->largestTypeId);
5795 group->largestTypeId = max(group->largestTypeId, typeSpec->id);
/frameworks/native/services/inputflinger/
H A DInputReader.cpp897 "min=%0.3f, max=%0.3f, flat=%0.3f, fuzz=%0.3f, resolution=%0.3f\n",
898 name, range.source, range.min, range.max, range.flat, range.fuzz,
1807 dump.appendFormat(INDENT4 "%s: min=%d, max=%d, flat=%d, fuzz=%d, resolution=%d\n",
2652 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_1, mSource, x.min, x.max, x.flat,
2654 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_2, mSource, y.min, y.max, y.flat,
2656 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_3, mSource, x.min, x.max, x.flat,
2658 info->addMotionRange(AMOTION_EVENT_AXIS_GENERIC_4, mSource, y.min, y.max, y.flat,
3120 mOrientedRanges.touchMajor.max = diagonalSize;
3131 mOrientedRanges.toolMajor.max = diagonalSize;
3142 mOrientedRanges.size.max
6562 hasValueChangedSignificantly( float filter, float newValue, float currentValue, float min, float max) argument
[all...]
H A DInputReader.h1795 float max; // normalized inclusive maximum member in struct:android::JoystickInputMapper::Axis
1809 float min, float max, float flat, float fuzz, float resolution) {
1818 this->max = max;
1844 float newValue, float currentValue, float min, float max);
1806 initialize(const RawAbsoluteAxisInfo& rawAxisInfo, const AxisInfo& axisInfo, bool explicitlyMapped, float scale, float offset, float highScale, float highOffset, float min, float max, float flat, float fuzz, float resolution) argument
/frameworks/base/core/java/android/widget/
H A DTextView.java4124 Math.max(0, Math.min(start, len)),
4125 Math.max(0, Math.min(end, len)));
4837 int end = Math.max(Math.max(a, b), c);
4876 bottom = Math.max(bottom, bounds.bottom);
5022 return (int) Math.max(0, mShadowDy + mShadowRadius);
5028 return Math.max(0, getCompoundPaddingRight() - (cursorWidth - 1));
5034 (int) Math.max(0, mShadowDx + mShadowRadius);
5395 clipRight += Math.max(0, mShadowDx + mShadowRadius);
5398 clipBottom += Math.max(
8833 paste(int min, int max) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java297 // simple array to keep min and max child position during a layout calculation
1288 velocityX = Math.max(-mMaxFlingVelocity, Math.min(velocityX, mMaxFlingVelocity));
1289 velocityY = Math.max(-mMaxFlingVelocity, Math.min(velocityY, mMaxFlingVelocity));
3334 public void setMaxRecycledViews(int viewType, int max) { argument
3335 mMaxScrap.put(viewType, max);
3338 while (scrapHeap.size() > max) {
5873 int size = Math.max(0, parentSize - padding);
6167 final int offScreenRight = Math.max(0, childRight - parentRight);
6168 final int offScreenBottom = Math.max(0, childBottom - parentBottom);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java6703 public void setProcessLimit(int max) { argument
6707 mProcessLimit = max < 0 ? ProcessList.MAX_CACHED_APPS : max;
6708 mProcessLimitOverride = max;
8067 TAG, "getTasks: max=" + maxNum + ", flags=" + flags);
13750 pw.print("oom: max="); pw.print(r.maxAdj);
16959 // The max adjustment doesn't allow this app to be anything
17244 // XXX should compute this based on the max of
17562 // worry about this for max adj above, since max ad
[all...]
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...

Completed in 9712 milliseconds

123456