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

1 2

  /external/v8/tools/
tickprocessor-driver.js 42 'windows': WindowsCppEntriesProvider,
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
OS.java 23 private static boolean windows; field in class:OS
29 windows = "Windows".startsWith(osName);
49 return windows;
  /external/chromium/chrome/browser/sync/glue/
session_model_associator_unittest.cc 64 session->windows.push_back(win);
147 std::vector<SessionWindow*> windows; local
148 ASSERT_TRUE(tracker.LookupSessionWindows(tag1, &windows));
149 ASSERT_EQ(0U, windows.size());
151 // The sessions don't have valid windows, lookup should not succeed.
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 78 // The windows tab hides the property tab, so let's bring the property
82 IWorkbenchWindow[] windows = local
84 for (IWorkbenchWindow currentWindow : windows) {
103 // The windows tab hides the tree tab, so let's bring the tree tab
106 IWorkbenchWindow[] windows = local
108 for (IWorkbenchWindow window : windows) {
  /external/chromium/chrome/browser/
fullscreen_linux.cc 23 std::vector<XID> windows; local
25 if (!ui::GetXWindowStack(window, &windows)) {
27 // to old school enumeration of all X windows.
34 windows.push_back(children[i]);
40 for (iter = windows.begin(); iter != windows.end(); iter++) {
47 // 1) Enumerate all top-level windows from the top to the bottom.
52 // 2.3) Enumerate all its child windows. If there is a child window that is
  /frameworks/base/services/java/com/android/server/wm/
WindowToken.java 25 * Container of a set of related windows in the window manager. Often this
27 * to display windows. For nested windows, there is a WindowToken created for
41 // not be removed when all windows are removed.
50 // All of the windows associated with this token.
51 final WindowList windows = new WindowList(); field in class:WindowToken
56 // Should this token's windows be hidden?
59 // Temporary for finding which tokens no longer have visible windows.
71 // windows will be put to the bottom of the list.
82 pw.print(prefix); pw.print("windows="); pw.println(windows)
    [all...]
DragState.java 193 final WindowList windows = mService.getWindowListLocked(mDisplay); local
194 if (windows != null) {
195 final int N = windows.size();
197 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription);
349 Slog.w(WindowManagerService.TAG, "can't send drag notification to windows");
398 final WindowList windows = mService.getWindowListLocked(mDisplay); local
399 if (windows == null) {
402 final int N = windows.size();
404 WindowState child = windows.get(i);
InputMonitor.java 107 // Figure out whether this window is layered above system windows.
166 // Add a window to our list of input windows.
220 // Populate the input window list with information about all of the windows that
222 // As an optimization, we could try to prune the list of windows but this turns
249 // Add all windows on the default display.
252 final WindowList windows = local
254 for (int winNdx = windows.size() - 1; winNdx >= 0; --winNdx) {
255 final WindowState child = windows.get(winNdx);
295 // Send windows to native code.
  /external/chromium/chrome/browser/automation/
ui_controls_linux.cc 114 GList* windows = gtk_window_list_toplevels(); local
115 for (GList* element = windows; element; element = g_list_next(element)) {
122 g_list_free(windows);
  /external/chromium/chrome/browser/sessions/
session_service_unittest.cc 84 void ReadWindows(std::vector<SessionWindow*>* windows) {
90 helper_.ReadWindows(windows);
110 ScopedVector<SessionWindow> windows; local
111 ReadWindows(&(windows.get()));
113 EXPECT_EQ(1U, windows->size());
116 EXPECT_EQ(1U, windows[0]->tabs.size());
120 SessionTab* tab = windows[0]->tabs[0];
156 ScopedVector<SessionWindow> windows; local
157 ReadWindows(&(windows.get()));
159 ASSERT_EQ(1U, windows->size())
185 ScopedVector<SessionWindow> windows; local
210 ScopedVector<SessionWindow> windows; local
241 ScopedVector<SessionWindow> windows; local
279 ScopedVector<SessionWindow> windows; local
330 ScopedVector<SessionWindow> windows; local
363 ScopedVector<SessionWindow> windows; local
406 ScopedVector<SessionWindow> windows; local
445 ScopedVector<SessionWindow> windows; local
484 ScopedVector<SessionWindow> windows; local
526 ScopedVector<SessionWindow> windows; local
567 ScopedVector<SessionWindow> windows; local
597 ScopedVector<SessionWindow> windows; local
662 ScopedVector<SessionWindow> windows; local
    [all...]
session_types.h 175 // Currently SessionService prunes all constrained windows so that session
200 std::vector<SessionWindow*> windows; member in struct:ForeignSession
session_service.cc 240 // . closing a tab and there are other windows/tabs open.
754 std::map<int, SessionWindow*> windows; local
756 if (CreateTabsAndWindows(commands, &tabs, &windows)) {
757 AddTabsToWindows(&tabs, &windows);
758 SortTabsBasedOnVisualOrderAndPrune(&windows, valid_windows);
762 // Don't delete conents of windows, that is done by the caller as all
763 // valid windows are added to valid_windows.
767 std::vector<SessionWindow*>* windows) {
768 for (std::vector<SessionWindow*>::const_iterator i = windows->begin();
769 i != windows->end(); ++i)
    [all...]
  /external/chromium/chrome/browser/ui/webui/
foreign_session_handler.cc 111 foreign_session->windows.begin(); it != foreign_session->windows.end();
177 std::vector<SessionWindow*> windows; local
179 if (!associator->GetForeignSession(session_string_value, &windows)) {
184 std::vector<SessionWindow*>::const_iterator iter_begin = windows.begin() +
188 std::vector<SessionWindow*>::const_iterator(windows.end()) :
  /external/webkit/Source/WebKit2/WebProcess/win/
WebProcessWin.cpp 143 Vector<HWND>* windows; member in struct:WebKit::EnumWindowsContext
153 context->windows->append(window);
159 Vector<HWND> windows; local
167 context.windows = &windows;
169 // Start out with top-level windows created by this thread (like Flash's hidden
170 // SWFlash_PlaceholderX top-level windows).
173 // Also include any descendants of those top-level windows.
174 size_t topLevelWindowCount = windows.size();
176 ::EnumChildWindows(windows[i], addWindowToVectorIfOwnedByCurrentThread, reinterpret_cast<LPARAM>(&context))
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
WindowsLoader.java 40 ArrayList<Window> windows = new ArrayList<Window>(); local
71 windows.add(w);
75 return windows.toArray(new Window[windows.size()]);
  /external/skia/src/sfnt/
SkOTTable_name.h 49 ((Windows, SkTEndian_SwapBE16(3)))
115 struct Windows {
118 ((UnicodeBMPUCS2, SkTEndian_SwapBE16(1))) //Windows default
127 } windows; member in union:SkOTTableNameRecord::EncodingID
254 struct Windows {
463 } windows; member in union:SkOTTableNameRecord::LanguageID
  /external/webkit/Tools/DumpRenderTree/qt/
DumpRenderTreeQt.h 161 QList<QObject*> windows; member in class:WebCore::DumpRenderTree
  /external/libvorbis/doc/
01-introduction.tex 110 existing software/interface designs, such as Windows' ACM codec
296 \item decode window shape (long windows only)
341 \paragraph{Window shape decode (long windows only)} \label{vorbis:spec:window}
354 This is easy to visualize in the case of equal sized-windows:
358 \captionof{figure}{overlap of two equal-sized windows}
362 windows:
374 window (short windows require no modification), Vorbis also codes two
383 can be found in \cite{Sporer/Brandenburg/Edler}. Vorbis windows
512 of the current window. In the case of same-sized windows, the amount
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 300 IWorkbenchWindow[] windows = workbench.getWorkbenchWindows(); local
301 if (windows.length > 0) {
302 window = windows[0];
383 IWorkbenchWindow[] windows = workbench.getWorkbenchWindows(); local
384 for (IWorkbenchWindow window : windows) {
    [all...]
  /external/clang/test/Sema/
designated-initializers.c 63 struct rect windows[] = { variable in typeref:struct:rect
70 int windows_size[((sizeof(windows) / sizeof(struct rect)) == 6)? 1 : -1];
78 struct rect windows[10]; member in struct:gui
82 [5].windows[3].top_left.x = { 7.0 } // expected-warning{{braces around scalar initializer}}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformancesView.java 164 IWorkbenchWindow[] windows = workbench.getWorkbenchWindows(); local
165 int length = windows.length;
167 IWorkbenchWindow window = windows[i];
  /external/webkit/Tools/EWebLauncher/
main.c 72 static Eina_List *windows = NULL; variable
273 app = (ELauncher*) eina_list_data_get(windows);
747 windows = eina_list_append(windows, app);
756 if (!eina_list_count(windows))
765 EINA_LIST_FOREACH(windows, l, app)
770 windows = eina_list_remove(windows, app);
779 while (windows) {
780 app = (ELauncher*) eina_list_data_get(windows);
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 178 private JTable windows; field in class:Workspace
272 windows = new JTable(windowsTableModel);
273 windows.getSelectionModel().addListSelectionListener(new WindowSelectedListener());
274 windows.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
275 windows.setBorder(null);
276 JScrollPane windowsScroller = new JScrollPane(windows);
1211 Window[] windows; field in class:Workspace.WindowsResult
1508 private ArrayList<Window> windows; field in class:Workspace.WindowsTableModel
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_util.cc 319 // the resources to set *minimum* window size to allow windows
386 // List all windows in this current group
398 // Otherwise just grab all browser windows and be slightly broken.
414 // All windows should be part of one big modal group right now.
417 GList* windows = gtk_window_group_list_windows(window_group); local
419 for (GList* item = windows; item; item = item->next) {
557 // to old school enumeration of all X windows. Some WMs parent 'top-level'
558 // windows in unnamed actual top-level windows (ion WM), so extend the
559 // search depth to all children of top-level windows
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp 54 #include <windows.h>
874 prefsPrivate->setShouldPaintNativeControls(FALSE); // FIXME - need to make DRT pass with Windows native controls <http://bugs.webkit.org/show_bug.cgi?id=25592>
1060 Vector<HWND> windows = openWindows(); local
    [all...]

Completed in 817 milliseconds

1 2