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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
chown.c 8 int chown(const char* path, uid_t owner, gid_t group) {
9 return ki_chown(path, owner, group);
fchown.c 8 int fchown(int fd, uid_t owner, gid_t group) {
9 return ki_fchown(fd, owner, group);
lchown.c 8 int lchown(const char* path, uid_t owner, gid_t group) {
9 return ki_lchown(path, owner, group);
  /external/chromium_org/ui/shell_dialogs/
base_shell_dialog_win.cc 28 BaseShellDialogImpl::RunState BaseShellDialogImpl::BeginRun(HWND owner) {
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) {
    [all...]
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/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
InterceptFieldFilter.java 21 boolean acceptRead(Type owner, String name);
22 boolean acceptWrite(Type owner, String name);
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitable.java 36 * @param owner The owner of the visitor, where that path may be
40 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor);
XPathVisitor.java 43 * <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)
67 * @param owner The owner of the expression, to which the expression can
72 public boolean visitUnionPath(ExpressionOwner owner, UnionPathIterator path)
79 * @param owner The owner of the expression, to which the expression can
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
LinkManifest.cpp 15 PassOwnPtrWillBeRawPtr<LinkManifest> LinkManifest::create(HTMLLinkElement* owner)
17 return adoptPtrWillBeNoop(new LinkManifest(owner));
20 LinkManifest::LinkManifest(HTMLLinkElement* owner)
21 : LinkResource(owner)
LinkManifest.h 21 static PassOwnPtrWillBeRawPtr<LinkManifest> create(HTMLLinkElement* owner);
32 explicit LinkManifest(HTMLLinkElement* owner);
  /external/llvm/utils/
wciia.py 6 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['filesfolders'] = owner['description'
    [all...]
  /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/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/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/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/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObjectChildList.cpp 59 RenderObject* RenderObjectChildList::removeChildNode(RenderObject* owner, RenderObject* oldChild, bool notifyRenderer)
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);
    [all...]
RenderObjectChildList.h 56 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)
60 insertChildNode(owner, newChild, 0, notifyRenderer);
  /external/chromium_org/ash/system/chromeos/network/
network_detailed_view.h 24 explicit NetworkDetailedView(SystemTrayItem* owner)
25 : TrayDetailsView(owner) {
  /external/chromium_org/content/renderer/media/
media_stream_source.cc 21 base::ResetAndReturn(&stop_callback_).Run(owner());
23 owner().setReadyState(blink::WebMediaStreamSource::ReadyStateEnded);
media_stream_audio_track_sink.h 49 const scoped_refptr<MediaStreamAudioTrackSink>& owner) const {
50 return owner->IsEqual(sink_);
57 const scoped_refptr<MediaStreamAudioTrackSink>& owner) const {
58 return owner->IsEqual(sink_);
  /external/chromium_org/chrome/common/extensions/docs/server2/
github_file_system_provider.py 12 '''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/bindings/core/v8/
npruntime_priv.h 58 // 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);
  /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/tools/metrics/actions/
extract_actions_test.py 13 ONE_OWNER = '<owner>name1@google.com</owner>\n'
15 <owner>name1@google.com</owner>\n
16 <owner>name2@google.com</owner>\n
44 ' <owner>Please list the metric\'s owners. '
45 'Add more owner tags as needed.</owner>\n'
54 ' <owner>name1@google.com</owner>\n
    [all...]

Completed in 5075 milliseconds

1 2 3 4 5 6 7 8 91011>>