/external/chromium_org/base/win/ |
message_window.h | 43 const string16& window_name); 48 // |window_name|. 49 static HWND FindWindow(const string16& window_name); 57 const wchar_t* window_name);
|
message_window.cc | 89 const string16& window_name) { 90 return DoCreate(message_callback, window_name.c_str()); 94 HWND MessageWindow::FindWindow(const string16& window_name) { 96 window_name.c_str()); 100 const wchar_t* window_name) { 108 window_ = CreateWindow(MAKEINTATOM(window_class.atom()), window_name, 0, 0, 0,
|
/external/chromium_org/chrome/browser/ui/ |
browser_window_state.cc | 47 const std::string& window_name) 49 window_name_(window_name) {} 80 const std::string& window_name, 82 DCHECK(!window_name.empty()); 84 if (prefs->FindPreference(window_name.c_str())) { 86 new DictionaryPrefUpdate(prefs, window_name.c_str())); 89 new WindowPlacementPrefUpdate(prefs, window_name)); 93 const std::string& window_name, 95 DCHECK(!window_name.empty()); 96 if (prefs->FindPreference(window_name.c_str()) [all...] |
browser_window_state.h | 30 // of the window that is stored in the given PrefService. If the window_name 34 const std::string& window_name, 39 const std::string& window_name,
|
/external/chromium_org/ui/views/widget/ |
widget_delegate.cc | 118 std::string window_name = GetWindowName(); local 119 if (!ViewsDelegate::views_delegate || window_name.empty()) 123 GetWidget(), window_name, bounds, show_state); 130 std::string window_name = GetWindowName(); local 131 if (!ViewsDelegate::views_delegate || window_name.empty()) 135 widget, window_name, bounds, show_state);
|
/external/chromium_org/ui/views/ |
views_delegate.cc | 21 const std::string& window_name, 28 const std::string& window_name,
|
views_delegate.h | 74 const std::string& window_name, 81 const std::string& window_name,
|
/external/chromium_org/chrome/browser/ui/views/ |
chrome_views_delegate.h | 21 const std::string& window_name, 26 const std::string& window_name,
|
chrome_views_delegate.cc | 140 const std::string& window_name, 148 chrome::GetWindowPlacementDictionaryReadWrite(window_name, prefs); 166 const std::string& window_name, 173 DCHECK(prefs->FindPreference(window_name.c_str())); 175 prefs->GetDictionary(window_name.c_str());
|
/external/chromium_org/third_party/webrtc/modules/desktop_capture/ |
window_capturer_x11.cc | 401 XTextProperty window_name; local 402 window_name.value = NULL; 404 status = XGetWMName(display(), window, &window_name); 405 if (status && window_name.value && window_name.nitems) { 408 status = Xutf8TextPropertyToTextList(display(), &window_name, &list, 421 if (window_name.value) 422 XFree(window_name.value);
|
mouse_cursor_monitor_mac.mm | 150 CFStringRef window_name = reinterpret_cast<CFStringRef>( 152 if (window_name && CFStringCompare(window_name, CFSTR("Dock"), 0) == 0)
|
/external/chromium_org/third_party/webrtc/base/ |
x11windowpicker.cc | 646 XTextProperty window_name; local 647 window_name.value = NULL; 649 status = XGetWMName(display_, window, &window_name); 650 if (status && window_name.value && window_name.nitems) { 653 status = Xutf8TextPropertyToTextList(display_, &window_name, &list, 667 if (window_name.value != NULL) { 668 XFree(window_name.value);
|
macwindowpicker.cc | 137 std::string window_name; local 138 ToUtf8(window_name_ref, &window_name); 149 << window_name local
|
/external/chromium_org/chrome/browser/accessibility/ |
accessibility_events.cc | 77 const std::string& window_name) 78 : AccessibilityControlInfo(profile, window_name) {
|
accessibility_events.h | 98 AccessibilityWindowInfo(Profile* profile, const std::string& window_name);
|
/external/opencv/cxcore/include/ |
cxcore.hpp | 125 void show( const char* window_name ); 308 void show( const char* window_name );
|
/external/libpng/contrib/gregbook/ |
rpng-x.c | 120 static char titlebar[1024], *window_name = titlebar; variable 563 if (!XStringListToTextProperty(&window_name, 1, pWindowName))
|
rpng2-x.c | 181 static char titlebar[1024], *window_name = titlebar; variable [all...] |
/external/chromium_org/chrome/test/chromedriver/ |
session_commands.cc | 329 std::string window_name; 330 if (!result->GetAsString(&window_name)) 332 if (window_name == name) {
|