HomeSort by relevance Sort by last modified time
    Searched refs:pane (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
PaneTracker.java 47 public void addPane(ControlPane pane) {
48 boolean added = mActivePanes.add(pane);
51 if (listener.getFilterType().isInstance(pane)) {
52 listener.onPaneAdded(pane);
57 public void removePane(ControlPane pane) {
58 boolean existed = mActivePanes.remove(pane);
61 if (listener.getFilterType().isInstance(pane)) {
62 listener.onPaneRemoved(pane);
69 for (ControlPane pane : mActivePanes ) {
70 if (paneClass.isInstance(pane)) {
    [all...]
PaneLayout.java 60 for (T pane : mPanes) {
61 pane.setVisibility(VISIBLE);
66 for (T pane : mPanes) {
67 pane.setVisibility(GONE);
128 T pane = readControlPane(tc, configParser); local
129 mNewPanes.add(pane);
143 for (T pane : oldPanes) {
145 pane.remove();
RequestControlPane.java 42 /** Name of pane tag */
45 /** Attribute: ID for pane (integer) */
184 public void onPaneAdded(ControlPane pane) {
185 mCameraPanes.add((CameraControlPane) pane);
190 public void onPaneRemoved(ControlPane pane) {
191 mCameraPanes.remove((CameraControlPane) pane);
TargetControlPane.java 41 /** Name of pane tag */
44 /** Attribute: ID for pane (integer) */
128 * Get this target's Surface aimed at the given camera pane. If no target
129 * for that camera is defined by this pane, returns null.
131 * @param paneName ID of the camera pane to return a Surface for
211 public void onPaneAdded(ControlPane pane) {
212 mCameraPanes.add((CameraControlPane) pane);
217 public void onPaneRemoved(ControlPane pane) {
218 mCameraPanes.remove((CameraControlPane) pane);
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_private.h 37 struct hud_pane *pane; member in struct:hud_graph
83 void hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr);
84 void hud_pane_set_max_value(struct hud_pane *pane, uint64_t value);
94 void hud_fps_graph_install(struct hud_pane *pane);
95 void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index);
97 struct hud_pane *pane, struct pipe_context *pipe,
105 struct hud_pane *pane,
118 void hud_nic_graph_install(struct hud_pane *pane, const char *nic_index,
124 void hud_diskstat_graph_install(struct hud_pane *pane, const char *dev_name,
131 void hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index, unsigned int mode)
    [all...]
hud_context.c 347 xoffset + (gr->pane->max_num_vertices - gr->index - 1) * 2 - 1,
362 const struct hud_pane *pane)
368 const unsigned last_line = pane->last_line;
372 pane->x1, pane->y1,
373 pane->x2, pane->y2);
377 unsigned x = pane->x2 + 2;
378 unsigned y = pane->inner_y1 +
379 pane->inner_height * (last_line - i) / last_line
485 struct hud_pane *pane; local
793 struct hud_pane *pane = CALLOC_STRUCT(hud_pane); local
1056 struct hud_pane *pane = NULL; local
1640 struct hud_pane *pane, *pane_tmp; local
    [all...]
hud_fps.c 49 if (info->last_time + gr->pane->period <= now) {
70 hud_fps_graph_install(struct hud_pane *pane)
93 hud_pane_add_graph(pane, gr);
hud_sensors_temp.c 163 if (sti->last_time + gr->pane->period <= now) {
196 * \param pane parent context.
201 hud_sensors_temp_graph_install(struct hud_pane *pane, const char *dev_name,
231 hud_pane_add_graph(pane, gr);
235 hud_pane_set_max_value(pane, 120);
238 hud_pane_set_max_value(pane, 12);
241 hud_pane_set_max_value(pane, 5000);
244 hud_pane_set_max_value(pane, 5000 /* mW */);
hud_cpu.c 151 if (info->last_time + gr->pane->period <= now) {
180 hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index)
218 hud_pane_add_graph(pane, gr);
219 hud_pane_set_max_value(pane, 100);
hud_cpufreq.c 100 if (cfi->last_time + gr->pane->period <= now) {
119 * \param pane parent context.
124 hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index,
160 hud_pane_add_graph(pane, gr);
161 hud_pane_set_max_value(pane, 3000000 /* 3 GHz */);
hud_diskstat.c 129 if (dsi->last_time + gr->pane->period <= now) {
140 (((float) gr->pane->period / 1000) / 1000);
146 (((float) gr->pane->period / 1000) / 1000);
169 * \param pane parent context.
174 hud_diskstat_graph_install(struct hud_pane *pane, const char *dev_name,
205 hud_pane_add_graph(pane, gr);
206 hud_pane_set_max_value(pane, 100);
hud_driver_query.c 317 if (info->num_results && info->last_time + gr->pane->period <= now) {
360 struct hud_pane *pane, struct pipe_context *pipe,
399 hud_pane_add_graph(pane, gr);
400 pane->type = type; /* must be set before updating the max_value */
402 if (pane->max_value < max_value)
403 hud_pane_set_max_value(pane, max_value);
414 struct hud_pane *pane, struct pipe_context *pipe,
438 hud_pipe_query_install(pbq, pane, pipe, query.name, query.query_type, 0,
hud_nic.c 184 if (nic->last_time + gr->pane->period <= now) {
195 float periodMs = gr->pane->period / 1000;
241 * \param pane parent context.
246 hud_nic_graph_install(struct hud_pane *pane, const char *nic_name,
281 hud_pane_add_graph(pane, gr);
282 hud_pane_set_max_value(pane, 100);
  /external/perfetto/tools/
tmux 131 tmux set-option -g mouse-resize-pane on
132 tmux set-option -g mouse-select-pane on
141 tmux select-pane -t 0
147 tmux select-pane -t 1
153 tmux select-pane -t 2
161 tmux select-pane -t 1
164 tmux select-pane -t 0
167 tmux select-pane -t 2
170 # Select consumer pane.
171 tmux select-pane -t
    [all...]
  /external/python/cpython2/Demo/tix/samples/
PanedWin.py 37 pane = Tix.PanedWindow(w, orientation='vertical')
39 p1 = pane.add('list', min=70, size=100)
40 p2 = pane.add('text', min=70)
77 pane.pack(side=Tix.TOP, padx=3, pady=3, fill=Tix.BOTH, expand=1)
  /build/make/tools/droiddoc/templates-ndk/
customizations.cs 9 <div id="devdoc-nav" class="scroll-pane">
26 <div id="devdoc-nav" class="scroll-pane">
44 <div id="devdoc-nav" class="scroll-pane">
63 <div id="devdoc-nav" class="scroll-pane">
82 <div id="devdoc-nav" class="scroll-pane">
101 <div id="devdoc-nav" class="scroll-pane">
119 <div id="devdoc-nav" class="scroll-pane">
138 <div id="devdoc-nav" class="scroll-pane">
152 <div id="devdoc-nav" class="scroll-pane">
166 <div id="devdoc-nav" class="scroll-pane">
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestionsView.java 72 final MoreSuggestions pane = (MoreSuggestions)getKeyboard(); local
73 return pane.mOccupiedWidth / 2;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
TwoPaneLayout.java 104 // Drag helper for capturing drag over the list pane
142 * Used for two-pane landscape layout positioning when other views need to align themselves
277 // Layout only positions the children views at their default locations, and any pane
284 // If the view mode is different from positions and we are computing pane position, then
310 // only adjust the pane widths when my width changes
319 * Compute the default base location of each pane and save it in their corresponding
329 // Compute default pane positions
403 * Adjusts the visibility of each pane before and after a transition. After the transition,
565 // Only start intercepting if the down event is inside the list pane or in
566 // landscape conv pane
    [all...]
  /external/python/cpython2/Demo/turtle/
turtleDemo.py 71 pane = PanedWindow(orient=HORIZONTAL, sashwidth=5,
73 pane.add(self.makeTextFrame(pane))
74 pane.add(self.makeGraphFrame(pane))
75 pane.grid(row=1, columnspan=4, sticky='news')
  /external/python/cpython3/Lib/turtledemo/
__main__.py 165 pane = PanedWindow(orient=HORIZONTAL, sashwidth=5,
167 pane.add(self.makeTextFrame(pane))
168 pane.add(self.makeGraphFrame(pane))
169 pane.grid(row=0, columnspan=4, sticky='news')
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
TestCaseEditController.java 605 final JPanel pane = new JPanel(); local
622 pane.setBorder(BorderFactory.createEtchedBorder());
623 pane.setLayout(new BoxLayout(pane, BoxLayout.Y_AXIS));
624 pane.add(labIn);
625 pane.add(labOut);
626 pane.setBackground(isSelected ? Color.LIGHT_GRAY : Color.WHITE);
629 return pane;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
ll-star.rb 30 * and look for blue tokens in the input window pane. :)
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
profile-mode.rb 25 * and look for blue tokens in the input window pane. :)
  /external/python/cpython2/Demo/tix/
tixwidgets.py 616 pane = Tix.LabelFrame(w, label='Tix.PanedWindow', options=options)
619 MkPanedWindow(pane.frame)
622 pane.form(top=0, left=0, right=note, bottom=-1)
635 pane = Tix.PanedWindow(w, orientation='vertical')
637 p1 = pane.add('list', min=70, size=100)
638 p2 = pane.add('text', min=70)
670 pane.pack(side=Tix.TOP, padx=3, pady=3, fill=Tix.BOTH, expand=1)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_widgets.py 347 self.assertEqual(self.paned.pane(0), self.paned.pane(1))
348 self.assertRaises(Tkinter.TclError, self.paned.pane, 2)
351 self.assertRaises(Tkinter.TclError, self.paned.pane, 0)
399 self.assertRaises(Tkinter.TclError, self.paned.pane, 0)
403 self.assertTrue(isinstance(self.paned.pane(0), dict))
404 self.assertEqual(self.paned.pane(0, weight=None), 0)
406 self.assertEqual(self.paned.pane(0, 'weight'), 0)
407 self.assertEqual(self.paned.pane(0), self.paned.pane(str(child))
    [all...]

Completed in 274 milliseconds

1 2 3 4