Searched defs:attached (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/components/nacl/common/
H A Dnacl_debug_exception_handler_win.cc32 bool attached = false; variable
40 attached = true;
43 message_loop_->PostTask(FROM_HERE, base::Bind(on_connected_, attached));
45 if (attached) {
/external/chromium_org/chrome/browser/guestview/
H A Dguestview.h91 bool attached() const { return !!embedder_web_contents_; } function in class:GuestView
132 // the guest is attached to a particular embedder.
/external/chromium/chrome/browser/ui/views/
H A Dbrowser_bubble.h15 // A class for creating a floating window that is "attached" to a particular
25 // Called when the Browser Window that this bubble is attached to moves.
28 // Called with the Browser Window that this bubble is attached to is
62 bool attached() const { return attached_; } function in class:BrowserBubble
114 // The frame that this bubble is attached to.
136 // Is the bubble attached to a Browser window.
/external/chromium_org/chrome/browser/ui/gtk/extensions/
H A Dextension_popup_gtk.cc106 content::DevToolsAgentHost* agent_host, bool attached) {
110 if (attached) {
105 OnDevToolsStateChanged( content::DevToolsAgentHost* agent_host, bool attached) argument
/external/chromium_org/content/browser/devtools/
H A Ddevtools_manager_impl.cc185 bool attached) {
188 (*it)->Run(agent_host, attached);
184 NotifyObservers(DevToolsAgentHost* agent_host, bool attached) argument
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8CustomElementLifecycleCallbacks.cpp48 V(attached, Attached) \
52 PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ExecutionContext* executionContext, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged) argument
65 return adoptRef(new V8CustomElementLifecycleCallbacks(executionContext, prototype, created, attached, detached, attributeChanged));
68 static CustomElementLifecycleCallbacks::CallbackType flagSet(v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged) argument
73 if (!attached.IsEmpty())
91 V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ExecutionContext* executionContext, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged) argument
92 : CustomElementLifecycleCallbacks(flagSet(attached, detached, attributeChanged))
98 , m_attached(toIsolate(executionContext), attached)
190 void V8CustomElementLifecycleCallbacks::attached(Element* element) function in class:WebCore::V8CustomElementLifecycleCallbacks
H A DCustomElementConstructorBuilder.cpp148 v8::Handle<v8::Function> attached = retrieveCallback(isolate, "attachedCallback"); local
152 m_callbacks = V8CustomElementLifecycleCallbacks::create(executionContext.get(), m_prototype, created, attached, detached, attributeChanged);
/external/qemu/hw/
H A Dpcmcia.h10 int attached; member in struct:__anon25788
27 /* Only valid if attached */
/external/chromium_org/apps/
H A Dshell_window_registry.cc231 content::DevToolsAgentHost* agent_host, bool attached) {
242 if (attached)
230 OnDevToolsStateChanged( content::DevToolsAgentHost* agent_host, bool attached) argument
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_popup.cc129 content::DevToolsAgentHost* agent_host, bool attached) {
134 if (attached) {
128 OnDevToolsStateChanged( content::DevToolsAgentHost* agent_host, bool attached) argument
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin.h44 bool attached() const { return attached_; } function in class:content::BrowserPlugin
219 // does an initial navigation or is attached to a newly created guest, it
318 // This indicates whether this BrowserPlugin has been attached to a
/external/chromium_org/remoting/host/win/
H A Dhost_service.cc100 // Get the attached session ID from another observer watching the same WTS
113 // attached to |terminal_id|.
161 bool attached = LookupTerminalId(session_id, &terminal_id); local
169 // if it is now attached to a different client.
171 (!attached || !(i->terminal_id == terminal_id))) {
178 // The client currently attached to |session_id| was attached to a different
180 if (attached && i->terminal_id == terminal_id &&
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFragment.java26 private boolean attached; field in class:ShadowFragment
70 throw new IllegalStateException("Fragment " + this + " not attached to Activity");
116 throw new IllegalStateException("Fragment " + this + " not attached to Activity");
124 throw new IllegalStateException("Fragment " + this + " not attached to Activity");
130 attached = isAttached;
134 return attached;
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_dialog_controller.cc184 bool attached,
189 if (attached == iter->second.pref_info.IsGalleryAvailable())
194 if (attached == iter->pref_info.IsGalleryAvailable())
204 GalleryPermissionsVector attached; local
205 FillPermissions(true, &attached);
206 return attached;
183 FillPermissions( bool attached, MediaGalleriesDialogController::GalleryPermissionsVector* permissions) const argument
H A Dmedia_galleries_preferences.cc346 base::string16 attached; local
349 attached = l10n_util::GetStringUTF16(
352 attached = l10n_util::GetStringFUTF16(
356 attached = l10n_util::GetStringUTF16(
361 return attached;
/external/chromium_org/content/browser/browser_plugin/
H A Dbrowser_plugin_guest.h84 // A BrowserPluginGuest is said to be "attached" if it has an embedder.
181 // attached.
255 // Returns whether the guest is attached to an embedder.
256 bool attached() const { return embedder_web_contents_ != NULL; } function in class:content::BrowserPluginGuest
324 // has been attached to a BrowserPlugin. Once the first navigation commits, we
586 // this guest is attached.
597 // once the guest is attached to a particular embedder.
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_named_pipe.c66 int attached; member in struct:wpa_ctrl_dst
293 dst->attached = 1;
294 wpa_printf(MSG_DEBUG, "CTRL_IFACE monitor attached");
298 dst->attached = 0;
503 if (dst->attached && level >= dst->debug_level) {
/external/chromium/chrome/browser/debugger/
H A Ddevtools_http_protocol_handler.cc225 bool attached; member in struct:PageInfo
254 page_info.attached = client_host != NULL;
282 if (i->attached) {
310 if (!i->attached) {
/external/chromium_org/extensions/browser/
H A Dprocess_manager.cc674 bool attached) {
687 if (attached) {
672 OnDevToolsStateChanged( content::DevToolsAgentHost* agent_host, bool attached) argument
/external/chromium_org/third_party/skia/src/gpu/
H A DGrGpu.cpp144 bool attached = this->attachStencilBufferToRenderTarget(sb, rt); local
145 if (!attached) {
148 return attached;
153 // attached to an RT for the first time. When we start matching
/external/chromium_org/tools/traceline/svgui/
H A Dtraceline.js459 'attached': false,
463 this.attached = true;
473 this.attached = false;
/external/skia/src/gpu/
H A DGrGpu.cpp144 bool attached = this->attachStencilBufferToRenderTarget(sb, rt); local
145 if (!attached) {
148 return attached;
153 // attached to an RT for the first time. When we start matching
/external/chromium_org/third_party/libusb/src/libusb/
H A Dlibusbi.h309 int attached; member in struct:libusb_device
/external/chromium_org/ui/aura/
H A Droot_window.cc555 void RootWindow::OnWindowAddedToRootWindow(Window* attached) { argument
556 if (attached->IsVisible() &&
557 attached->ContainsPointInRoot(GetLastMouseLocationInRoot())) {

Completed in 2387 milliseconds