HomeSort by relevance Sort by last modified time
    Searched defs:panel (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
panel.h 35 /* $Id: panel.h,v 1.11 2009/04/11 19:50:40 tom Exp $ */
37 /* panel.h -- interface file for panels library */
44 typedef struct panel struct
47 struct panel *below;
48 struct panel *above;
50 } PANEL;
56 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
58 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
59 extern NCURSES_EXPORT(int) show_panel (PANEL *);
60 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
panel.h 35 /* $Id: panel.h,v 1.11 2009/04/11 19:50:40 tom Exp $ */
37 /* panel.h -- interface file for panels library */
44 typedef struct panel struct
47 struct panel *below;
48 struct panel *above;
50 } PANEL;
56 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
58 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
59 extern NCURSES_EXPORT(int) show_panel (PANEL *);
60 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanel.java 49 View panel = mMainView.findViewById(R.id.listStates); local
50 track = (StatePanelTrack) panel;
  /external/jmonkeyengine/engine/src/test/jme3test/awt/
TestAwtPanels.java 25 private static AwtPanel panel, panel2; field in class:TestAwtPanels
28 private static void createWindowForPanel(AwtPanel panel, int location){
31 frame.getContentPane().add(panel, BorderLayout.CENTER);
60 panel = ctx.createPanel(PaintMode.Accelerated);
61 panel.setPreferredSize(new Dimension(400, 300));
62 ctx.setInputSource(panel);
67 createWindowForPanel(panel, 300);
84 panel.attachTo(true, viewPort);
  /external/proguard/src/proguard/gui/splash/
SplashPanel.java 200 * A main method for testing the splash panel.
226 SplashPanel panel = new SplashPanel(sprite, 0.5); local
227 panel.setBackground(Color.white);
229 frame.getContentPane().add(panel);
233 panel.start();
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
StatusBarController.java 38 private final JPanel panel = new JPanel(); field in class:StatusBarController
57 panel.setLayout(layout);
58 panel.add(labelText);
59 panel.add(progress);
60 panel.add(labRuleHint);
61 panel.add(labelRuleName);
62 panel.setOpaque(false);
63 panel.setBorder(javax.swing.BorderFactory.createEmptyBorder());
80 return panel;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
TableView.java 45 * Setup the listener for the Table objects of <code>Panel</code>, and setup
48 * @param panel The panel to setup
49 * @param parent The parent composite of the Panel's content.
51 void setupTableFocusListener(TablePanel panel, Composite parent) {
52 panel.setTableFocusListener(new ITableFocusListener() {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryPanel.java 116 CategoryTrack panel = (CategoryTrack) panelView; local
119 panel.setAdapter(mAdapter);
120 mAdapter.setContainer(panel);
123 ListView panel = (ListView) main.findViewById(R.id.listItems); local
124 panel.setAdapter(mAdapter);
125 mAdapter.setContainer(panel);
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanelsContext.java 64 public void setInputSource(AwtPanel panel){
65 if (!panels.contains(panel))
68 inputSource = panel;
69 mouseInput.setInputSource(panel);
70 keyInput.setInputSource(panel);
121 AwtPanel panel = new AwtPanel(paintMode); local
122 panels.add(panel);
123 return panel;
134 for (AwtPanel panel : panels){
135 if (panel.isActiveDrawing())
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java 120 // figure out which panel needs to be talked to here
122 final PanelView panel = selectPanelForTouch(event); local
123 if (panel == null) {
124 // panel is not there, so we'll eat the gesture
125 Log.v(TAG, String.format("onTouch: no panel for touch at (%d,%d)",
130 boolean enabled = panel.isEnabled();
131 if (DEBUG) LOG("PanelBar.onTouch: state=%d ACTION_DOWN: panel %s %s", mState, panel,
134 // panel is disabled, so we'll eat the gesture
136 "onTouch: panel (%s) is disabled, ignoring touch at (%d,%d)"
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorPanel.java 138 Fragment panel = getActivity().getSupportFragmentManager().findFragmentByTag( local
140 if (panel == null || panel instanceof MainPanel) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
comstats.h 37 unsigned long panel; member in struct:__anon30794
78 unsigned long panel; member in struct:__anon30795
111 * private port, panel and board structures. The argument required
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
comstats.h 37 unsigned long panel; member in struct:__anon32708
78 unsigned long panel; member in struct:__anon32709
111 * private port, panel and board structures. The argument required
  /external/eigen/demos/opengl/
quaternion_demo.cpp 553 QWidget* panel = new QWidget(); local
566 QButtonGroup* group = new QButtonGroup(panel);
585 QButtonGroup* group = new QButtonGroup(panel);
604 QButtonGroup* group = new QButtonGroup(panel);
620 panel->setLayout(layout);
621 return panel;
629 QDockWidget* panel = new QDockWidget("navigation", this); local
630 panel->setAllowedAreas((QFlags<Qt::DockWidgetArea>)(Qt::RightDockWidgetArea | Qt::LeftDockWidgetArea));
631 addDockWidget(Qt::RightDockWidgetArea, panel);
632 panel->setWidget(mRenderingWidget->createNavigationControlWidget())
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 247 JPanel panel = new JPanel(new GridBagLayout()); local
249 panel.setBorder(new UnifiedContentBorder());
265 panel.add(devicesScroller, new GridBagConstraints(0, 0, 1, 1, 0.5, 1.0,
278 panel.add(windowsScroller, new GridBagConstraints(2, 0, 1, 1, 0.5, 1.0,
282 return panel;
824 JPanel panel = new JPanel(new BorderLayout()); local
    [all...]
ScreenViewer.java 87 JPanel panel = buildViewerAndControls(); local
88 add(panel, new GridBagConstraints(0, 0, 1, 1, 0.3f, 1.0f,
129 JPanel panel = new JPanel(new GridBagLayout()); local
135 panel.add(scroller,
139 buildSlider(panel, "Overlay:", "0%", "100%", 0, 100, 30, 1).addChangeListener(
147 buildOverlayExtraControls(panel);
148 buildSlider(panel, "Refresh Rate:", "1s", "40s", 1, 40, 5, 1).addChangeListener(
157 zoomSlider = buildSlider(panel, "Zoom:", "2x", "24x", 2, 24, 8, 2);
167 panel.add(Box.createVerticalGlue(),
171 return panel;
    [all...]
  /external/proguard/src/proguard/gui/
ClassSpecificationDialog.java 158 // Create the comments panel.
168 // Create the keep option panel.
183 // Create the also keep panel.
190 // Create the allow option panel.
199 // Create the access panel.
218 // Create the annotation type panel.
225 // Create the class name panel.
232 // Create the extends annotation type panel.
239 // Create the extends class name panel.
247 // Create the class member list panel
    [all...]
MemberSpecificationDialog.java 156 // Create the access panel.
189 // Create the type panel.
197 // Create the annotation type panel.
204 // Create the name panel.
212 // Create the arguments panel.
257 // Add all panels to the main panel.
280 * given panel with a GridBagLayout, and returns the buttons in an array.
283 JPanel panel)
307 // Add the label and the buttons to the panel.
308 panel.add(new JLabel(labelText), labelConstraints)
    [all...]
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_utils.h 67 char panel; member in struct:qhwc::MDPInfo
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_utils.h 67 char panel; member in struct:qhwc::MDPInfo
  /development/ndk/platforms/android-9/arch-mips/include/asm/sgi/
ioc.h 139 volatile u8 panel; member in struct:sgioc_regs
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_utils.h 73 char panel; member in struct:qhwc::MDPInfo
306 // Resets display ROI to full panel resoluion
309 // Aligns updating ROI to panel restrictions
552 // Panel reset flag will be set if BTA check fails
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/sgi/
ioc.h 139 volatile u8 panel; member in struct:sgioc_regs
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/sgi/
ioc.h 139 volatile u8 panel; member in struct:sgioc_regs
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/sgi/
ioc.h 139 volatile u8 panel; member in struct:sgioc_regs

Completed in 528 milliseconds

1 2 3 4