HomeSort by relevance Sort by last modified time
    Searched defs:owner (Results 1 - 25 of 852) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/compositor/
layer_owner_unittest.cc 15 LayerOwner owner; local
20 owner.SetLayer(layer);
28 scoped_ptr<Layer> old_layer(owner.RecreateLayer());
29 EXPECT_FALSE(owner.layer()->visible());
30 EXPECT_EQ(0.0f, owner.layer()->opacity());
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ItemReply.java 24 /** The node owner */
25 owner, enum constant in enum:ItemReply
  /external/chromium_org/content/browser/frame_host/
navigation_entry_screenshot_manager.h 46 NavigationControllerImpl* owner() { return owner_; } function in class:content::NavigationEntryScreenshotManager
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ChildFrameDisconnector.cpp 61 HTMLFrameOwnerElement* owner = m_frameOwners[i].get(); local
62 // Don't need to traverse up the tree for the first owner since no
64 if (!i || root().containsIncludingShadowDOM(owner))
65 owner->disconnectContentFrame();
  /external/chromium_org/third_party/WebKit/Source/core/frame/
RemoteFrame.cpp 13 inline RemoteFrame::RemoteFrame(FrameClient* client, FrameHost* host, FrameOwner* owner)
14 : Frame(client, host, owner)
18 PassRefPtrWillBeRawPtr<RemoteFrame> RemoteFrame::create(FrameClient* client, FrameHost* host, FrameOwner* owner)
20 return adoptRefWillBeNoop(new RemoteFrame(client, host, owner));
45 HTMLFrameOwnerElement* owner = deprecatedLocalOwner(); local
46 ASSERT(owner);
47 owner->setWidget(view);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
InbandTextTrack.cpp 106 HTMLMediaElement* owner = mediaElement(); local
107 ASSERT(owner);
108 RefPtrWillBeRawPtr<VTTCue> cue = VTTCue::create(owner->document(), start, end, content);
TrackBase.cpp 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
62 Node* TrackBase::owner() const function in class:blink::TrackBase
  /external/chromium_org/ui/shell_dialogs/
