Searched refs:expand (Results 1 - 18 of 18) sorted by relevance

/frameworks/volley/src/com/android/volley/toolbox/
H A DPoolingByteArrayOutputStream.java37 * to this instance, the underlying byte array will expand.
46 * expand.
71 private void expand(int i) { method in class:PoolingByteArrayOutputStream
72 /* Can the buffer handle @i more bytes, if not expand it */
84 expand(len);
90 expand(1);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarView.java160 public void onTrackingStopped(PanelView panel, boolean expand) { argument
161 super.onTrackingStopped(panel, expand);
162 mBar.onTrackingStopped(expand);
H A DPanelView.java83 * Whether an instant expand request is currently pending and we are just waiting for layout.
217 * We capture touch events here and update the expand height here in case according to
337 boolean expand = flingExpands(vel, vectorVel)
339 onTrackingStopped(expand);
340 DozeLog.traceFling(expand, mTouchAboveFalsingThreshold,
344 if (!expand && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
352 fling(vel, expand);
353 mUpdateFlingOnLayout = expand && mPanelClosedOnDown && !mHasLayoutedSinceDown;
379 protected void onTrackingStopped(boolean expand) { argument
381 mBar.onTrackingStopped(PanelView.this, expand);
538 fling(float vel, boolean expand) argument
748 public void expand() { method in class:PanelView
[all...]
H A DNotificationPanelView.java483 expand();
487 public void fling(float vel, boolean expand) { argument
492 super.fling(vel, expand);
1242 private void flingSettings(float vel, boolean expand) { argument
1243 flingSettings(vel, expand, null);
1246 private void flingSettings(float vel, boolean expand, final Runnable onFinishRunnable) { argument
1247 float target = expand ? mQsMaxExpansionHeight : mQsMinExpansionHeight;
1284 mQsAnimatorExpand = expand;
1613 protected void onTrackingStopped(boolean expand) { argument
1614 super.onTrackingStopped(expand);
[all...]
H A DPanelBar.java232 public void onTrackingStopped(PanelView panel, boolean expand) { argument
H A DPhoneStatusBar.java2010 flagdbg.append(((state & StatusBarManager.DISABLE_EXPAND) != 0) ? "EXPAND" : "expand");
2404 mNotificationPanel.expand();
3952 public void onTrackingStopped(boolean expand) { argument
3954 if (!expand && !mUnlockMethodCache.isCurrentlyInsecure()) {
4014 * @param expandView The view to expand after going to the shade.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java278 * @param expand whether the system wants this notification to be expanded.
280 public void setSystemExpanded(boolean expand) { argument
281 if (expand != mIsSystemExpanded) {
283 mIsSystemExpanded = expand;
314 boolean expand = isExpanded();
315 if (expand && mExpandable) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java111 public static void traceFling(boolean expand, boolean aboveThreshold, boolean thresholdNeeded, argument
114 log("fling expand=" + expand + " aboveThreshold=" + aboveThreshold + " thresholdNeeded="
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DRowsFragment.java196 public void setExpand(boolean expand) { argument
197 mExpand = expand;
202 if (DEBUG) Log.v(TAG, "setExpand " + expand + " count " + count);
524 void onExpandTransitionStart(boolean expand, final Runnable callback) { argument
526 if (expand) {
530 // Run a "pre" layout when we go non-expand, in order to get the initial
H A DRowsSupportFragment.java198 public void setExpand(boolean expand) { argument
199 mExpand = expand;
204 if (DEBUG) Log.v(TAG, "setExpand " + expand + " count " + count);
526 void onExpandTransitionStart(boolean expand, final Runnable callback) { argument
528 if (expand) {
532 // Run a "pre" layout when we go non-expand, in order to get the initial
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java131 long[] dates = expand(dtstart, recur,
628 * @param rangeStartMillis the beginning of the range to expand, in UTC
630 * @param rangeEndMillis the non-inclusive end of the range to expand, in
636 public long[] expand(Time dtstart, method in class:RecurrenceProcessor
663 expand(dtstart, rrule, rangeStartDateValue,
678 expand(dtstart, exrule, rangeStartDateValue,
733 public void expand(Time dtstart, method in class:RecurrenceProcessor
861 Log.i(TAG, "expand called w/ rangeStart=" + rangeStartDateValue
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.h502 void startTilingCurrentClip(bool opaque = false, bool expand = false);
509 void startTiling(const Rect& clip, int windowHeight, bool opaque = false, bool expand = false);
H A DOpenGLRenderer.cpp273 void OpenGLRenderer::startTilingCurrentClip(bool opaque, bool expand) { argument
282 startTiling(*clip, getViewportHeight(), opaque, expand);
286 void OpenGLRenderer::startTiling(const Rect& clip, int windowHeight, bool opaque, bool expand) { argument
288 if(expand) {
836 // Clear the FBO, expand the clear region by 1 to get nice bilinear filtering
2395 * that of AA lines in the drawLines() function. We expand the convex path by a half pixel in
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DRecurrenceProcessorTest.java74 // note that the zulu of all parameters here must be the same, expand
109 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */),
2241 * This test fails because of a bug in RecurrenceProcessor.expand(). We
2269 * This test fails because of a bug in RecurrenceProcessor.expand(). We
2292 * This test fails because of a bug in RecurrenceProcessor.expand(). We
2325 * This test fails because of a bug in RecurrenceProcessor.expand(). We
2476 long [] dates = rp.expand(dtstart, recur, rangeStartMillis, rangeEndMillis);
2493 Log.i(TAG, "testPerformanceExpand() expand() elapsed millis: " + elapsed);
H A DRRuleTest.java77 * @param rrule The rule to expand
79 * @param limit Maximum number of entries to expand. if there are more, "..." is appended to
118 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */),
/frameworks/base/core/java/android/widget/
H A DToolbar.java1718 private void setChildVisibilityForExpandedActionView(boolean expand) { argument
1724 child.setVisibility(expand ? GONE : VISIBLE);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DToolbar.java1736 private void setChildVisibilityForExpandedActionView(boolean expand) { argument
1742 child.setVisibility(expand ? GONE : VISIBLE);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java469 expand();
573 private void expand() { method in class:RecipientEditTextView

Completed in 337 milliseconds