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

1 2

  /external/chromium/chrome/browser/ui/views/tabs/
tab_renderer_data.cc 14 blocked(false),
33 blocked == data.blocked &&
tab_renderer_data.h 50 bool blocked; member in struct:TabRendererData
tab.cc 181 if (data().blocked == old.blocked)
184 if (data().blocked)
  /external/chromium/chrome/browser/
power_save_blocker.h 28 static void ApplyBlock(bool blocked);
  /external/webkit/Source/WebCore/storage/
IDBVersionChangeRequest.h 42 DEFINE_ATTRIBUTE_EVENT_LISTENER(blocked);
  /external/chromium/chrome/browser/resources/
collected_cookies.js 20 var blockedCookies = $('blocked-cookies');
40 var selected = $('blocked-cookies').selectedItem;
46 var selected = $('blocked-cookies').selectedItem;
53 ui.CookiesTree.decorate($('blocked-cookies'));
58 $('blocked-cookies').addEventListener('change', handleCookiesTreeChange);
  /external/wpa_supplicant_8/src/drivers/
rfkill.c 55 int blocked; member in struct:rfkill_data
86 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked");
89 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked");
96 if (new_blocked != rfkill->blocked) {
97 rfkill->blocked = new_blocked;
153 wpa_printf(MSG_INFO, "rfkill: WLAN hard blocked");
154 rfkill->blocked = 1;
156 wpa_printf(MSG_INFO, "rfkill: WLAN soft blocked");
157 rfkill->blocked = 1;
193 return rfkill->blocked;
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
HAREntry.js 101 var blocked; variable
112 blocked = waitForConnection;
114 blocked = 0;
121 blocked: blocked,
  /external/chromium/chrome/browser/notifications/
notification_exceptions_table_model.cc 116 std::vector<GURL> blocked(service_->GetBlockedOrigins());
117 entries_.reserve(allowed.size() + blocked.size());
120 for (size_t i = 0; i < blocked.size(); ++i)
121 entries_.push_back(Entry(blocked[i], CONTENT_SETTING_BLOCK));
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
createbug.py 52 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], blocked=blocks, component=self._options.component, cc=cc)
  /external/webkit/Source/WebCore/svg/
SVGUseElement.h 77 void setUpdatesBlocked(bool blocked) { m_updatesBlocked = blocked; }
  /external/quake/quake/src/QW/client/
pmove.c 67 returns the blocked flags (1 = floor, 2 = step / wall)
76 int i, blocked; local
78 blocked = 0;
80 blocked |= 1; // floor
82 blocked |= 2; // step
94 return blocked;
119 int blocked; local
123 blocked = 0;
158 blocked |= 1; // floor
162 blocked |= 2; // ste
    [all...]
  /external/valgrind/main/coregrind/
m_libcsignal.c 394 vki_sigset_t pending, blocked, allbutone; local
405 /* don't try for signals not blocked at the moment */
406 ir = VG_(sigprocmask)(VKI_SIG_SETMASK, NULL, &blocked);
409 /* pending = pending `intersect` blocked */
410 VG_(sigintersectset)(&pending, blocked);
421 pre: i is blocked and pending
435 blocked. */
486 vki_sigset_t pending, blocked, allbutone; local
500 /* don't try for signals not blocked at the moment */
501 ir = VG_(sigprocmask)(VKI_SIG_SETMASK, NULL, &blocked);
    [all...]
  /external/quake/quake/src/QW/server/
sv_phys.c 194 returns the blocked flags (1 = floor, 2 = step / wall)
203 int i, blocked; local
205 blocked = 0;
207 blocked |= 1; // floor
209 blocked |= 2; // step
221 return blocked;
250 int blocked; local
254 blocked = 0;
289 blocked |= 1; // floor
298 blocked |= 2; // ste
    [all...]
progdefs.h 104 func_t blocked; member in struct:__anon10616
  /external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.cc 253 void TabSpecificContentSettings::SetPopupsBlocked(bool blocked) {
254 content_blocked_[CONTENT_SETTINGS_TYPE_POPUPS] = blocked;
257 delegate_->OnContentSettingsAccessed(blocked);
tab_specific_content_settings.h 34 // |content_was_blocked| is true, if a content settings type was blocked
57 void SetPopupsBlocked(bool blocked);
63 // Returns whether a particular kind of content has been blocked for this
88 // Returns a CookiesTreeModel object for the recoreded blocked cookies.
168 // Stores which content setting types actually have blocked content.
171 // Stores if the blocked content was messaged to the user.
177 // Stores the blocked resources for each content type.
182 // Stores the blocked/allowed cookies.
189 // Stores whether the user can load blocked plugins on this page.
  /external/chromium/chrome/browser/tabs/
tab_strip_model.h 334 // Changes the blocked state of the tab at |index|.
335 void SetTabBlocked(int index, bool blocked);
353 // Returns true if the tab at |index| is blocked by a tab modal dialog.
562 blocked(false) {
607 // Is the tab interaction blocked by a modal dialog?
608 bool blocked; member in struct:TabStripModel::TabContentsData
tab_strip_model.cc 488 void TabStripModel::SetTabBlocked(int index, bool blocked) {
490 if (contents_data_[index]->blocked == blocked)
492 contents_data_[index]->blocked = blocked;
552 return contents_data_[index]->blocked;
    [all...]
  /external/quake/quake/src/QW/progs/
progdefs.h 85 func_t blocked; member in struct:__anon10568
  /external/quake/quake/src/WinQuake/
sv_phys.cpp 185 returns the blocked flags (1 = floor, 2 = step / wall)
194 int i, blocked; local
196 blocked = 0;
198 blocked |= 1; // floor
200 blocked |= 2; // step
212 return blocked;
241 int blocked; local
245 blocked = 0;
283 blocked |= 1; // floor
292 blocked |= 2; // ste
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.h 115 // Sets the blocked state of the tab.
266 blocked(false),
279 bool blocked; member in struct:TabRendererGtk::TabData
tab_renderer_gtk.cc 337 void TabRendererGtk::SetBlocked(bool blocked) {
338 if (data_.blocked == blocked)
340 data_.blocked = blocked;
345 return data_.blocked;
    [all...]
  /external/webkit/Source/WebCore/dom/
EventNames.h 39 macro(blocked) \
  /external/chromium/chrome/browser/ui/webui/options/
content_settings_handler.cc 483 std::vector<GURL> blocked(service->GetBlockedOrigins());
490 for (size_t i = 0; i < blocked.size(); ++i) {
492 GetNotificationExceptionForPage(blocked[i], CONTENT_SETTING_BLOCK));

Completed in 378 milliseconds

1 2