base_shell_dialog_win.h 32 HWND owner; member in struct:ui::BaseShellDialogImpl::RunState
38 // Called at the beginning of a modal dialog run. Disables the owner window
41 RunState BeginRun(HWND owner);
52 // owner. Must be called on the UI thread.
53 bool IsRunningDialogForOwner(HWND owner) const;
55 // Disables the window |owner|. Can be run from either the ui or the dialog
61 // thread, so we disable the owner manually after the Common dialog function
63 void DisableOwner(HWND owner);
75 void EnableOwner(HWND owner);
85 // same owner, even though they might be represented by different instance
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/dc/
SDL_sysmutex.c 33 Uint32 owner; member in struct:SDL_mutex
47 mutex->owner = 0;
76 if ( mutex->owner == this_thread ) {
84 mutex->owner = this_thread;
104 if ( SDL_ThreadID() != mutex->owner ) {
113 First reset the owner so another thread doesn't lock
117 mutex->owner = 0;
  /external/qemu/distrib/sdl-1.2.15/src/thread/generic/
SDL_sysmutex.c 32 Uint32 owner; member in struct:SDL_mutex
47 mutex->owner = 0;
83 if ( mutex->owner == this_thread ) {
91 mutex->owner = this_thread;
111 if ( SDL_ThreadID() != mutex->owner ) {
120 First reset the owner so another thread doesn't lock
124 mutex->owner = 0;
  /frameworks/base/services/core/java/com/android/server/am/
PendingIntentRecord.java 36 final ActivityManagerService owner; field in class:PendingIntentRecord
187 owner = _owner;
203 synchronized(owner) {
207 owner.cancelIntentSenderLocked(this, true);
229 userId = owner.getCurrentUserIdLocked();
252 owner.startActivitiesInPackage(uid, key.packageName, allIntents,
255 owner.startActivityInPackage(uid, key.packageName, finalIntent,
272 int sent = owner.broadcastIntentInPackage(key.packageName, uid,
286 owner.startServiceInPackage(uid,
315 owner.mHandler.sendMessage(owner.mHandler.obtainMessage
    [all...]
  /development/ndk/platforms/android-3/include/linux/mtd/
partitions.h 32 struct module *owner; member in struct:mtd_part_parser
37 #define put_partition_parser(p) do { module_put((p)->owner); } while(0)
  /external/chromium_org/ash/system/tray/
tray_details_view.h 24 explicit TrayDetailsView(SystemTrayItem* owner);
42 // transition, the default view should focus on the owner of this details
46 SystemTrayItem* owner() const { return owner_; } function in class:ash::TrayDetailsView
tray_item_more.h 24 TrayItemMore(SystemTrayItem* owner, bool show_more);
27 SystemTrayItem* owner() const { return owner_; } function in class:ash::TrayItemMore
tray_item_view.h 30 explicit TrayItemView(SystemTrayItem* owner);
39 SystemTrayItem* owner() const { return owner_; } function in class:ash::TrayItemView
tray_notification_view.h 33 TrayNotificationView(SystemTrayItem* owner, int icon_id);
76 SystemTrayItem* owner() { return owner_; } function in class:ash::TrayNotificationView
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_key_bindings_handler.h 62 Gtk2KeyBindingsHandler *owner; member in struct:libgtk2ui::Gtk2KeyBindingsHandler::Handler
  /external/chromium_org/chrome/browser/ui/views/
color_chooser_dialog.h 34 ExecuteOpenParams(SkColor color, RunState run_state, HWND owner);
37 HWND owner; member in struct:ColorChooserDialog::ExecuteOpenParams
41 // shown modal to |params.owner|. Once it's closed, calls back to
  /external/chromium_org/content/shell/browser/
shell_javascript_dialog_win.cc 23 ShellJavaScriptDialog* owner = local
25 owner->dialog_win_ = dialog;
26 SetDlgItemText(dialog, IDC_DIALOGTEXT, owner->message_text_.c_str());
27 if (owner->message_type_ == JAVASCRIPT_MESSAGE_TYPE_PROMPT)
29 owner->default_prompt_text_.c_str());
33 ShellJavaScriptDialog* owner = reinterpret_cast<ShellJavaScriptDialog*>( local
35 if (owner->dialog_win_) {
36 owner->dialog_win_ = 0;
37 owner->callback_.Run(false, base::string16());
38 owner->manager_->DialogClosed(owner)
43 ShellJavaScriptDialog* owner = reinterpret_cast<ShellJavaScriptDialog*>( local
    [all...]
  /external/chromium_org/remoting/host/win/
com_security.cc 34 ScopedSid owner; local
36 if (!MakeScopedAbsoluteSd(relative_sd, &absolute_sd, &dacl, &group, &owner,
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementCallbackQueue.h 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
53 ElementQueueId owner() const { return m_owner; } function in class:blink::CustomElementCallbackQueue
  /external/chromium_org/third_party/speex/include/speex/
speex_bits.h 54 int owner; /**< Does the struct "own" the "raw" buffer (member "chars") */ member in struct:SpeexBits
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
FieldInsnNode.java 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
45 * The internal name of the field's owner class (see
48 public String owner; field in class:FieldInsnNode
65 * @param owner the internal name of the field's owner class (see
72 final String owner,
77 this.owner = owner;
97 cv.visitFieldInsn(opcode, owner, name, desc);
101 return new FieldInsnNode(opcode, owner, name, desc);
    [all...]
MethodInsnNode.java 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
45 * The internal name of the method's owner class (see
48 public String owner; field in class:MethodInsnNode
66 * @param owner the internal name of the method's owner class (see
73 final String owner,
78 this.owner = owner;
98 mv.visitMethodInsn(opcode, owner, name, desc);
102 return new MethodInsnNode(opcode, owner, name, desc);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_sysmutex.c 37 pthread_t owner; member in struct:SDL_mutex
92 if ( mutex->owner == this_thread ) {
100 mutex->owner = this_thread;
128 if ( pthread_self() == mutex->owner ) {
133 First reset the owner so another thread doesn't lock
137 mutex->owner = 0;

Completed in 800 milliseconds

1 2 3 4 5 6 7 8 91011>>