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

/frameworks/volley/src/main/java/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 DPanelView.java90 * Whether an instant expand request is currently pending and we are just waiting for layout.
226 * We capture touch events here and update the expand height here in case according to
380 boolean expand = flingExpands(vel, vectorVel, x, y)
383 DozeLog.traceFling(expand, mTouchAboveFalsingThreshold,
387 if (!expand && mStatusBar.getBarState() == StatusBarState.KEYGUARD) {
395 fling(vel, expand, isFalseTouch(x, y));
396 onTrackingStopped(expand);
397 mUpdateFlingOnLayout = expand && mPanelClosedOnDown && !mHasLayoutedSinceDown;
422 protected void onTrackingStopped(boolean expand) { argument
424 mBar.onTrackingStopped(PanelView.this, expand);
608 fling(float vel, boolean expand) argument
612 fling(float vel, boolean expand, boolean expandBecauseOfFalsing) argument
616 fling(float vel, boolean expand, float collapseSpeedUpFactor, boolean expandBecauseOfFalsing) argument
626 flingToHeight(float vel, boolean expand, float target, float collapseSpeedUpFactor, boolean expandBecauseOfFalsing) argument
839 public void expand() { method in class:PanelView
[all...]
H A DPhoneStatusBarView.java167 public void onTrackingStopped(PanelView panel, boolean expand) { argument
168 super.onTrackingStopped(panel, expand);
169 mBar.onTrackingStopped(expand);
H A DNotificationPanelView.java527 expand();
531 public void fling(float vel, boolean expand) { argument
536 super.fling(vel, expand);
540 protected void flingToHeight(float vel, boolean expand, float target, argument
542 mHeadsUpTouchHelper.notifyFling(!expand);
543 setClosingWithAlphaFadeout(!expand && getFadeoutAlpha() == 1.0f);
544 super.flingToHeight(vel, expand, target, collapseSpeedUpFactor, expandBecauseOfFalsing);
1419 private void flingSettings(float vel, boolean expand) { argument
1420 flingSettings(vel, expand, null, false /* isClick */);
1423 private void flingSettings(float vel, boolean expand, fina argument
1855 onTrackingStopped(boolean expand) argument
[all...]
H A DPanelBar.java241 public void onTrackingStopped(PanelView panel, boolean expand) { argument
H A DPhoneStatusBar.java1803 flagdbg.append(((state1 & StatusBarManager.DISABLE_EXPAND) != 0) ? "EXPAND" : "expand");
2193 mNotificationPanel.expand();
3711 public void onTrackingStopped(boolean expand) { argument
3713 if (!expand && !mUnlockMethodCache.canSkipBouncer()) {
3773 * @param expandView The view to expand after going to the shade.
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DRowsFragment.java167 public void setExpand(boolean expand) { argument
168 mExpand = expand;
173 if (DEBUG) Log.v(TAG, "setExpand " + expand + " count " + count);
463 void onExpandTransitionStart(boolean expand, final Runnable callback) { argument
466 if (expand) {
470 // Run a "pre" layout when we go non-expand, in order to get the initial
H A DRowsSupportFragment.java169 public void setExpand(boolean expand) { argument
170 mExpand = expand;
175 if (DEBUG) Log.v(TAG, "setExpand " + expand + " count " + count);
465 void onExpandTransitionStart(boolean expand, final Runnable callback) { argument
468 if (expand) {
472 // Run a "pre" layout when we go non-expand, in order to get the initial
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeLog.java115 public static void traceFling(boolean expand, boolean aboveThreshold, boolean thresholdNeeded, argument
118 log("fling expand=" + expand + " aboveThreshold=" + aboveThreshold + " thresholdNeeded="
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java527 * @param expand whether the system wants this notification to be expanded.
529 public void setSystemExpanded(boolean expand) { argument
530 if (expand != mIsSystemExpanded) {
532 mIsSystemExpanded = expand;
563 boolean expand = isExpanded();
564 if (expand && mExpandable) {
/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.h562 void startTilingCurrentClip(bool opaque = false, bool expand = false);
569 void startTiling(const Rect& clip, int windowHeight, bool opaque = false, bool expand = false);
H A DOpenGLRenderer.cpp195 void OpenGLRenderer::startTilingCurrentClip(bool opaque, bool expand) { argument
204 startTiling(*clip, getViewportHeight(), opaque, expand);
208 void OpenGLRenderer::startTiling(const Rect& clip, int windowHeight, bool opaque, bool expand) { argument
210 if(expand) {
757 // Clear the FBO, expand the clear region by 1 to get nice bilinear filtering
1772 * 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/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java503 expand();
641 private void expand() { method in class:RecipientEditTextView
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 324 milliseconds