HomeSort by relevance Sort by last modified time
    Searched defs:window (Results 201 - 225 of 882) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
screencastid.h 12 #include "talk/base/window.h"
20 // Used for identifying a window or desktop to be screencast.
23 enum Type { INVALID, WINDOW, DESKTOP };
28 : type_(WINDOW), window_(id) {
35 const talk_base::WindowId& window() const { return window_; } function in class:cricket::ScreencastId
45 } else if (type_ == WINDOW) {
51 bool IsWindow() const { return type_ == WINDOW; }
59 } else if (type_ == WINDOW) {
60 return window_.Equals(other.window());
  /external/chromium_org/third_party/opus/src/celt/
entdec.c 226 ec_window window; local
229 window=_this->end_window;
233 window|=(ec_window)ec_read_byte_from_end(_this)<<available;
238 ret=(opus_uint32)window&(((opus_uint32)1<<_bits)-1U);
239 window>>=_bits;
241 _this->end_window=window;
modes.h 77 const opus_val16 *window; member in struct:OpusCustomMode
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_mdct.c 123 opus_val16 * window= (opus_val16*)malloc(sizeof(opus_val16)*nfft/2); local
132 window[k] = Q15ONE;
153 clt_mdct_backward(&cfg,in,out, window, nfft/2, 0, 1);
159 clt_mdct_forward(&cfg,in,out,window, nfft/2, 0, 1);
  /external/chromium_org/third_party/zlib/
inffast.c 80 unsigned wsize; /* window size or zero if not using window */
81 unsigned whave; /* valid bytes in the window */
82 unsigned wnext; /* window write index */
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
92 /* window position, window bytes to copy */
110 window = state->window;
    [all...]
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_screen_x11_unittest.cc 11 #include "ui/aura/window.h"
268 // Tests that the window is maximized in response to a double click event.
279 aura::Window* window = widget->GetNativeWindow(); local
280 window->SetProperty(aura::client::kCanMaximizeKey, true);
284 DesktopWindowTreeHostX11::GetHostForXID(window->GetHost()->
287 aura::test::EventGenerator generator(window);
296 // Tests that the window does not maximize in response to a double click event,
305 aura::Window* window = widget->GetNativeWindow() local
332 aura::Window* window = widget->GetNativeWindow(); local
    [all...]
x11_desktop_handler.cc 59 ::Window active_window;
71 void X11DesktopHandler::ActivateWindow(::Window window) {
78 xclient.xclient.window = window;
91 XRaiseWindow(xdisplay_, window);
93 // XRaiseWindow will not give input focus to the window. We now need to ask
95 // window is not mapped.
96 XSetInputFocus(xdisplay_, window, RevertToParent, CurrentTime);
98 OnActiveWindowChanged(window);
134 ::Window window; local
    [all...]
  /external/chromium_org/ui/views/widget/
window_reorderer.cc 10 #include "ui/aura/window.h"
18 // Sets |hosted_windows| to a mapping of the views with an associated window to
19 // the window that they are associated to. Only views associated to a child of
22 const aura::Window& parent_window,
23 std::map<views::View*, aura::Window*>* hosted_windows) {
24 const std::vector<aura::Window*>& child_windows = parent_window.children();
26 aura::Window* child = child_windows[i];
33 // Sets |order| to the list of views whose layer / associated window's layer
36 // |hosts| are the views with an associated window whose layer is a child of
41 const std::map<views::View*, aura::Window*>& hosts
170 aura::Window* window = NULL; local
    [all...]
  /external/chromium_org/ui/wm/core/
compound_event_filter.cc 11 #include "ui/aura/window.h"
102 void CompoundEventFilter::UpdateCursor(aura::Window* target,
106 aura::Window* root_window = target->GetRootWindow();
158 void CompoundEventFilter::SetCursorVisibilityOnEvent(aura::Window* target,
175 void CompoundEventFilter::SetMouseEventsEnableStateOnEvent(aura::Window* target,
195 aura::Window* target = static_cast<aura::Window*>(event->target());
205 aura::Window* window = static_cast<aura::Window*>(event->target()) local
    [all...]
  /external/chromium_org/win8/metro_driver/
direct3d_helper.cc 52 void Direct3DHelper::Initialize(winui::Core::ICoreWindow* window) {
53 window_ = window;
142 HWND window = NULL; local
143 interop->get_WindowHandle(&window);
150 window,
  /external/deqp/framework/platform/android/
tcuAndroidWindow.cpp 21 * \brief Android window.
33 // Window
35 Window::Window (ANativeWindow* window)
36 : m_window (window)
41 Window::~Window (void)
45 void Window::setBuffersGeometry (int width, int height, int32_t format)
50 IVec2 Window::getSize (void) cons
124 Window* const window = *winIter; local
146 Window* const window = m_windows[ndx]; local
170 Window* const window = m_windows[ndx]; local
183 Window* const window = m_windows[ndx]; local
    [all...]
  /external/libopus/celt/
entdec.c 226 ec_window window; local
229 window=_this->end_window;
233 window|=(ec_window)ec_read_byte_from_end(_this)<<available;
238 ret=(opus_uint32)window&(((opus_uint32)1<<_bits)-1U);
239 window>>=_bits;
241 _this->end_window=window;
modes.h 77 const opus_val16 *window; member in struct:OpusCustomMode
  /external/libopus/celt/tests/
test_unit_mdct.c 123 opus_val16 * window= (opus_val16*)malloc(sizeof(opus_val16)*nfft/2); local
132 window[k] = Q15ONE;
153 clt_mdct_backward(&cfg,in,out, window, nfft/2, 0, 1);
159 clt_mdct_forward(&cfg,in,out,window, nfft/2, 0, 1);
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inffast.c 80 unsigned wsize; /* window size or zero if not using window */
81 unsigned whave; /* valid bytes in the window */
82 unsigned wnext; /* window write index */
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
92 /* window position, window bytes to copy */
110 window = state->window;
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
inffast.c 80 unsigned wsize; /* window size or zero if not using window */
81 unsigned whave; /* valid bytes in the window */
82 unsigned wnext; /* window write index */
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
92 /* window position, window bytes to copy */
110 window = state->window;
    [all...]
  /external/speex/libspeex/
vorbis_psy.h 84 float *window; member in struct:__anon34712
  /external/zlib/src/contrib/masmx64/
inffas8664.c 91 /* 56 28 */ unsigned char FAR *window;/* size of window, wsize!=0 */ member in struct:inffast_ar
96 /* 92 48 */ unsigned wsize; /* window size */
97 /* 96 52 */ unsigned write; /* window write index */
134 ar.window = state->window;
  /external/zlib/src/
inffast.c 80 unsigned wsize; /* window size or zero if not using window */
81 unsigned whave; /* valid bytes in the window */
82 unsigned wnext; /* window write index */
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local
92 /* window position, window bytes to copy */
110 window = state->window;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
BrightnessDialog.java 27 import android.view.Window;
42 final Window window = getWindow(); local
44 window.setGravity(Gravity.TOP);
45 window.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
46 window.requestFeature(Window.FEATURE_NO_TITLE);
  /frameworks/native/opengl/tests/fillrate/
fillrate.cpp 49 EGLNativeWindowType window = windowSurface.getSurface(); local
55 dpy, configAttribs, window, &config);
61 surface = eglCreateWindowSurface(dpy, config, window, NULL);
  /frameworks/native/opengl/tests/swapinterval/
swapinterval.cpp 49 EGLNativeWindowType window = windowSurface.getSurface(); local
57 dpy, configAttribs, window, &config);
71 surface = eglCreateWindowSurface(dpy, config, window, NULL);
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 159 public void fillWindow(int position, CursorWindow window) {
164 window.acquireReference();
168 window.clear();
169 window.setStartPosition(position);
171 window.setNumColumns(columnNum);
172 while (moveToPosition(pos) && window.allocRow()) {
176 if (!window.putString(field, pos, i)) {
177 window.freeLastRow();
181 if (!window.putNull(pos, i)) {
182 window.freeLastRow()
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidateTextView.java 26 import android.view.Window;
165 Window window = mCandidateDialog.getWindow(); local
166 WindowManager.LayoutParams lp = window.getAttributes();
169 window.setAttributes(lp);
170 window.addFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
Xdbe.h 63 Window swap_window; /* window for which to swap buffers */
70 Window window; /* window that buffer belongs to */ member in struct:__anon45210
99 Window /* window */,

Completed in 2677 milliseconds

1 2 3 4 5 6 7 891011>>