Searched refs:owner (Results 76 - 100 of 693) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSMILTimeContainer.h49 static PassRefPtrWillBeRawPtr<SMILTimeContainer> create(SVGSVGElement& owner) { return adoptRefWillBeNoop(new SMILTimeContainer(owner)); } argument
74 explicit SMILTimeContainer(SVGSVGElement& owner);
/external/chromium_org/tools/security/
H A Dcheck_message_owners.py48 for owner in owner_set:
49 if not owner in owner_dict[key]:
50 print key + " is missing " + owner
/external/chromium_org/v8/src/arm64/
H A Dlithium-gap-resolver-arm64.h21 DelayedGapMasm(LCodeGen* owner, MacroAssembler* masm) argument
22 : DelayedMasm(owner, masm, root) {
36 explicit LGapResolver(LCodeGen* owner);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnection.java82 * clears the owner when an incoming connection is recycled.
84 private Object owner; field in class:Connection
93 return owner;
97 public void setOwner(Object owner) { argument
100 if (this.owner != null) throw new IllegalStateException("Connection already has an owner!");
101 this.owner = owner;
106 * Attempts to clears the owner of this connection. Returns true if the owner
127 closeIfOwnedBy(Object owner) argument
[all...]
/external/chromium_org/ash/system/chromeos/network/
H A Dtray_sms.cc59 explicit SmsDefaultView(TraySms* owner) argument
60 : TrayItemMore(owner, true) {
69 int message_count = static_cast<TraySms*>(owner())->messages().GetSize();
89 SmsMessageView(TraySms* owner, argument
94 : owner_(owner),
182 explicit SmsDetailedView(TraySms* owner) argument
183 : TrayDetailsView(owner) {
213 static_cast<TraySms*>(owner())->messages();
227 static_cast<TraySms*>(owner()), SmsMessageView::VIEW_DETAILED, index,
245 SmsNotificationView(TraySms* owner, argument
[all...]
/external/chromium_org/pdf/
H A Dthumbnail_control.cc43 bool visible, Owner* owner, PDFEngine* engine,
49 return Control::Create(id, rc, visible, owner);
111 owner()->Invalidate(id(), rect());
129 sliding_timer_id_ = owner()->ScheduleTimer(id(), sliding_timeout_);
130 owner()->Invalidate(id(), rect());
137 sliding_timer_id_ = owner()->ScheduleTimer(id(), sliding_timeout_);
154 GradientFill(owner()->GetInstance(),
171 GradientFill(owner()->GetInstance(),
198 thumbnail = new pp::ImageData(owner()->GetInstance(),
253 owner()
41 CreateThumbnailControl( uint32 id, const pp::Rect& rc, bool visible, Owner* owner, PDFEngine* engine, NumberImageGenerator* number_image_generator) argument
[all...]
H A Dfading_controls.cc31 Control::Owner* owner, uint8 transparency) {
33 return Control::Create(id, rc, visible, owner);
80 owner()->GetInstance(),
118 owner()->Invalidate(id(), GetControlsRect());
121 fading_timer_id_ = owner()->ScheduleTimer(id(), fading_timeout_);
152 owner()->OnEvent(control_id, event_id, data);
156 owner()->Invalidate(control_id, rc);
162 //owner()->ScheduleTimer(control_id);
178 owner()->SetCursor(control_id, cursor_type);
182 return owner()
29 CreateFadingControls( uint32 id, const pp::Rect& rc, bool visible, Control::Owner* owner, uint8 transparency) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTAttributeDef.java514 ElemTemplateElement owner)
520 AVT avt = new AVT(handler, uri, name, rawName, value, owner);
545 String rawName, String value, ElemTemplateElement owner)
551 AVT avt = new AVT(handler, uri, name, rawName, value, owner);
578 StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner)
584 AVT avt = new AVT(handler, uri, name, rawName, value, owner);
617 * @param owner
623 String rawName, String value, ElemTemplateElement owner)
631 avt = new AVT(handler, uri, name, rawName, value, owner);
666 * @param owner
512 processAVT( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
544 processCDATA(StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
577 processCHAR( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
622 processENUM(StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
672 processENUM_OR_PQNAME(StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
755 processEXPR( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
787 processNMTOKEN(StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
833 processPATTERN( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
868 processNUMBER( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
930 processQNAME( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
969 processAVT_QNAME( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
1030 processNCNAME( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
1158 processSIMPLEPATTERNLIST( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
1308 processURL( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
1381 processValue( StylesheetHandler handler, String uri, String name, String rawName, String value, ElemTemplateElement owner) argument
[all...]
/external/chromium_org/google_apis/gaia/
H A Doauth2_token_service_request.cc26 // 1. Constructed on owner thread.
28 // 2. Start() is called on owner thread, which calls StartOnTokenServiceThread()
33 // 4. Stop() is called on owner thread, which calls StopOnTokenServiceThread()
36 // 5. Core is destroyed on owner thread.
42 // the "owner thread" here.
43 Core(OAuth2TokenServiceRequest* owner,
46 // Starts the core. Must be called on the owner thread.
49 // Stops the core. Must be called on the owner thread.
52 // Returns true if this object has been stopped. Must be called on the owner
57 // Core must be destroyed on the owner threa
88 Core( OAuth2TokenServiceRequest* owner, const scoped_refptr<TokenServiceProvider>& provider) argument
143 OAuth2TokenServiceRequest* OAuth2TokenServiceRequest::Core::owner() { function in class:OAuth2TokenServiceRequest::Core
198 RequestCore( OAuth2TokenServiceRequest* owner, const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>& provider, OAuth2TokenService::Consumer* consumer, const std::string& account_id, const OAuth2TokenService::ScopeSet& scopes) argument
295 InvalidateCore( OAuth2TokenServiceRequest* owner, const scoped_refptr<OAuth2TokenServiceRequest::TokenServiceProvider>& provider, const std::string& access_token, const std::string& account_id, const OAuth2TokenService::ScopeSet& scopes) argument
[all...]
/external/chromium_org/ash/system/tray/
H A Dtray_details_view.cc66 TrayDetailsView::TrayDetailsView(SystemTrayItem* owner) argument
67 : owner_(owner),
119 // Cache pointer to owner in this function scope. TrayDetailsView will be
121 SystemTrayItem* owner = owner_; local
123 owner->set_restore_focus(true);
124 owner->system_tray()->ShowDefaultView(BUBBLE_USE_EXISTING);
125 owner->set_restore_focus(false);
H A Dtray_item_more.cc20 TrayItemMore::TrayItemMore(SystemTrayItem* owner, bool show_more) argument
21 : owner_(owner),
73 owner()->TransitionDetailedView();
/external/chromium_org/remoting/host/
H A Dverify_config_window_win.cc65 // Center against the owner window unless it is minimized or invisible.
66 HWND owner = ::GetWindow(m_hWnd, GW_OWNER); local
67 if (owner != NULL) {
68 DWORD style = ::GetWindowLong(owner, GWL_STYLE);
70 owner = NULL;
80 // On a multi-monitor system use the monitor where the owner window is shown.
82 if (owner != NULL && ::GetWindowRect(owner, &owner_rect)) {
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java59 * @param owner The owner of the expression, to which the expression can
64 public boolean visitFunction(ExpressionOwner owner, Function func) argument
74 // * @param owner The owner of the expression, to which the expression can
79 // public boolean visitVariableRef(ExpressionOwner owner, Variable var)
90 * @param owner The owner of the expression, to which the expression can
95 public boolean visitPredicate(ExpressionOwner owner, Expression pred) argument
113 pred.callVisitors(owner, thi
[all...]
/external/chromium_org/chrome/utility/
H A Dshell_handler_win.cc38 HWND owner,
43 ui::win::OpenFileName open_file_name(owner, flags);
64 ui::win::OpenFileName open_file_name(params.owner, params.flags);
37 OnGetOpenFileName( HWND owner, DWORD flags, const GetOpenFileNameFilter& filter, const base::FilePath& initial_directory, const base::FilePath& filename) argument
H A Dshell_handler_win.h42 HWND owner,
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildFrameDisconnector.cpp61 HTMLFrameOwnerElement* owner = m_frameOwners[i].get(); local
62 // Don't need to traverse up the tree for the first owner since no
64 if (!i || root().containsIncludingShadowDOM(owner))
65 owner->disconnectContentFrame();
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebMediaStreamTrack.cpp52 WebMediaStreamTrack WebMediaStreamTrack::ExtraData::owner() function in class:blink::WebMediaStreamTrack::ExtraData
58 void WebMediaStreamTrack::ExtraData::setOwner(MediaStreamComponent* owner) argument
61 m_owner = owner;
/external/chromium_org/third_party/skia/src/views/
H A DSkTouchGesture.cpp136 void SkTouchGesture::appendNewRec(void* owner, float x, float y) { argument
138 rec->fOwner = owner;
144 void SkTouchGesture::touchBegin(void* owner, float x, float y) { argument
145 // GrPrintf("--- %d touchBegin %p %g %g\n", fTouches.count(), owner, x, y);
147 int index = this->findRec(owner);
161 this->appendNewRec(owner, x, y);
175 int SkTouchGesture::findRec(void* owner) const {
177 if (owner == fTouches[i].fOwner) {
203 void SkTouchGesture::touchMoved(void* owner, float x, float y) { argument
204 // GrPrintf("--- %d touchMoved %p %g %g\n", fTouches.count(), owner,
259 touchEnd(void* owner) argument
[all...]
/external/skia/src/views/
H A DSkTouchGesture.cpp136 void SkTouchGesture::appendNewRec(void* owner, float x, float y) { argument
138 rec->fOwner = owner;
144 void SkTouchGesture::touchBegin(void* owner, float x, float y) { argument
145 // GrPrintf("--- %d touchBegin %p %g %g\n", fTouches.count(), owner, x, y);
147 int index = this->findRec(owner);
161 this->appendNewRec(owner, x, y);
175 int SkTouchGesture::findRec(void* owner) const {
177 if (owner == fTouches[i].fOwner) {
203 void SkTouchGesture::touchMoved(void* owner, float x, float y) { argument
204 // GrPrintf("--- %d touchMoved %p %g %g\n", fTouches.count(), owner,
257 touchEnd(void* owner) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DVarNameCollector.java68 * @param owner The owner of the expression, to which the expression can
73 public boolean visitVariableRef(ExpressionOwner owner, Variable var) argument
/external/chromium_org/base/win/
H A Dscoped_handle.h142 static void StartTracking(HANDLE handle, const void* owner, argument
144 static void StopTracking(HANDLE handle, const void* owner, argument
156 static void StartTracking(HANDLE handle, const void* owner,
158 static void StopTracking(HANDLE handle, const void* owner,
/external/chromium_org/chrome/browser/extensions/
H A Dexternal_loader.h35 void Init(ExternalProviderImpl* owner);
37 // Called by the owner before it gets deleted.
/external/chromium_org/chrome/browser/printing/
H A Dprint_job_unittest.cc29 explicit TestPrintJobWorker(printing::PrintJobWorkerOwner* owner) argument
32 owner) {}
102 scoped_refptr<TestOwner> owner(new TestOwner);
104 job->Initialize(owner.get(), &source, 1);
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/
H A Dgenerated_credit_card_decoration.h24 explicit GeneratedCreditCardDecoration(LocationBarViewMac* owner);
H A Dsearch_button_decoration.h18 explicit SearchButtonDecoration(LocationBarViewMac* owner);

Completed in 2013 milliseconds

1234567891011>>