/external/chromium/chrome/browser/chromeos/login/ |
network_selection_view.h | 14 #include "views/view.h" 36 // View for the network selection/initial welcome screen. 37 class NetworkSelectionView : public views::View, 44 // Initialize view layout. 50 // Returns top level native window for the view. 53 // Returns network control view. 54 views::View* GetNetworkControlView() const; 59 // Returns true if only throbber is visible, the view is in waiting status. 77 // Overridden from views::View. 103 // View that defines FillLayout for the whole screen (contents & title) [all...] |
take_photo_view.h | 10 #include "views/view.h" 23 // View used for showing video from camera and taking a snapshot from it. 24 class TakePhotoView : public views::View, 31 // Called when the view has switched to capturing state. 34 // Called when the view has switched from capturing state. 41 // Initializes this view, its children and layout. 59 // Sets the image indicating that the view is used only for image preview. 62 // Overridden from views::View: 73 // Initializes layout manager for this view.
|
user_image_view.h | 12 #include "views/view.h" 23 // View used for selecting user image on OOBE screen. 24 class UserImageView : public views::View, 29 // Delegate class to get notifications from the view. 52 // Initializes this view, its children and layout. 67 // Returns true if video capture is the current state of the view. 70 // Overridden from views::View: 85 // Initializes layout manager for this view. 91 views::View* splitter_;
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
extension_view_mac.mm | 55 // view not before it's visible. Do something similar here. 59 NSView* view = native_view(); 60 NSRect frame = [view frame]; 64 // |new_size| is in pixels. Convert to view units. 65 frame.size = [view convertSize:frame.size fromView:nil]; 69 // that an extension's view doesn't want any dimensions to ever be zero. 75 DCHECK([view isKindOfClass:[RenderWidgetHostViewCocoa class]]); 76 RenderWidgetHostViewCocoa* hostView = (RenderWidgetHostViewCocoa*)view; 87 // the largest size view allowed. The view will be resized to mak [all...] |
extension_view_mac.h | 20 // This class represents extension views. An extension view internally contains 21 // a bridge to an extension process, which draws to the extension view's 22 // native view object through IPC. 28 // Starts the extension process and creates the native view. You must call 32 // Returns the extension's native view. 53 // Informs the view that its containing window's frame changed. 78 // rwhv's native view in our destructor, effectively freeing this. 81 // The background the view should have once it is initialized. This is set 82 // when the view has a custom background, but hasn't been initialized yet.
|
/external/chromium/chrome/browser/ui/views/ |
accessible_pane_view.h | 13 #include "views/view.h" 19 // This class provides keyboard access to any view that extends it, typically 20 // a toolbar. The user sets focus to a control in this view by pressing 23 class AccessiblePaneView : public views::View, 35 virtual bool SetPaneFocus(int view_storage_id, View* initial_focus); 43 // Overridden from views::View: 51 virtual void FocusWillChange(View* focused_before, 52 View* focused_now) OVERRIDE; 57 virtual View* GetFocusTraversableParentView() OVERRIDE; 62 virtual views::View* GetDefaultFocusableChild() [all...] |
/external/chromium/chrome/browser/ui/views/frame/ |
browser_view_layout.h | 37 // Returns the minimum size of the browser view. 47 // Tests to see if the specified |point| (in nonclient view's coordinates) 54 virtual void Installed(views::View* host); 55 virtual void Uninstalled(views::View* host); 56 virtual void ViewAdded(views::View* host, views::View* view); 57 virtual void ViewRemoved(views::View* host, views::View* view); [all...] |
/external/skia/legacy/src/views/ |
SkViewInflate.cpp | 29 SkView* view = this->createView(dom, child); local 30 if (view) 32 this->rInflate(dom, child, view); 33 parent->attachChildToFront(view)->unref(); 53 void SkViewInflate::inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node) 55 // called after all of view's children have been instantiated. 58 view->inflate(dom, node); 112 SkView* view; local 113 return fIDs.find(id, &view) ? view : NULL [all...] |
/external/skia/src/views/ |
SkViewInflate.cpp | 29 SkView* view = this->createView(dom, child); local 30 if (view) 32 this->rInflate(dom, child, view); 33 parent->attachChildToFront(view)->unref(); 53 void SkViewInflate::inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node) 55 // called after all of view's children have been instantiated. 58 view->inflate(dom, node); 112 SkView* view; local 113 return fIDs.find(id, &view) ? view : NULL [all...] |
/frameworks/base/core/java/android/webkit/ |
PluginFullScreenHolder.java | 28 import android.view.Gravity; 29 import android.view.KeyEvent; 30 import android.view.MotionEvent; 31 import android.view.SurfaceView; 32 import android.view.View; 33 import android.view.ViewGroup; 42 // The container for the plugin view 45 private View mContentView; 53 public void setContentView(View contentView) [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/ |
ListViewTest.java | 28 import android.view.View; 29 import android.view.ViewGroup; 38 * If a view in a ListView requests a layout it should be remeasured. 48 int measureSpec = View.MeasureSpec.makeMeasureSpec(100, View.MeasureSpec.EXACTLY); 64 * The list view should handle the disappearance of the only selected item, even when that item 73 listView.addHeaderView(new View(context), null, false); 80 int measureSpec = View.MeasureSpec.makeMeasureSpec(100, View.MeasureSpec.EXACTLY) [all...] |
/frameworks/base/docs/html/guide/topics/resources/ |
layout-resource.jd | 25 <dd>Resource pointer to a {@link android.view.View} (or subclass) resource.</dd> 42 <<a href="#view-element"><em>View</em></a> 46 [<em>View-specific attributes</em>] > 48 </<em>View</em>> 50 <<a href="#view-element"><em>View</em></a> /> 56 {@link android.view.ViewGroup}, a {@link android.view.View}, or a < [all...] |
/frameworks/base/docs/html/training/keyboard-input/ |
commands.jd | 20 <p>When the user gives focus to an editable text view such as an {@link android.widget.EditText} 24 from the {@link android.view.KeyEvent.Callback} interface, such as {@link 25 android.view.KeyEvent.Callback#onKeyDown onKeyDown()} and {@link 26 android.view.KeyEvent.Callback#onKeyMultiple onKeyMultiple()}.</p> 29 android.app.Activity} and {@link android.view.View} class implement the 30 {@link android.view.KeyEvent.Callback} interface, so you 35 android.view.KeyEvent} class and related APIs, you should expect that such keyboard 77 query the {@link android.view.KeyEvent} that's passed to the callback method. Several methods 78 provide information about modifier keys such as {@link android.view.KeyEvent#getModifiers() [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NavigationBarView.java | 33 import android.view.animation.AccelerateInterpolator; 34 import android.view.Display; 35 import android.view.MotionEvent; 36 import android.view.View; 37 import android.view.Surface; 38 import android.view.ViewGroup; 39 import android.view.WindowManager; 65 View mCurrentView = null; 66 View[] mRotatedViews = new View[4] [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
DisplayListLayersActivity.java | 26 import android.view.Gravity; 27 import android.view.View; 31 import static android.view.View.LAYER_TYPE_HARDWARE; 32 import static android.view.View.LAYER_TYPE_SOFTWARE; 33 import static android.view.ViewGroup.LayoutParams.WRAP_CONTENT; 56 button.setOnClickListener(new View.OnClickListener() { 58 public void onClick(View v) [all...] |
/frameworks/support/v4/java/android/support/v4/view/ |
PagerAdapter.java | 17 package android.support.v4.view; 22 import android.view.View; 23 import android.view.ViewGroup; 38 * <li>{@link #isViewFromObject(View, Object)}</li> 43 * View recycling mechanism directly ViewPager uses callbacks to indicate the 44 * steps taken during an update. A PagerAdapter may implement a form of View 61 * should be removed. The method {@link #isViewFromObject(View, Object)} identifies 62 * whether a page View is associated with a given key object.</p> 68 * View from the parent ViewGroup and {@link #isViewFromObject(View, Object) [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
BaseRawContactEditorView.java | 26 import android.view.View; 27 import android.view.ViewGroup; 38 * Base view that provides common code for the editor interaction for a specific 51 private View mBody; 52 private View mDivider; 88 mPhoto.setVisibility(hasPhotoEditor ? View.VISIBLE : View.GONE); 116 * Set the internal state for this view, given a current 134 mBody.setVisibility(newValue ? View.VISIBLE : View.GONE) [all...] |
/cts/tests/tests/opengl/src/android/opengl/cts/ |
OpenGLES20ActivityTwo.java | 30 OpenGLES20View view; field in class:OpenGLES20ActivityTwo 51 view = new OpenGLES20View(this,type,i, vertexColors, mLatch); 52 setContentView(view); 57 view = new OpenGLES20View(this, type, i, f, mLatch) ; 58 setContentView(view); 72 if(view != null) { 73 view.onPause(); 80 if(view != null) { 81 view.onResume();
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
InternalSelectionScroll.java | 17 package com.example.android.apis.view; 21 import android.view.ViewGroup; 26 * Demonstrates how a well behaved view with internal selection 30 * {@link InternalSelectionView} achieves this by calling {@link android.view.View#requestRectangleOnScreen} 33 * {@link android.widget.ScrollView}, in turn, implements {@link android.view.View#requestRectangleOnScreen} 35 * method, so views that call {@link android.view.View#requestRectangleOnScreen} that are embedded
|
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/ |
DeviceDetailFragment.java | 34 import android.view.LayoutInflater; 35 import android.view.View; 36 import android.view.ViewGroup; 56 private View mContentView = null; 67 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 70 mContentView.findViewById(R.id.btn_connect).setOnClickListener(new View.OnClickListener() { 73 public void onClick(View v) { 96 new View.OnClickListener() { 99 public void onClick(View v) 147 TextView view = (TextView) mContentView.findViewById(R.id.group_owner); local 182 TextView view = (TextView) mContentView.findViewById(R.id.device_address); local 194 TextView view = (TextView) mContentView.findViewById(R.id.device_address); local [all...] |
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
WiFiDirectServicesList.java | 8 import android.view.LayoutInflater; 9 import android.view.View; 10 import android.view.ViewGroup; 31 public View onCreateView(LayoutInflater inflater, ViewGroup container, 46 public void onListItemClick(ListView l, View v, int position, long id) { 65 public View getView(int position, View convertView, ViewGroup parent) { 66 View v = convertView;
|
/external/chromium/chrome/browser/ui/cocoa/tab_contents/ |
web_drop_target.mm | 36 // Given a point in window coordinates and a view in that window, return a 37 // flipped point in the coordinate system of |view|. 39 view:(NSView*)view { 40 DCHECK(view); 41 NSPoint viewPoint = [view convertPoint:windowPoint fromView:nil]; 42 NSRect viewFrame = [view frame]; 47 // Given a point in window coordinates and a view in that window, return a 50 view:(NSView*)view { [all...] |
/frameworks/base/core/java/android/widget/ |
RemoteViewsListAdapter.java | 20 import android.view.View; 21 import android.view.ViewGroup; 60 throw new RuntimeException("Invalid view type count -- view type count must be >= 1" + 61 "and must be as large as the total number of distinct view types"); 85 public View getView(int position, View convertView, ViewGroup parent) { 89 View v;
|
TextSwitcher.java | 22 import android.view.View; 23 import android.view.ViewGroup; 24 import android.view.accessibility.AccessibilityEvent; 25 import android.view.accessibility.AccessibilityNodeInfo; 63 public void addView(View child, int index, ViewGroup.LayoutParams params) { 73 * Sets the text of the next view and switches to the next view. This can 85 * Sets the text of the text view that is currently showing. This does
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
SubMenuBuilder.java | 17 package com.android.internal.view.menu; 21 import android.view.Menu; 22 import android.view.MenuItem; 23 import android.view.SubMenu; 24 import android.view.View; 111 public SubMenu setHeaderView(View view) { 112 return (SubMenu) super.setHeaderViewInt(view);
|