Searched defs:owner (Results 176 - 200 of 264) sorted by relevance

1234567891011

/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DLocPathIterator.java920 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
922 if(visitor.visitLocationPath(owner, this))
924 visitor.visitStep(owner, this);
/external/bison/lib/glthread/
H A Dlock.h335 pthread_t owner; member in struct:__anon322
568 thread_t owner; member in struct:__anon323
719 DWORD owner; member in struct:__anon329
/external/chromium/chrome/browser/ui/views/
H A Dconstrained_window_views.cc208 return container_->owner()->profile()->IsOffTheRecord()
571 TabContents* owner,
573 : owner_(owner),
579 owner->GetNativeView());
570 ConstrainedWindowViews( TabContents* owner, views::WindowDelegate* window_delegate) argument
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/icu4c/i18n/
H A Dnfrs.cpp182 NFRuleSet::parseRules(UnicodeString& description, const RuleBasedNumberFormat* owner, UErrorCode& status) argument
207 NFRule::makeRules(currentDescription, this, rules.last(), owner, rules, status);
/external/kernel-headers/original/linux/
H A Ddevice.h97 struct module * owner; member in struct:device_driver
141 struct module * owner; member in class:__anon7697
274 extern struct class *class_create(struct module *owner, char *name);
H A Dif_pppox.h229 struct module *owner; member in struct:pppox_proto
H A Dnetfilter.h101 struct module *owner; member in struct:nf_hook_ops
129 struct module *owner; member in struct:nf_sockopt_ops
H A Drtc.h139 struct module *owner; member in struct:rtc_device
176 struct module *owner);
H A Di2c.h113 * The driver.owner field should be set to the module owner of this driver.
220 struct module *owner; member in struct:i2c_adapter
/external/kernel-headers/original/linux/mtd/
H A Dmtd.h208 struct module *owner; member in struct:mtd_info
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionSystem.java451 (excludeObject == null || segment.owner != excludeObject) &&
498 (excludeObject == null || segment.owner != excludeObject) &&
676 public GameObject owner; field in class:CollisionSystem.LineSegment
693 owner = ownerObject;
831 ((LineSegment)entry).owner = null;
/external/skia/src/core/
H A DSkPathRef.h148 void addOwner(SkPath* owner) { argument
151 SkASSERT_X(fOwners[i] != owner);
153 *fOwners.append() = owner;
158 void removeOwner(SkPath* owner) { argument
164 found = (owner == fOwners[i]);
/external/v8/src/
H A Dstore-buffer.cc388 reinterpret_cast<PagedSpace*>(page->owner()),
638 if (chunk->owner() == heap_->lo_space()) {
647 PagedSpace* owner = reinterpret_cast<PagedSpace*>(page->owner()); local
649 owner,
651 (owner == heap_->map_space() ?
/external/valgrind/main/helgrind/
H A Dhg_wordset.c136 WordSetU* owner; /* for sanity checking */ member in struct:__anon15110
191 wv->owner = wsu;
202 void (*dealloc)(void*) = wv->owner->dealloc;
285 tl_assert(wv->owner == wsu); /* YYY */
304 tl_assert(wv->owner == wsu); /* YYY */
320 tl_assert(wv_new->owner == wsu);
327 tl_assert(wv_old->owner == wsu);
512 if (wv->owner != wsu) return False;
H A Dhg_errors.c321 Thread* owner; /* thread that actually holds the lock */ member in struct:__anon15092::__anon15093::__anon15096
322 Lock* lock; /* lock (that is held by 'owner') */
583 Thread* owner, Lock* lk )
587 tl_assert( HG_(is_sane_Thread)(owner) );
592 xe.XE.UnlockForeign.owner = owner;
711 && xe1->XE.UnlockForeign.owner == xe2->XE.UnlockForeign.owner
908 announce_one_thread( xe->XE.UnlockForeign.owner );
1102 tl_assert( HG_(is_sane_Thread)( xe->XE.UnlockForeign.owner ) );
582 record_error_UnlockForeign( Thread* thr, Thread* owner, Lock* lk ) argument
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DStructure.cpp638 PropertyTable* Structure::copyPropertyTable(JSGlobalData& globalData, Structure* owner) argument
640 return m_propertyTable ? new PropertyTable(globalData, owner, *m_propertyTable) : 0;
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerChromium.h64 static PassRefPtr<LayerChromium> create(GraphicsLayerChromium* owner = 0);
148 void setOwner(GraphicsLayerChromium* owner) { m_owner = owner; } argument
192 explicit LayerChromium(GraphicsLayerChromium* owner);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathContext.java332 * @param owner Value that can be retrieved via the getOwnerObject() method.
335 public XPathContext(Object owner) argument
337 this(owner, true);
342 * @param owner Value that can be retrieved via the getOwnerObject() method.
348 public XPathContext(Object owner, boolean recursiveVarContext) { argument
350 m_owner = owner;
447 /** The owner context of this XPathContext. In the case of XSLT, this will be a
452 /** The owner context of this XPathContext. In the case of XSLT, this will be a
458 * Get the "owner" context of this context, which should be,
461 * @return The owner objec
[all...]
/external/chromium/chrome/browser/chromeos/status/
H A Dnetwork_menu.cc54 explicit MoreMenuModel(NetworkMenu* owner);
68 explicit VPNMenuModel(NetworkMenu* owner);
83 explicit MainMenuModel(NetworkMenu* owner);
316 MainMenuModel::MainMenuModel(NetworkMenu* owner) argument
317 : NetworkMenuModel(owner),
318 vpn_menu_model_(new VPNMenuModel(owner)),
319 more_menu_model_(new MoreMenuModel(owner)) {
648 VPNMenuModel::VPNMenuModel(NetworkMenu* owner) argument
649 : NetworkMenuModel(owner) {
756 MoreMenuModel::MoreMenuModel(NetworkMenu* owner) argument
[all...]
/external/kernel-headers/original/linux/raid/
H A Dmd_k.h263 struct module *owner; member in struct:mdk_personality
/external/libxml2/
H A Dnanoftp.c1595 char owner[11]; local
1637 owner[i++] = *cur;
1641 owner[i] = 0;
1699 callback(userData, filename, attrib, owner, group, size, links,
2051 const char *owner, const char *group, unsigned long size, int links,
2054 "%s %s %s %ld %s\n", attrib, owner, group, size, filename);
2050 ftpList(void *userData, const char *filename, const char* attrib, const char *owner, const char *group, unsigned long size, int links, int year, const char *month, int day, int hour, int minute) argument
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp257 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
502 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, argument
504 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
/external/quake/quake/src/QW/progs/
H A Dprogdefs.h130 int owner; member in struct:__anon12356
/external/quake/quake/src/QW/server/
H A Dprogdefs.h149 int owner; member in struct:__anon12404

Completed in 5484 milliseconds

1234567891011