OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:panelview
(Results
1 - 14
of
14
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java
41
ArrayList<
PanelView
> mPanels = new ArrayList<
PanelView
>();
42
PanelView
mTouchingPanel;
62
public void addPanel(
PanelView
pv) {
77
if (v != null && v instanceof
PanelView
) {
78
addPanel((
PanelView
) v);
87
public
PanelView
selectPanelForTouch(MotionEvent touch) {
109
final
PanelView
panel = selectPanelForTouch(event);
136
// called from
PanelView
when self-expanding, too
137
public void startOpeningPanel(
PanelView
panel)
[
all
...]
PanelHolder.java
44
public int getPanelIndex(
PanelView
pv) {
47
final
PanelView
v = (
PanelView
) getChildAt(i);
53
public void setSelectedPanel(
PanelView
pv) {
PhoneStatusBarView.java
44
PanelView
mFadingPanel = null;
45
PanelView
mLastFullyOpenedPanel = null;
46
PanelView
mNotificationPanel, mSettingsPanel;
79
for (
PanelView
pv : mPanels) {
86
public void addPanel(
PanelView
pv) {
117
public
PanelView
selectPanelForTouch(MotionEvent touch) {
155
public void startOpeningPanel(
PanelView
panel) {
179
public void onPanelFullyOpened(
PanelView
openPanel) {
210
public void panelExpansionChanged(
PanelView
panel, float frac) {
PanelView.java
37
public class
PanelView
extends FrameLayout {
39
public static final String TAG =
PanelView
.class.getSimpleName();
311
mBar.panelExpansionChanged(
PanelView
.this, mExpandedFraction);
324
public
PanelView
(Context context, AttributeSet attrs) {
396
PanelView
.this.getLocationOnScreen(mAbsPos);
407
mBar.onTrackingStarted(
PanelView
.this);
437
PanelView
.this.setExpandedHeightInternal(h);
438
mBar.panelExpansionChanged(
PanelView
.this, mExpandedFraction);
451
mBar.onTrackingStopped(
PanelView
.this);
567
mBar.panelExpansionChanged(
PanelView
.this, mExpandedFraction)
[
all
...]
NotificationPanelView.java
33
public class NotificationPanelView extends
PanelView
{
SettingsPanelView.java
38
public class SettingsPanelView extends
PanelView
{
/external/chromium_org/chrome/browser/ui/views/panels/
panel_view.cc
94
explicit NativePanelTestingWin(
PanelView
* panel_view);
116
PanelView
* panel_view_;
119
NativePanelTestingWin::NativePanelTestingWin(
PanelView
* panel_view)
250
return new
PanelView
(panel, bounds, always_on_top);
257
PanelView
::
PanelView
(Panel* panel, const gfx::Rect& bounds, bool always_on_top)
310
PanelView
::~
PanelView
() {
313
void
PanelView
::ShowPanel() {
318
void
PanelView
::ShowPanelInactive()
[
all
...]
panel_frame_view.h
13
class
PanelView
;
32
explicit PanelFrameView(
PanelView
* panel_view);
106
PanelView
* panel_view_;
panel_view.h
27
class
PanelView
: public NativePanel,
38
PanelView
(Panel* panel, const gfx::Rect& bounds, bool always_on_top);
39
virtual ~
PanelView
();
254
DISALLOW_COPY_AND_ASSIGN(
PanelView
);
panel_view_browsertest.cc
30
PanelView
* GetPanelView(Panel* panel) const {
31
return static_cast<
PanelView
*>(panel->native_panel());
panel_stack_view.cc
228
static_cast<
PanelView
*>(panel->native_panel())->set_cached_bounds_directly(
405
PanelView
* panel_view = static_cast<
PanelView
*>(panel->native_panel());
464
static_cast<
PanelView
*>(panel->native_panel())->window();
565
static_cast<
PanelView
*>(panel->native_panel())->window()));
panel_frame_view.cc
254
PanelFrameView::PanelFrameView(
PanelView
* panel_view)
327
PanelView
::kResizeInsideBoundsSize - BorderThickness();
427
point, size(),
PanelView
::kResizeInsideBoundsSize, resizability);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryPanel.java
114
View
panelView
= main.findViewById(R.id.listItems);
115
if (
panelView
instanceof CategoryTrack) {
116
CategoryTrack panel = (CategoryTrack)
panelView
;
/external/chromium_org/chrome/browser/ui/panels/
panel.h
380
// PanelGtk/
PanelView
/PanelCocoa.
Completed in 667 milliseconds