Searched refs:owner (Results 26 - 50 of 409) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/views/bubble/
H A Dborder_widget_win.cc17 void BorderWidgetWin::Init(BorderContents* border_contents, HWND owner) { argument
21 WidgetWin::Init(owner, gfx::Rect());
23 SetWindowPos(owner, 0, 0, 0, 0,
/external/webkit/Source/WebCore/bindings/js/
H A DJSNodeFilterCondition.h35 static PassRefPtr<JSNodeFilterCondition> create(JSC::JSGlobalData& globalData, NodeFilter* owner, JSC::JSValue filter) argument
37 return adoptRef(new JSNodeFilterCondition(globalData, owner, filter));
41 JSNodeFilterCondition(JSC::JSGlobalData&, NodeFilter* owner, JSC::JSValue filter);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DTilesManager.cpp175 TextureOwner* owner = m_textures[i]->owner(); local
176 if (owner)
177 sparedDrawCount = std::max(sparedDrawCount, owner->drawCount());
200 TextureOwner* owner = textures[i]->owner(); local
201 if (!owner || owner->drawCount() < sparedDrawCount) {
206 } else if (owner) {
207 // simply detach textures from owner
298 getAvailableTexture(Tile* owner) argument
[all...]
H A DTileTexture.h55 bool acquire(TextureOwner* owner);
56 bool release(TextureOwner* owner);
58 // set the texture owner if not busy. Return false if busy, true otherwise.
59 bool setOwner(TextureOwner* owner);
62 TextureOwner* owner() { return m_owner; } // only used by the consumer thread function in class:WebCore::TileTexture
/external/bison/
H A DGNUmakefile40 export TAR_OPTIONS = --owner=0 --group=0 --numeric-owner
/external/chromium/chrome/browser/extensions/
H A Dexternal_extension_loader.cc18 ExternalExtensionProviderImpl* owner) {
20 owner_ = owner;
17 Init( ExternalExtensionProviderImpl* owner) argument
/external/kernel-headers/original/linux/mtd/
H A Dpartitions.h62 struct module *owner; member in struct:mtd_part_parser
72 #define put_partition_parser(p) do { module_put((p)->owner); } while(0)
/external/proguard/src/proguard/gui/
H A DKeepSpecificationsPanel.java42 public KeepSpecificationsPanel(JFrame owner, argument
49 super(owner, true);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DImageLayerChromium.h51 static PassRefPtr<ImageLayerChromium> create(GraphicsLayerChromium* owner = 0);
66 ImageLayerChromium(GraphicsLayerChromium* owner);
H A DWebGLLayerChromium.h46 static PassRefPtr<WebGLLayerChromium> create(GraphicsLayerChromium* owner = 0);
62 explicit WebGLLayerChromium(GraphicsLayerChromium* owner);
H A DCanvasLayerChromium.h51 explicit CanvasLayerChromium(GraphicsLayerChromium* owner);
H A DImageLayerChromium.cpp44 PassRefPtr<ImageLayerChromium> ImageLayerChromium::create(GraphicsLayerChromium* owner) argument
46 return adoptRef(new ImageLayerChromium(owner));
49 ImageLayerChromium::ImageLayerChromium(GraphicsLayerChromium* owner) argument
50 : ContentLayerChromium(owner)
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCCanvasLayerImpl.h37 static PassRefPtr<CCCanvasLayerImpl> create(LayerChromium* owner) argument
39 return adoptRef(new CCCanvasLayerImpl(owner));
/external/chromium/chrome/browser/ui/views/location_bar/
H A Dclick_handler.h22 ClickHandler(const views::View* owner, LocationBarView* location_bar);
/external/kernel-headers/original/linux/
H A Dcdev.h7 struct module *owner; member in struct:cdev
H A Dspinlock_types.h27 void *owner; member in struct:__anon7130
43 void *owner; member in struct:__anon7131
70 .owner = SPINLOCK_OWNER_INIT, \
76 .owner = SPINLOCK_OWNER_INIT, \
/external/webkit/Source/WebCore/bindings/v8/
H A Dnpruntime_priv.h62 // We generally associate NPObjects with an owner. The owner of an NPObject
76 // PluginObject will be the "owner" for both Object1 and Object2.
78 // Register an NPObject with the runtime. If the owner is NULL, the
79 // object is treated as an owning object. If owner is not NULL,
80 // this object will be registered as owned by owner's top-level owner.
81 void _NPN_RegisterObject(NPObject*, NPObject* owner);
/external/webkit/Source/WebCore/platform/chromium/
H A DDataTransferItemsChromium.cpp42 PassRefPtr<DataTransferItemsChromium> DataTransferItemsChromium::create(PassRefPtr<Clipboard> owner, ScriptExecutionContext* context) argument
44 return adoptRef(new DataTransferItemsChromium(owner, context));
47 DataTransferItemsChromium::DataTransferItemsChromium(PassRefPtr<Clipboard> owner, ScriptExecutionContext* context) argument
48 : m_owner(owner)
H A DDataTransferItemChromium.cpp45 PassRefPtr<DataTransferItemChromium> DataTransferItemChromium::createFromPasteboard(PassRefPtr<Clipboard> owner, ScriptExecutionContext* context, const String& type) argument
48 return adoptRef(new DataTransferItemChromium(owner, context, PasteboardSource, DataTransferItem::kindString, type, ""));
49 return adoptRef(new DataTransferItemChromium(owner, context, PasteboardSource, DataTransferItem::kindFile, type, ""));
52 PassRefPtr<DataTransferItemChromium> DataTransferItemChromium::create(PassRefPtr<Clipboard> owner, argument
57 return adoptRef(new DataTransferItemChromium(owner, context, InternalSource, DataTransferItem::kindString, type, data));
60 DataTransferItemChromium::DataTransferItemChromium(PassRefPtr<Clipboard> owner, ScriptExecutionContext* context, DataSource source, const String& kind, const String& type, const String& data) argument
61 : m_owner(owner)
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraintDistLimit.java31 * the old memory address of the constraint owner
50 Object owner = this.owner.getObject();
51 AnimData animData = blenderContext.getAnimData(this.owner.getOma());
53 if(owner instanceof Spatial) {
54 Vector3f targetLocation = ((Spatial) owner).getWorldTranslation();
56 BlenderTrack blenderTrack = this.getTrack(owner, animData.skeleton, animation);
70 if(owner instanceof Spatial) {
73 Matrix4f m = this.owner.getParentWorldTransformMatrix();
75 Matrix4f ownerWorldMatrix = this.owner
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DWriteBarrier.h58 void set(JSGlobalData& globalData, const JSCell* owner, T* value) argument
61 writeBarrier(globalData, owner, this->m_cell);
63 ASSERT(!isZombie(owner));
111 void set(JSGlobalData& globalData, const JSCell* owner, JSValue value) argument
114 ASSERT(!isZombie(owner));
118 writeBarrier(globalData, owner, value);
164 WriteBarrier(JSGlobalData& globalData, const JSCell* owner, T* value) argument
166 this->set(globalData, owner, value);
177 WriteBarrier(JSGlobalData& globalData, const JSCell* owner, JSValue value) argument
179 this->set(globalData, owner, valu
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dshell_dialogs_win.cc231 bool SaveFileAsWithFilter(HWND owner, argument
259 save_as.hwndOwner = owner;
346 // 'owner' is the window to which the dialog box is modal, NULL for a modeless
351 bool SaveFileAs(HWND owner, argument
360 return SaveFileAsWithFilter(owner,
406 HWND owner; member in struct:BaseShellDialogImpl::RunState
412 // Called at the beginning of a modal dialog run. Disables the owner window
415 RunState BeginRun(HWND owner);
426 // owner. Must be called on the UI thread.
427 bool IsRunningDialogForOwner(HWND owner) cons
482 BeginRun(HWND owner) argument
513 DisableOwner(HWND owner) argument
526 EnableOwner(HWND owner) argument
557 ExecuteSelectParams(Type type, const std::wstring& title, const FilePath& default_path, const FileTypeInfo* file_types, int file_type_index, const std::wstring& default_extension, RunState run_state, HWND owner, void* params) argument
587 HWND owner; member in struct:SelectFileDialogImpl::ExecuteSelectParams
777 RunSelectFolderDialog(const std::wstring& title, HWND owner, FilePath* path) argument
829 RunOpenFileDialog( const std::wstring& title, const std::wstring& filter, HWND owner, FilePath* path) argument
884 RunOpenMultiFileDialog( const std::wstring& title, const std::wstring& filter, HWND owner, std::vector<FilePath>* paths) argument
[all...]
/external/valgrind/main/drd/
H A Ddrd_mutex.c80 p->owner = DRD_INVALID_THREADID;
92 DRD_(trace_msg)("[%d] mutex_destroy %s 0x%lx rc %d owner %d",
96 p ? p->owner : DRD_INVALID_THREADID);
101 p->a1, p->recursion_count, p->owner };
199 p->a1, p->recursion_count, p->owner };
244 DRD_(trace_msg)("[%d] %s %s 0x%lx rc %d owner %d",
249 p ? p->owner : DRD_INVALID_THREADID);
266 && p->owner == DRD_(thread_get_running_tid)()
271 p->a1, p->recursion_count, p->owner };
294 DRD_(trace_msg)("[%d] %s %s 0x%lx rc %d owner
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAbsPathChecker.java55 * @param owner The owner of the expression, to which the expression can
60 public boolean visitFunction(ExpressionOwner owner, Function func) argument
70 * @param owner The owner of the expression, to which the expression can
75 public boolean visitVariableRef(ExpressionOwner owner, Variable var) argument
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DIFrameContentLayerAndroid.h38 IFrameContentLayerAndroid(RenderLayer* owner) argument
39 : ScrollableLayerAndroid(owner) {}

Completed in 415 milliseconds

1234567891011>>