Home
last modified time | relevance | path

Searched refs:NSView (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/external/webkit/Source/WebKit/mac/Plugins/
DWebPluginController.h40 NSView *_documentView;
50 + (NSView *)plugInViewWithArguments:(NSDictionary *)arguments fromPluginPackage:(WebPluginPackage *…
51 + (BOOL)isPlugInView:(NSView *)view;
53 - (id)initWithDocumentView:(NSView *)view;
57 - (void)addPlugin:(NSView *)view;
58 - (void)destroyPlugin:(NSView *)view;
60 - (void)pluginViewCreated:(NSView *)view;
61 + (void)pluginViewHidden:(NSView *)view;
DWebBasePluginPackage.h41 - (void)pluginView:(NSView *)pluginView receivedResponse:(NSURLResponse *)response;
42 - (void)pluginView:(NSView *)pluginView receivedData:(NSData *)data;
43 - (void)pluginView:(NSView *)pluginView receivedError:(NSError *)error;
44 - (void)pluginViewFinishedLoading:(NSView *)pluginView;
/external/clang/test/SemaObjC/
Dconditional-expr-8.m8 @interface NSView : NSResponder interface
11 @interface WebView : NSView
17 @implementation NSView implementation
21 NSView <WebDocumentView> *documentView;
22 NSView *coordinateView = s ? documentView : m_webView;
Dderef-interface.m3 @interface NSView interface
7 @implementation NSView implementation
9 *(NSView *)self = *(NSView *)realView; // expected-error {{cannot assign to class object}}
Dsuper-cat-prot.m14 @interface NSView : NSResponder <NSAnimatablePropertyContainer> {} @end interface
15 @class NSAttributedString, NSEvent, NSFont, NSFormatter, NSImage, NSMenu, NSText, NSView;
18 @interface NSBox : NSView {} - (NSBoxType)boxType; @end
19 @class NSArray, NSError, NSImage, NSView, NSNotificationCenter, NSURL;
35 @interface NSView (NSView_IBViewProtocol) <IBViewProtocol> - (NSRect)layoutRect; @end interface in NSView_IBViewProtocol
/external/chromium/chrome/browser/ui/cocoa/
Durl_drop_target.h18 NSView<URLDropTarget>* view_; // weak
26 - (id)initWithView:(NSView<URLDropTarget>*)view;
59 - (void)dropURLs:(NSArray*)urls inView:(NSView*)view at:(NSPoint)point;
63 - (void)dropText:(NSString*)text inView:(NSView*)view at:(NSPoint)point;
68 - (void)indicateDropURLsInView:(NSView*)view at:(NSPoint)point;
71 - (void)hideDropURLsIndicatorInView:(NSView*)view;
Dview_id_util.mm22 typedef std::map<NSView*, ViewID> ViewIDMap;
28 NSView* FindViewWithID(NSView* view, ViewID viewID) {
32 for (NSView* subview in [view subviews]) {
33 NSView* result = FindViewWithID(subview, viewID);
44 void SetID(NSView* view, ViewID viewID) {
52 void UnsetID(NSView* view) {
57 NSView* GetView(NSWindow* window, ViewID viewID) {
81 @implementation NSView (ViewID) implementation in ViewID
Dview_id_util.h30 void SetID(NSView* view, ViewID viewID);
34 void UnsetID(NSView* view);
38 NSView* GetView(NSWindow* window, ViewID viewID);
43 @interface NSView (ViewID)
Dfocus_tracker_unittest.mm19 scoped_nsobject<NSView> view([[NSView alloc] initWithFrame:NSZeroRect]);
23 view.reset([[NSView alloc] initWithFrame:NSZeroRect]);
29 NSView* viewA_;
30 NSView* viewB_;
62 scoped_nsobject<NSView> viewC([[NSView alloc] initWithFrame:NSZeroRect]);
Dbrowser_frame_view.h43 @interface BrowserFrameView : NSView
49 forView:(NSView*)view
55 + (NSColor*)titleColorForThemeView:(NSView*)view;
/external/chromium/chrome/browser/ui/cocoa/tabs/
Dtab_window_controller.h47 NSView* cachedContentView_; // Used during dragging for identifying which
127 - (void)moveTabView:(NSView*)view
141 - (NSView *)selectedTabView;
156 - (BOOL)isTabDraggable:(NSView*)tabView;
157 - (void)setTab:(NSView*)tabView isDraggable:(BOOL)draggable;
169 - (void)detachTabView:(NSView*)view;
Dtab_strip_controller.h75 NSView* switchView_; // weak
76 scoped_nsobject<NSView> dragBlockingView_; // avoid bad window server drags
169 switchView:(NSView*)switchView
174 - (NSView*)selectedTabView;
200 - (NSInteger)modelIndexForTabView:(NSView*)view;
203 - (NSView*)viewAtIndex:(NSUInteger)index;
/external/webkit/Source/WebCore/platform/mac/
DWebCoreView.m30 - (NSView *)_webcore_effectiveFirstResponder;
34 - (NSView *)_webcore_effectiveFirstResponder;
37 @implementation NSView (WebCoreView) implementation in WebCoreView
39 - (NSView *)_webcore_effectiveFirstResponder
48 - (NSView *)_webcore_effectiveFirstResponder
50 NSView *view = [self documentView];
58 - (NSView *)_webcore_effectiveFirstResponder
60 NSView *view = [self contentView];
DWidgetMac.mm54 @interface NSView (WebSetSelectedMethods) interface in WebSetSelectedMethods
59 @interface NSView (Widget) interface in Widget
77 static void safeRemoveFromSuperview(NSView *view)
83 …if ([firstResponder isKindOfClass:[NSView class]] && [(NSView *)firstResponder isDescendantOf:view…
93 Widget::Widget(NSView *view)
120 NSView *view = [platformWidget() _webcore_effectiveFirstResponder];
179 NSView *outerView = getOuterView();
204 NSView *outerView = getOuterView();
218 NSView *Widget::getOuterView() const
220 NSView *view = platformWidget();
[all …]
/external/chromium/chrome/browser/ui/cocoa/tab_contents/
Dweb_drop_target.h48 view:(NSView*)view;
51 view:(NSView*)view;
53 view:(NSView*)view;
75 view:(NSView*)view;
79 view:(NSView*)view;
/external/webkit/Source/WebKit2/Shared/mac/
DWebEventFactory.h38 static WebMouseEvent createWebMouseEvent(NSEvent *event, NSView *windowView);
39 static WebWheelEvent createWebWheelEvent(NSEvent *event, NSView *windowView);
40 static WebKeyboardEvent createWebKeyboardEvent(NSEvent *event, NSView *windowView);
43 static WebGestureEvent createWebGestureEvent(NSEvent *event, NSView *windowView);
/external/webkit/Source/WebKit/chromium/public/mac/
DWebInputEventFactory.h38 @class NSView;
41 class NSView; variable
54 WEBKIT_API static WebMouseEvent mouseEvent(NSEvent*, NSView*);
55 WEBKIT_API static WebMouseWheelEvent mouseWheelEvent(NSEvent*, NSView*);
DWebScreenInfoFactory.h37 @class NSView;
39 class NSView; variable
48 WEBKIT_API static WebScreenInfo screenInfo(NSView*);
/external/webkit/Source/WebKit/mac/Carbon/
DHIViewAdapter.m41 @interface NSView(ShhhhDontTell) interface in ShhhhDontTell
55 static NSView *_webkit_NSView_nextValidKeyView(id self, SEL _cmd);
57 + (void)bindHIViewToNSView:(HIViewRef)hiView nsView:(NSView*)nsView
62 // Override -[NSView setNeedsDisplay:]
63 …Method setNeedsDisplayMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(setNeeds…
68 // Override -[NSView setNeedsDisplayInRect:]
69 …Method setNeedsDisplayInRectMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(se…
74 // Override -[NSView nextValidKeyView]
75 …Method nextValidKeyViewMethod = class_getInstanceMethod(objc_getClass("NSView"), @selector(nextVal…
84 + (HIViewRef)getHIViewForNSView:(NSView*)inView
[all …]
DHIViewAdapter.h34 + (void)bindHIViewToNSView:(HIViewRef)hiView nsView:(NSView*)nsView;
35 + (void)unbindNSView:(NSView*)nsView;
36 + (HIViewRef)getHIViewForNSView:(NSView*)inView;
/external/chromium/chrome/browser/ui/cocoa/notifications/
Dballoon_view.h17 @interface BalloonContentViewCocoa : NSView {
23 @interface BalloonShelfViewCocoa : NSView {
30 @interface BalloonOverlayViewCocoa : NSView {
/external/llvm/test/CodeGen/X86/
D2008-04-15-LiveVariableBug.ll8 …ype { %struct.NSObject, %struct.NSObject*, i8*, %struct.NSView*, %struct.NSView*, %struct.NSView*,…
9 …t*, %struct.NSURL*, %struct.NSArray*, %struct.NSPrintInfo*, i64, %struct.NSView*, %struct.NSObject…
22 …%struct.NSView = type { %struct.NSResponder, %struct.NSRect, %struct.NSRect, %struct.NSObject*, %s…
23NSView*, %struct.NSView*, %struct.NSObject*, %struct.NSObject*, i32, i64, i32, %struct.NSArray*, %…
24NSView*, %struct.NSRegion*, %struct.NSWindow*, %struct.NSWindow*, %struct.NSArray*, %struct.NSMuta…
/external/chromium/chrome/browser/ui/cocoa/toolbar/
Dtoolbar_controller_unittest.mm19 // An NSView that fakes out hitTest:.
20 @interface HitView : NSView {
31 - (NSView *)hitTest:(NSPoint)aPoint {
65 NSView* parent = [test_window() contentView];
97 NSView* view = [bar_ view];
104 NSView* superview = [view superview];
117 NSView* view = [bar_ view];
125 NSView* superview = [view superview];
148 NSView* locationBar = [[bar_ toolbarViews] objectAtIndex:kLocationIndex];
168 NSView* homeButton = [[bar_ toolbarViews] objectAtIndex:kHomeIndex];
[all …]
/external/chromium/chrome/browser/ui/cocoa/location_bar/
Domnibox_popup_view_unittest.mm29 scoped_nsobject<NSView> subview1([[NSView alloc] initWithFrame:NSZeroRect]);
44 scoped_nsobject<NSView> subview1([[NSView alloc] initWithFrame:NSZeroRect]);
45 scoped_nsobject<NSView> subview2([[NSView alloc] initWithFrame:initial]);
/external/chromium/chrome/browser/ui/cocoa/translate/
Dtranslate_infobar_base.h27 void MoveControl(NSView* anchor, NSView* toMove, int spacing, bool after);
30 void VerticallyCenterView(NSView *toMove);
93 - (void)adjustOptionsButtonSizeAndVisibilityForView:(NSView*)lastView;

12345678910>>...15