/device/generic/goldfish/camera/fake-pipeline2/ |
Scene.h | 121 WINDOW,
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglSurface.h | 33 WINDOW = 0,
|
EglWindowsApi.cpp | 99 WINDOW = 0, 128 m_type(WINDOW){ 143 if(m_type == WINDOW){ 185 wcx.lpfnWndProc = dummyWndProc; // points to window procedure 187 wcx.cbWndExtra = sizeof(void*); // save extra window memory, to store VasWindow instance 193 wcx.lpszClassName = "DummyWin"; // name of window class 251 PFD_DRAW_TO_WINDOW | // support window 344 EGLint window,bitmap,pbuffer,transparent; local 364 IS_TRUE(s_wglExtProcs->wglGetPixelFormatAttribivARB(dpy,index,0,1,&attribs[0],&window)); 367 if(window) supportedSurfaces |= EGL_WINDOW_BIT [all...] |
EglImp.cpp | 721 //checking native window validity 722 if(newReadPtr->type() == EglSurface::WINDOW && !EglOS::validNativeWin(nativeDisplay,nativeRead)) { 725 if(newDrawPtr->type() == EglSurface::WINDOW && !EglOS::validNativeWin(nativeDisplay,nativeDraw)) { 782 //if surface not window return 783 if(Srfc->type() != EglSurface::WINDOW){ 800 if(!currCtx->read().Ptr() || !currCtx->draw().Ptr() || currCtx->draw()->type()!=EglSurface::WINDOW) { 877 if(read->type() == EglSurface::WINDOW && 887 if(draw->type() == EglSurface::WINDOW && [all...] |
EglX11Api.cpp | 40 WINDOW = 0, 178 Window root; 192 Window root; 208 Window root; 220 Window root; 295 return new SrfcInfo(wnd,SrfcInfo::WINDOW);
|
EglMacApi.cpp | 39 EGLint window,pbuffer; local 47 getPixelFormatAttrib(*frmt,MAC_DRAW_TO_WINDOW,&window); 50 if(window) supportedSurfaces |= EGL_WINDOW_BIT; 181 case EglSurface::WINDOW:
|
/external/chromium_org/chrome/browser/sessions/ |
tab_restore_service.h | 34 // invoked and a Window is created to represent the window. 36 // To restore a tab/window from the TabRestoreService invoke RestoreEntryById 53 WINDOW 68 // The time when the window or tab was closed. 110 // Represents a previously open window. 111 struct Window : public Entry { 112 Window(); 113 virtual ~Window(); 115 // The tabs that comprised the window, in order [all...] |
tab_restore_service_helper.cc | 121 scoped_ptr<Window> window(new Window()); 122 window->selected_tab_index = delegate->GetSelectedIndex(); 123 window->timestamp = TimeNow(); 124 window->app_name = delegate->GetAppName(); 127 // into the vector, which will give all tabs in a window the same ID. 129 window->tabs.push_back(Tab()); 133 PopulateTab(&(window->tabs[entry_index]), 137 if (window->tabs[entry_index].navigations.empty()) 236 Window* window = static_cast<Window*>(entry); local [all...] |
persistent_tab_restore_service_unittest.cc | 34 typedef TabRestoreService::Window Window; 123 // Adds a window with one tab and url to the profile's session service. 144 // is configured with a single window with a single tab pointing at url1_ by 386 ASSERT_EQ(TabRestoreService::WINDOW, entry2->type); 387 TabRestoreService::Window* window = local 388 static_cast<TabRestoreService::Window*>(entry2); 389 ASSERT_EQ(1U, window->tabs.size()); 390 EXPECT_EQ(0, window->timestamp.ToInternalValue()) 446 TabRestoreService::Window* window = local 489 TabRestoreService::Window* window = local 534 TabRestoreService::Window* window = local [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
py_curses.h | 16 can't get at the WINDOW flags field. */ 82 WINDOW *win;
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
py_curses.h | 16 can't get at the WINDOW flags field. */ 82 WINDOW *win;
|
/external/chromium/chrome/browser/sessions/ |
session_restore_browsertest.cc | 91 popup->window()->Show(); 94 browser()->window()->Close(); 96 // Create a new window, which should trigger session restore. 132 browser()->window()->Close(); 134 // Expect a window with three tabs. 136 ASSERT_EQ(TabRestoreService::WINDOW, service->entries().front()->type); 137 const TabRestoreService::Window* window = local 138 static_cast<TabRestoreService::Window*>(service->entries().front()); 139 EXPECT_EQ(3U, window->tabs.size()) [all...] |
tab_restore_service.h | 30 // invoked and a Window is created to represent the window. 32 // To restore a tab/window from the TabRestoreService invoke RestoreEntryById 49 WINDOW 64 // The time when the window or tab was closed. 103 // Represents a previously open window. 104 struct Window : public Entry { 105 Window(); 106 virtual ~Window(); 108 // The tabs that comprised the window, in order [all...] |
tab_restore_service_browsertest.cc | 82 // Adds a window with one tab and url to the profile's session service. 100 // is configured with a single window with a single tab pointing at url1_ by 297 ASSERT_EQ(TabRestoreService::WINDOW, entry2->type); 298 TabRestoreService::Window* window = local 299 static_cast<TabRestoreService::Window*>(entry2); 300 ASSERT_EQ(1U, window->tabs.size()); 301 EXPECT_EQ(0, window->timestamp.ToInternalValue()); 302 EXPECT_EQ(0, window->selected_tab_index); 303 ASSERT_EQ(1U, window->tabs[0].navigations.size()) 353 TabRestoreService::Window* window = local 395 TabRestoreService::Window* window = local 439 TabRestoreService::Window* window = local [all...] |
tab_restore_service.cc | 66 // . When the user closes a window a kCommandSelectedNavigationInTab command 88 // Payload used for the start of a window close. This is the old struct that is 104 // Payload used for the start of a window close. This struct must be POD, 140 if (i->second->type == TabRestoreService::WINDOW) { 141 TabRestoreService::Window* window = local 142 static_cast<TabRestoreService::Window*>(i->second); 143 std::vector<TabRestoreService::Tab>::iterator j = window->tabs.begin(); 144 for ( ; j != window->tabs.end(); ++j) { 145 // If the ID matches one of this window's tabs, remove it from the list 343 Window* window = static_cast<Window*>(entry); local 957 Window* window = static_cast<Window*>(*i); local [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
window_controls.js | 6 // <window-controls> shadow element implementation. 12 var appWindow = require('app.window'); 55 chrome.app.window.current().close(); 69 if (chrome.app.window.current().isMaximized()) { 70 chrome.app.window.current().restore(); 72 chrome.app.window.current().maximize(); 76 addTagWatcher('WINDOW-CONTROLS', function(addedNode) {
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
recently_closed_tabs_handler.cc | 37 void WindowToValue(const TabRestoreService::Window& window, 39 DCHECK(!window.tabs.empty()); 42 for (size_t i = 0; i < window.tabs.size(); ++i) { 44 TabToValue(window.tabs[i], tab_value); 48 dictionary->SetString("type", "window"); 49 dictionary->SetDouble("timestamp", window.timestamp.ToDoubleT()); 155 // where an interesting entry is either a closed window or a closed tab 165 DCHECK_EQ(entry->type, TabRestoreService::WINDOW); 166 WindowToValue(*static_cast<TabRestoreService::Window*>(entry) [all...] |
/external/chromium_org/chrome_frame/test/ |
infobar_unittests.cc | 116 testing::NiceMock<MockTopLevelWindow> window; local 117 ASSERT_TRUE(window.Create(NULL, kInitialParentWindowRect) != NULL); 119 HWND hwnd = static_cast<HWND>(window); 144 window.DestroyWindow(); 152 testing::NiceMock<MockTopLevelWindow> window; local 153 ASSERT_TRUE(window.Create(NULL, kInitialParentWindowRect) != NULL); 155 HWND hwnd = static_cast<HWND>(window); 157 window.DestroyWindow(); 179 template <typename WINDOW, typename DELEGATE> void ExpectNcCalcSizeSequence( 180 WINDOW* mock_window 243 testing::NiceMock<MockTopLevelWindow> window; local 258 testing::NiceMock<MockTopLevelWindow> window; local 446 testing::NiceMock<MockTopLevelWindow> window; local 553 testing::NiceMock<MockTopLevelWindow> window; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/ |
xm_api.h | 30 and create a window, you must do the following to use the X/Mesa interface: 37 3. Call XMesaCreateWindowBuffer() to create an XMesaBuffer from an X window 47 7. Before the X window is destroyed, call XMesaDestroyBuffer(). 135 * Create a new XMesaContext for rendering into an X11 window. 157 * Create an XMesaBuffer from an X window. 159 extern XMesaBuffer XMesaCreateWindowBuffer( XMesaVisual v, Window w ); 171 * Destroy an XMesaBuffer, but not the corresponding window or pixmap. 238 * Scan for XMesaBuffers whose window/pixmap has been destroyed, then free 315 WINDOW, /* An X window */ [all...] |
/external/mesa3d/src/gallium/state_trackers/glx/xlib/ |
xm_api.h | 30 and create a window, you must do the following to use the X/Mesa interface: 37 3. Call XMesaCreateWindowBuffer() to create an XMesaBuffer from an X window 47 7. Before the X window is destroyed, call XMesaDestroyBuffer(). 135 * Create a new XMesaContext for rendering into an X11 window. 157 * Create an XMesaBuffer from an X window. 159 extern XMesaBuffer XMesaCreateWindowBuffer( XMesaVisual v, Window w ); 171 * Destroy an XMesaBuffer, but not the corresponding window or pixmap. 238 * Scan for XMesaBuffers whose window/pixmap has been destroyed, then free 315 WINDOW, /* An X window */ [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/ |
xmesaP.h | 128 WINDOW, /* An X window */ 129 GLXWINDOW, /* GLX window */ 145 * <drawable> is the X window 158 XMesaDrawable drawable; /* Usually the X window ID */ 190 BufferType type; /* window, pixmap, pbuffer or glxwindow */ 222 * because they depend on the window's colormap. 305 * Converts a GL window Y coord to an X window Y coord:
|
/external/e2fsprogs/ext2ed/ |
ext2ed.h | 51 1. Title window (title_win). 52 2. Show (status) window (show_win). 54 4. Command window (command_win). 179 struct struct_pad_info { /* Used to zoom into the pad window */ 428 extern WINDOW *title_win,*show_win,*command_win,*show_pad;
|
win.c | 8 Window management - Interfacing with the ncurses library 31 WINDOW *title_win,*show_win,*command_win,*mt_win1,*mt_win2,*show_pad;
|
/external/mesa3d/src/mesa/drivers/x11/ |
xmesaP.h | 128 WINDOW, /* An X window */ 129 GLXWINDOW, /* GLX window */ 145 * <drawable> is the X window 158 XMesaDrawable drawable; /* Usually the X window ID */ 190 BufferType type; /* window, pixmap, pbuffer or glxwindow */ 222 * because they depend on the window's colormap. 305 * Converts a GL window Y coord to an X window Y coord:
|
/external/qemu/ |
curses.c | 44 static WINDOW *screenpad = NULL;
|