Searched refs:owner (Results 1 - 25 of 646) 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/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/bindings/v8/custom/
H A DV8NodeListCustom.cpp50 Node* owner = static_cast<LiveNodeList*>(impl)->ownerNode();
51 if (!owner)
53 return V8GCController::opaqueRootForGC(owner, isolate);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObjectChildList.cpp56 RenderObject* RenderObjectChildList::removeChildNode(RenderObject* owner, RenderObject* oldChild, bool notifyRenderer) argument
58 ASSERT(oldChild->parent() == owner);
66 if (!owner->documentBeingDestroyed() && notifyRenderer && oldChild->everHadLayout()) {
70 owner->view()->repaint();
83 if (!owner->documentBeingDestroyed() && oldChild->isSelectionBorder())
84 owner->view()->clearSelection();
86 if (!owner->documentBeingDestroyed() && notifyRenderer)
109 if (!owner->documentBeingDestroyed())
112 if (AXObjectCache* cache = owner->document()->existingAXObjectCache())
113 cache->childrenChanged(owner);
118 insertChildNode(RenderObject* owner, RenderObject* newChild, RenderObject* beforeChild, bool notifyRenderer) argument
[all...]
H A DRenderObjectChildList.h53 RenderObject* removeChildNode(RenderObject* owner, RenderObject*, bool notifyRenderer = true);
54 void insertChildNode(RenderObject* owner, RenderObject* newChild, RenderObject* beforeChild, bool notifyRenderer = true);
55 void appendChildNode(RenderObject* owner, RenderObject* newChild, bool notifyRenderer = true) argument
57 insertChildNode(owner, newChild, 0, notifyRenderer);
/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/content/shell/
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, string16());
38 owner
43 ShellJavaScriptDialog* owner = reinterpret_cast<ShellJavaScriptDialog*>( local
[all...]
/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/browser/ui/gtk/infobars/
H A Dalternate_nav_infobar_gtk.cc13 InfoBar* AlternateNavInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { argument
14 return new AlternateNavInfoBarGtk(owner, this);
21 InfoBarService* owner,
23 : InfoBarGtk(owner, delegate) {
20 AlternateNavInfoBarGtk( InfoBarService* owner, AlternateNavInfoBarDelegate* delegate) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkResource.cpp41 LinkResource::LinkResource(HTMLLinkElement* owner) argument
42 : m_owner(owner)
50 LinkRequestBuilder::LinkRequestBuilder(HTMLLinkElement* owner) argument
51 : m_owner(owner)
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DThreadingManager.java52 protected final AssetManager owner; field in class:ThreadingManager
56 public ThreadingManager(AssetManager owner){ argument
57 this.owner = owner;
75 return owner.loadAsset(new AssetKey(resourceName));
85 // owner.loadContents(resourceNames);
/external/chromium_org/chrome/android/testshell/
H A Dtestshell_stubs.cc29 InfoBarService* owner,
31 : AutoLoginInfoBarDelegate(owner, params), params_() {}
53 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { argument
59 InfoBar* TranslateInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { argument
28 AutoLoginInfoBarDelegateAndroid( InfoBarService* owner, const AutoLoginInfoBarDelegate::Params& params) argument
/external/chromium_org/chrome/browser/android/
H A Dtab_android_test_stubs.cc29 InfoBarService* owner,
31 : AutoLoginInfoBarDelegate(owner, params), params_() {}
53 InfoBar* ConfirmInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { argument
59 InfoBar* TranslateInfoBarDelegate::CreateInfoBar(InfoBarService* owner) { argument
28 AutoLoginInfoBarDelegateAndroid( InfoBarService* owner, const AutoLoginInfoBarDelegate::Params& params) argument
/external/chromium_org/third_party/WebKit/Source/bindings/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/webkit/support/mac/
H A DDumpRenderTreePasteboard.h44 - (NSInteger)declareType:(NSString *)type owner:(id)newOwner;
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DAmbientLight.java18 public void computeLastDistance(Spatial owner) { argument
/external/chromium/chrome/browser/ui/views/location_bar/
H A Dclick_handler.cc13 ClickHandler::ClickHandler(const views::View* owner, argument
15 : owner_(owner),
/external/chromium_org/ash/system/chromeos/network/
H A Dnetwork_detailed_view.h26 explicit NetworkDetailedView(SystemTrayItem* owner) argument
27 : TrayDetailsView(owner) {
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackList.idl28 GenerateIsReachable=owner

Completed in 731 milliseconds

1234567891011>>