/cts/tests/tests/opengl/src/android/opengl/cts/ |
OpenGLES20ActivityOne.java | 23 import android.view.Window; 24 import android.view.WindowManager; 35 OpenGLES20View view; field in class:OpenGLES20ActivityOne 49 view = new OpenGLES20View(this, viewType, viewIndex, mLatch); 50 setContentView(view); 74 if (view != null) { 75 view.onPause(); 82 if (view != null) { 83 view.onResume();
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
QuickContactsDemo.java | 27 import android.view.View; 28 import android.view.ViewGroup; 76 public void bindView(View view, Context context, Cursor cursor) { 77 final ContactListItemCache cache = (ContactListItemCache) view.getTag(); 88 public View newView(Context context, Cursor cursor, ViewGroup parent) { 89 View view = super.newView(context, cursor, parent); local 91 cache.nameView = (TextView) view.findViewById(R.id.name) [all...] |
Intents.java | 24 import android.view.View; 25 import android.view.View.OnClickListener; 36 public void onGetMusic(View view) { 42 public void onGetImage(View view) { 48 public void onGetStream(View view) { [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
AutoComplete4.java | 17 package com.example.android.apis.view; 28 import android.view.LayoutInflater; 29 import android.view.View; 30 import android.view.ViewGroup; 63 public View newView(Context context, Cursor cursor, ViewGroup parent) { 65 final TextView view = (TextView) inflater.inflate( local 67 view.setText(cursor.getString(COLUMN_DISPLAY_NAME)); 68 return view; 72 public void bindView(View view, Context context, Cursor cursor) [all...] |
List13.java | 17 package com.example.android.apis.view; 22 import android.view.LayoutInflater; 23 import android.view.View; 24 import android.view.ViewGroup; 36 * case, we pretend that binding a view to its data is slow (even though it really isn't). When 37 * a scroll/fling is happening, the adapter binds the view to temporary data. After the scroll/fling 90 * Make a view to hold each row. 92 * @see android.widget.ListAdapter#getView(int, android.view.View, [all...] |
List12.java | 17 package com.example.android.apis.view; 21 import android.view.KeyEvent; 22 import android.view.View; 23 import android.view.View.OnClickListener; 24 import android.view.View.OnKeyListener; 33 * Demonstrates the using a list view in transcript mode 60 public void onClick(View v) [all...] |
TextSwitcher1.java | 17 package com.example.android.apis.view; 23 import android.view.Gravity; 24 import android.view.View; 25 import android.view.animation.Animation; 26 import android.view.animation.AnimationUtils; 36 View.OnClickListener { 64 public void onClick(View v) { 73 public View makeView() {
|
/external/chromium/chrome/browser/chromeos/login/ |
user_image_screen.cc | 43 DCHECK(view()); 46 view()->OnImageSelected( 60 DCHECK(view()); 61 view()->ShowCameraInitializing(); 70 DCHECK(view()); 74 view()->UpdateVideoFrame(frame); 78 DCHECK(view()); 79 view()->ShowCameraError(); 125 else if (view()->IsCapturing())
|
/external/chromium/chrome/browser/chromeos/ |
network_login_observer.cc | 31 void NetworkLoginObserver::CreateModalPopup(views::WindowDelegate* view) { 40 browser->window()->GetNativeHandle(), gfx::Rect(), view); 47 background_view->CreateModalPopup(view); 72 NetworkConfigView* view = NULL; local 97 view = new NetworkConfigView(wifi); 107 if (!view) { 119 view = new NetworkConfigView(vpn); 129 if (view) 130 CreateModalPopup(view);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
panelEnablerView.css | 30 .panel-enabler-view { 45 .panel-enabler-view.visible { 49 .panel-enabler-view .panel-enabler-view-content { 60 .panel-enabler-view h1 { 79 .panel-enabler-view img { 90 .panel-enabler-view img.hidden { 95 .panel-enabler-view .flexible-space { 99 .panel-enabler-view form { 108 .panel-enabler-view label [all...] |
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/ |
results.css | 26 .non-action-button, .results-view ul.actions, .ui-dialog ul.actions { 38 .results-view ul.actions.rebaseline-action { 46 .results-view ul.actions li, .ui-dialog ul.actions li { 50 .results-view h3 ul.actions { 54 .results-view h3 ul.actions { 58 .results-view h3.ui-state-active ul.actions { 72 .results-grid table td, .results-view table th { 94 .results-view .top-panel { 101 .results-view .resize-handle { 112 .results-view .resize-handle:before [all...] |
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
StorageBrowser.java | 26 import android.view.LayoutInflater; 27 import android.view.View; 28 import android.view.ViewGroup; 36 * A list view displaying all storage units on a device. 72 public View getView(int position, View convertView, ViewGroup parent) { 73 TextView view; local 75 view = (TextView)mInflater.inflate( 78 view = (TextView)convertView [all...] |
/packages/apps/Browser/src/com/android/browser/ |
WebViewController.java | 25 import android.view.KeyEvent; 26 import android.view.View; 48 void onSetWebView(Tab tab, WebView view); 52 void onPageStarted(Tab tab, WebView view, Bitmap favicon); 60 void onFavicon(Tab tab, WebView view, Bitmap icon); 62 boolean shouldOverrideUrlLoading(Tab tab, WebView view, String url); 72 void onReceivedHttpAuthRequest(Tab tab, WebView view, final HttpAuthHandler handler, 78 void showCustomView(Tab tab, View view, int requestedOrientation [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
MovieControllerOverlay.java | 21 import android.view.KeyEvent; 22 import android.view.MotionEvent; 23 import android.view.View; 24 import android.view.animation.Animation; 25 import android.view.animation.Animation.AnimationListener; 26 import android.view.animation.AnimationUtils; 98 private void startHideAnimation(View view) { 99 if (view.getVisibility() == View.VISIBLE) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/ |
StateAdapter.java | 21 import android.view.View; 22 import android.view.ViewGroup; 46 public View getView(int position, View convertView, ViewGroup parent) { 47 StateView view = null; local 51 view = (StateView) convertView; 53 view.setState(state); 54 view.setOrientation(mOrientation); 60 view.setSelected(true) [all...] |
/development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/ |
ActionBarHelperHoneycomb.java | 22 import android.view.LayoutInflater; 23 import android.view.Menu; 24 import android.view.MenuInflater; 25 import android.view.MenuItem; 26 import android.view.View; 34 private View mRefreshIndeterminateProgressView = null; 49 // action view.
|
MainActivity.java | 20 import android.view.Menu; 21 import android.view.MenuInflater; 22 import android.view.MenuItem; 23 import android.view.View; 33 findViewById(R.id.toggle_title).setOnClickListener(new View.OnClickListener() { 35 public void onClick(View view) {
|
/development/samples/Support4Demos/src/com/example/android/supportv4/accessibility/ |
AccessibilityDelegateSupportActivity.java | 22 import android.support.v4.view.AccessibilityDelegateCompat; 23 import android.support.v4.view.ViewCompat; 24 import android.support.v4.view.accessibility.AccessibilityNodeInfoCompat; 26 import android.view.View; 27 import android.view.accessibility.AccessibilityEvent; 33 * a View.AccessibilityDelegate that customizes the accessibility 34 * behavior of a View. Aiming to maximize simplicity this example 37 * a View. 51 * This class represents a View that is customized via an AccessibilityDelegat [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
url_drop_target.h | 14 // Object which coordinates the dropping of URLs on a given view, sending data 24 // Initialize the given view, which must implement the |URLDropTarget| (below), 26 - (id)initWithView:(NSView<URLDropTarget>*)view; 28 // The owner view should implement the following methods by calling the 57 // The given URLs (an |NSArray| of |NSString|s) were dropped in the given view 58 // at the given point (in that view's coordinates). 59 - (void)dropURLs:(NSArray*)urls inView:(NSView*)view at:(NSPoint)point; 61 // The given text was dropped in the given view at the given point (in that 62 // view's coordinates). 63 - (void)dropText:(NSString*)text inView:(NSView*)view at:(NSPoint)point [all...] |
/external/chromium/chrome/browser/ui/gtk/infobars/ |
extension_infobar_gtk.cc | 22 delegate_->extension_host()->view()->SetContainer(this); 27 // This view is not owned by us, so unparent. 63 view_ = extension_host->view(); 80 delegate_->extension_host()->view()->render_view_host()->view() 85 ExtensionViewGtk* view,
|
/external/chromium/webkit/glue/ |
dom_operations.h | 52 bool GetAllSavableResourceLinksForCurrentPage(WebKit::WebView* view, 57 // |view|s main frame. 59 bool PauseAnimationAtTimeOnElementWithId(WebKit::WebView* view, 65 // |view|s main frame. 67 bool PauseTransitionAtTimeOnElementWithId(WebKit::WebView* view, 74 bool ElementDoesAutoCompleteForElementWithId(WebKit::WebView* view, 78 int NumberOfActiveAnimations(WebKit::WebView* view);
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
url_drop_target.h | 13 // Object which coordinates the dropping of URLs on a given view, sending data 23 // Initialize the given view, which must implement the |URLDropTarget| (below), 25 - (id)initWithView:(NSView<URLDropTarget>*)view; 27 // The owner view should implement the following methods by calling the 57 // is supported by the web view. In particular, if the content is a local file 61 // The given URLs (an |NSArray| of |NSString|s) were dropped in the given view 62 // at the given point (in that view's coordinates). 63 - (void)dropURLs:(NSArray*)urls inView:(NSView*)view at:(NSPoint)point; 65 // The given text was dropped in the given view at the given point (in that 66 // view's coordinates) [all...] |
/external/chromium_org/chrome/browser/ui/views/infobars/ |
infobar_background.cc | 12 #include "ui/views/view.h" 25 void InfoBarBackground::Paint(gfx::Canvas* canvas, views::View* view) const { 28 gradient_points[1].iset(0, view->height()); 39 InfoBarView* infobar = static_cast<InfoBarView*>(view); 55 canvas->FillRect(gfx::Rect(0, view->height() - InfoBar::kSeparatorLineHeight, 56 view->width(), InfoBar::kSeparatorLineHeight),
|
/external/chromium_org/chrome/renderer/extensions/ |
render_view_observer_natives.cc | 22 content::RenderView* view, 24 : content::RenderViewObserver(view), 70 content::RenderView* view = content::RenderView::FromRoutingID(view_id); local 71 if (!view) { 72 LOG(WARNING) << "No render view found to register LoadWatcher."; 76 new LoadWatcher(context(), view, args[1].As<v8::Function>()); local
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
AutoscrollController.cpp | 95 if (FrameView* view = scrollable->frame()->view()) { 96 view->removePanScrollIcon(); 97 view->setCursor(pointerCursor()); 203 if (FrameView* view = scrollable->frame()->view()) 204 view->addPanScrollIcon(lastKnownMousePosition); 244 if (FrameView* view = m_autoscrollRenderer->frame()->view()) 245 updatePanScrollState(view, eventHandler->lastKnownMousePosition()) [all...] |