/frameworks/base/core/tests/coretests/src/android/view/ |
ViewAttachView.java | 33 private boolean attached; field in class:ViewAttachView 58 if (attached) { 61 attached = true; 68 if (!attached) { 72 attached = false;
|
/external/chromium_org/components/nacl/common/ |
nacl_debug_exception_handler_win.cc | 32 bool attached = false; variable 40 attached = true; 43 message_loop_->PostTask(FROM_HERE, base::Bind(on_connected_, attached)); 45 if (attached) {
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8CustomElementLifecycleCallbacks.h | 51 static PassRefPtr<V8CustomElementLifecycleCallbacks> create(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); 58 V8CustomElementLifecycleCallbacks(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); 61 virtual void attached(Element*) OVERRIDE;
|
V8CustomElementLifecycleCallbacks.cpp | 48 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) 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) 73 if (!attached.IsEmpty()) 74 flags |= CustomElementLifecycleCallbacks::Attached; 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) 92 : CustomElementLifecycleCallbacks(flagSet(attached, detached, attributeChanged)) 98 , m_attached(toIsolate(executionContext), attached) 190 void V8CustomElementLifecycleCallbacks::attached(Element* element) function in class:WebCore::V8CustomElementLifecycleCallbacks [all...] |
/external/chromium_org/content/public/browser/ |
devtools_manager.h | 41 // Returns agent that has |client_host| attached to it if there is one. 57 typedef base::Callback<void(DevToolsAgentHost*, bool attached)> Callback;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementLifecycleCallbacks.h | 48 bool hasAttachedCallback() const { return m_which & Attached; } 49 virtual void attached(Element*) = 0; 60 Attached = 1 << 1,
|
CustomElementCallbackInvocation.cpp | 72 ASSERT(m_which == CustomElementLifecycleCallbacks::Attached || m_which == CustomElementLifecycleCallbacks::Detached); 78 case CustomElementLifecycleCallbacks::Attached: 79 callbacks()->attached(element); 120 case CustomElementLifecycleCallbacks::Attached:
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowFragment.java | 26 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;
|
/system/core/debuggerd/ |
backtrace.c | 65 static void dump_thread(log_t* log, pid_t tid, ptrace_context_t* context, bool attached, 87 if (!attached && ptrace(PTRACE_ATTACH, tid, 0, 0) < 0) { 110 if (!attached && ptrace(PTRACE_DETACH, tid, 0, 0) != 0) {
|
/external/chromium/chrome/browser/ui/views/ |
browser_bubble.h | 15 // 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/ |
extension_popup_gtk.h | 92 void OnDevToolsStateChanged(content::DevToolsAgentHost*, bool attached); 108 // Whether a devtools window is attached to this bubble.
|
extension_popup_gtk.cc | 106 content::DevToolsAgentHost* agent_host, bool attached) { 110 if (attached) {
|
/external/chromium_org/content/browser/devtools/ |
devtools_manager_impl.h | 80 void NotifyObservers(DevToolsAgentHost* agent_host, bool attached);
|
devtools_manager_impl.cc | 185 bool attached) { 188 (*it)->Run(agent_host, attached);
|
/external/qemu/hw/ |
pcmcia.h | 10 int attached; member in struct:__anon28169 27 /* Only valid if attached */
|
/external/chromium_org/chrome/browser/media_galleries/ |
media_galleries_dialog_controller.cc | 184 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;
|
media_galleries_dialog_controller.h | 84 // Get the set of permissions to attached galleries. 163 // Updates the model and view when a device is attached or detached. 166 // Fill |permissions| with a sorted list of either attached or unattached 168 void FillPermissions(bool attached,
|
/external/chromium_org/chrome/browser/guestview/ |
guestview.h | 91 bool attached() const { return !!embedder_web_contents_; } function in class:GuestView 132 // the guest is attached to a particular embedder.
|
/external/chromium_org/chrome/browser/ui/views/extensions/ |
extension_popup.h | 51 // |browser| is the browser to which the pop-up will be attached. NULL is a 110 void OnDevToolsStateChanged(content::DevToolsAgentHost*, bool attached);
|
/external/chromium_org/third_party/libusb/src/libusb/ |
core.c | 337 * - Enumerating the USB devices currently attached to the system 542 dev->attached = 1; 569 dev->attached = 0; 632 * Returns a list of USB devices currently attached to the system. This is [all...] |
/external/chromium_org/remoting/host/win/ |
host_service.cc | 100 // 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/chromium_org/apps/ |
shell_window_registry.h | 92 // attached to it, which should be restored during a reload of a corresponding 127 void OnDevToolsStateChanged(content::DevToolsAgentHost*, bool attached);
|
/external/chromium_org/extensions/browser/ |
process_manager.h | 196 void OnDevToolsStateChanged(content::DevToolsAgentHost*, bool attached);
|
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_shader_debug.spec | 42 This extension introduces a debug object that can be attached to 46 is maintained. A debug object can be attached, detached and queried 48 be attached to a single program object. 159 to each debug object that is attached to the program object.
|
/external/mesa3d/docs/ |
MESA_shader_debug.spec | 42 This extension introduces a debug object that can be attached to 46 is maintained. A debug object can be attached, detached and queried 48 be attached to a single program object. 159 to each debug object that is attached to the program object.
|