Searched refs:owner (Results 1 - 25 of 693) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dchown.c8 int chown(const char* path, uid_t owner, gid_t group) { argument
9 return ki_chown(path, owner, group);
H A Dfchown.c8 int fchown(int fd, uid_t owner, gid_t group) { argument
9 return ki_fchown(fd, owner, group);
H A Dlchown.c8 int lchown(const char* path, uid_t owner, gid_t group) { argument
9 return ki_lchown(path, owner, group);
/external/chromium_org/ui/shell_dialogs/
H A Dbase_shell_dialog_win.cc28 BaseShellDialogImpl::RunState BaseShellDialogImpl::BeginRun(HWND owner) { argument
29 // Cannot run a modal shell dialog if one is already running for this owner.
30 DCHECK(!IsRunningDialogForOwner(owner));
31 // The owner must be a top level window, otherwise we could end up with two
33 DCHECK(!owner || owner == GetAncestor(owner, GA_ROOT));
36 run_state.owner = owner;
37 if (owner) {
59 DisableOwner(HWND owner) argument
73 EnableOwner(HWND owner) argument
[all...]
H A Dbase_shell_dialog_win.h32 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, eve
[all...]
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DItemReply.java24 /** The node owner */
25 owner, enum constant in enum:ItemReply
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DInterceptFieldFilter.java21 boolean acceptRead(Type owner, String name); argument
22 boolean acceptWrite(Type owner, String name); argument
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitable.java36 * @param owner The owner of the visitor, where that path may be
40 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor); argument
H A DXPathVisitor.java43 * <code>boolean visitComponentType(ExpressionOwner owner, ComponentType compType)</code>.
44 * The ExpressionOwner argument is the owner of the component, and can
55 * @param owner The owner of the expression, to which the expression can
60 public boolean visitLocationPath(ExpressionOwner owner, LocPathIterator path) argument
67 * @param owner The owner of the expression, to which the expression can
72 public boolean visitUnionPath(ExpressionOwner owner, UnionPathIterator path) argument
79 * @param owner The owner o
84 visitStep(ExpressionOwner owner, NodeTest step) argument
99 visitPredicate(ExpressionOwner owner, Expression pred) argument
111 visitBinaryOperation(ExpressionOwner owner, Operation op) argument
123 visitUnaryOperation(ExpressionOwner owner, UnaryOperation op) argument
135 visitVariableRef(ExpressionOwner owner, Variable var) argument
147 visitFunction(ExpressionOwner owner, Function func) argument
159 visitMatchPattern(ExpressionOwner owner, StepPattern pattern) argument
171 visitUnionPattern(ExpressionOwner owner, UnionPattern pattern) argument
183 visitStringLiteral(ExpressionOwner owner, XString str) argument
196 visitNumberLiteral(ExpressionOwner owner, XNumber num) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkManifest.cpp15 PassOwnPtrWillBeRawPtr<LinkManifest> LinkManifest::create(HTMLLinkElement* owner) argument
17 return adoptPtrWillBeNoop(new LinkManifest(owner));
20 LinkManifest::LinkManifest(HTMLLinkElement* owner) argument
21 : LinkResource(owner)
H A DLinkManifest.h21 static PassOwnPtrWillBeRawPtr<LinkManifest> create(HTMLLinkElement* owner);
32 explicit LinkManifest(HTMLLinkElement* owner);
/external/llvm/utils/
H A Dwciia.py6 Determines code owner of the file/folder relative to the llvm source root.
7 Code owner is determined from the content of the CODE_OWNERS.TXT
27 def process_files_and_folders(owner):
28 filesfolders = owner['filesfolders']
37 owner['paths'] = []
39 owner['paths'].append(path)
41 def process_code_owner(owner):
42 if 'filesfolders' in owner:
43 filesfolders = owner['filesfolders']
46 owner['filesfolder
[all...]
/external/chromium_org/ui/compositor/
H A Dlayer_owner_unittest.cc15 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/chromium_org/third_party/WebKit/Source/core/frame/
H A DRemoteFrame.cpp13 inline RemoteFrame::RemoteFrame(FrameClient* client, FrameHost* host, FrameOwner* owner) argument
14 : Frame(client, host, owner)
18 PassRefPtrWillBeRawPtr<RemoteFrame> RemoteFrame::create(FrameClient* client, FrameHost* host, FrameOwner* owner) argument
20 return adoptRefWillBeNoop(new RemoteFrame(client, host, owner));
45 HTMLFrameOwnerElement* owner = deprecatedLocalOwner(); local
46 ASSERT(owner);
47 owner->setWidget(view);
/external/chromium_org/content/shell/browser/
H A Dshell_javascript_dialog_win.cc23 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
43 ShellJavaScriptDialog* owner = reinterpret_cast<ShellJavaScriptDialog*>( local
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DFieldInsnNode.java45 * 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);
70 FieldInsnNode( final int opcode, final String owner, final String name, final String desc) argument
H A DMethodInsnNode.java45 * 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);
71 MethodInsnNode( final int opcode, final String owner, final String name, final String desc) argument
/external/qemu/distrib/sdl-1.2.15/src/thread/dc/
H A DSDL_sysmutex.c33 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/chromium_org/chrome/common/extensions/docs/server2/
H A Dgithub_file_system_provider.py12 '''Provides GithubFileSystems bound to an owner/repo pair.
18 def Create(self, owner, repo):
22 |owner| is the owner of the GitHub account, e.g. 'GoogleChrome'.
25 if owner == 'GoogleChrome' and repo == 'chrome-app-samples':
32 NewGithubFileSystem.Create(owner, repo, self._object_store_creator),
38 def Create(self, owner, repo):
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObjectChildList.cpp59 RenderObject* RenderObjectChildList::removeChildNode(RenderObject* owner, RenderObject* oldChild, bool notifyRenderer) argument
61 ASSERT(oldChild->parent() == owner);
68 AllowPaintInvalidationScope scoper(owner->frameView());
73 if (!owner->documentBeingDestroyed() && notifyRenderer && oldChild->everHadLayout()) {
87 if (!owner->documentBeingDestroyed() && oldChild->isSelectionBorder())
88 owner->view()->clearSelection();
90 if (!owner->documentBeingDestroyed() && notifyRenderer)
113 if (!owner->documentBeingDestroyed())
116 if (AXObjectCache* cache = owner->document().existingAXObjectCache())
117 cache->childrenChanged(owner);
122 insertChildNode(RenderObject* owner, RenderObject* newChild, RenderObject* beforeChild, bool notifyRenderer) argument
[all...]
H A DRenderObjectChildList.h56 RenderObject* removeChildNode(RenderObject* owner, RenderObject*, bool notifyRenderer = true);
57 void insertChildNode(RenderObject* owner, RenderObject* newChild, RenderObject* beforeChild, bool notifyRenderer = true);
58 void appendChildNode(RenderObject* owner, RenderObject* newChild, bool notifyRenderer = true) argument
60 insertChildNode(owner, newChild, 0, notifyRenderer);
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_source.cc21 base::ResetAndReturn(&stop_callback_).Run(owner());
23 owner().setReadyState(blink::WebMediaStreamSource::ReadyStateEnded);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A Dnpruntime_priv.h58 // We generally associate NPObjects with an owner. The owner of an NPObject
72 // PluginObject will be the "owner" for both Object1 and Object2.
74 // Register an NPObject with the runtime. If the owner is NULL, the
75 // object is treated as an owning object. If owner is not NULL,
76 // this object will be registered as owned by owner's top-level owner.
77 void _NPN_RegisterObject(NPObject*, NPObject* owner);
/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_detailed_view.h24 explicit NetworkDetailedView(SystemTrayItem* owner) argument
25 : TrayDetailsView(owner) {
/external/qemu/distrib/sdl-1.2.15/src/thread/generic/
H A DSDL_sysmutex.c32 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;

Completed in 665 milliseconds

1234567891011>>