HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 951 - 975 of 7837) sorted by null

<<31323334353637383940>>

  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwContentsClientGetVideoLoadingProgressViewTest.java 8 import android.view.View;
22 * This test takes advantage of onViewAttachedToWindow, and assume our progress view
30 implements View.OnAttachStateChangeListener {
34 public void onViewAttachedToWindow(View view) {
36 view.removeOnAttachStateChangeListener(this);
40 public void onViewDetachedFromWindow(View arg0) {
55 protected View getVideoLoadingProgressView() {
56 View view = new View(getInstrumentation().getTargetContext())
    [all...]
  /external/chromium_org/ui/views/layout/
box_layout.h 22 class View;
51 // This causes the child view to stretch to fit the host in the cross axis.
60 // view area and the host view border. |between_child_spacing| controls the
84 // Sets the flex weight for the given |view|. Using the preferred size as
89 // A flex of 0 means this view is not resized. Flex values must not be
91 void SetFlexForView(const View* view, int flex);
93 // Clears the flex for the given |view|, causing it to use the default
95 void ClearFlexForView(const View* view)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/
DrawableCrossFadeViewAnimation.java 6 import android.view.View;
7 import android.view.animation.AlphaAnimation;
8 import android.view.animation.Animation;
9 import android.view.animation.AnimationUtils;
73 public boolean animate(Drawable previous, Drawable current, View view, Target<Drawable> target) {
82 view.startAnimation(defaultAnimation);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowListActivity.java 4 import android.view.View;
5 import android.view.ViewGroup;
29 throw new RuntimeException("No ListView found under content view");
35 public void setListView(ListView view) {
36 listView = view;
46 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
49 ListView.class, View.class, int.class, long.class);
51 handler.invoke(realActivity, parent, view, position, id)
    [all...]
  /frameworks/base/core/java/android/widget/
ZoomButton.java 22 import android.view.KeyEvent;
23 import android.view.MotionEvent;
24 import android.view.View;
25 import android.view.View.OnLongClickListener;
26 import android.view.accessibility.AccessibilityEvent;
27 import android.view.accessibility.AccessibilityNodeInfo;
75 public boolean onLongClick(View v) {
101 public boolean dispatchUnhandledMove(View focused, int direction)
    [all...]
ZoomControls.java 22 import android.view.LayoutInflater;
23 import android.view.MotionEvent;
24 import android.view.View;
25 import android.view.accessibility.AccessibilityEvent;
26 import android.view.accessibility.AccessibilityNodeInfo;
27 import android.view.animation.AlphaAnimation;
78 /* Consume all touch events so they don't get dispatched to the view
79 * beneath this view.
85 fade(View.VISIBLE, 0.0f, 1.0f)
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
MipMapActivity.java 29 import android.view.Gravity;
30 import android.view.View;
31 import android.view.animation.Animation;
32 import android.view.animation.ScaleAnimation;
40 final BitmapsView view = new BitmapsView(this); local
41 setContentView(view);
44 static class BitmapsView extends View {
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestApp.java 31 import android.view.Menu;
32 import android.view.MenuItem;
33 import android.view.View;
34 import android.view.Window;
37 import android.view.MenuInflater;
38 import android.view.Window;
51 // Create our Preview view and set it as the content of our
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
OverflowMenuAdapter.java 19 import com.android.internal.view.menu.MenuBuilder;
20 import com.android.internal.view.menu.MenuItemImpl;
21 import com.android.internal.view.menu.MenuView;
24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
73 public View getView(int position, View convertView, ViewGroup parent) {
  /packages/apps/Browser/src/com/android/browser/preferences/
WebViewPreview.java 25 import android.view.View;
26 import android.view.ViewGroup;
58 protected void setupWebView(WebView view) {}
61 protected View onCreateView(ViewGroup parent) {
62 View root = super.onCreateView(parent);
77 protected void onBindView(View view) {
78 super.onBindView(view);
79 mWebView = (WebView) view.findViewById(R.id.webview)
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
BookmarkContainer.java 17 package com.android.browser.view;
24 import android.view.View;
25 import android.view.View.OnClickListener;
26 import android.view.ViewConfiguration;
87 public void onClick(View view) {
90 mClickListener.onClick(view);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListAdapter.java 26 import android.view.View;
27 import android.view.ViewGroup;
199 ContactListItemView view = super.newView(context, partition, cursor, position, parent); local
200 view.setUnknownNameText(mUnknownNameText);
201 view.setQuickContactEnabled(isQuickContactEnabled());
202 view.setAdjustSelectionBoundsEnabled(isAdjustSelectionBoundsEnabled());
203 view.setActivatedStateSupported(isSelectionVisible());
205 view.setPhotoPosition(mPhotoPosition);
207 return view;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanelTrack.java 28 import android.view.GestureDetector;
29 import android.view.MotionEvent;
30 import android.view.View;
31 import android.view.ViewGroup;
125 View view = findChildAt((int) e.getX(), (int) e.getY()); local
126 if (view == null) {
129 if (view instanceof StateView) {
130 StateView stateView = (StateView) view;
145 StateView view = (StateView) getChildAt(i); local
169 View view = mAdapter.getView(i, null, this); local
176 StateView view = (StateView) getChildAt(i); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryPreference.java 24 import android.view.View;
25 import android.view.ViewGroup;
42 private View mLabelHeader;
60 mLabelHeader.setVisibility(hide ? View.GONE : View.VISIBLE);
66 protected void onBindView(View view) {
67 super.onBindView(view);
69 BatteryHistoryChart chart = (BatteryHistoryChart)view.findViewById
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmailCopyContextMenu.java 26 import android.view.ContextMenu;
27 import android.view.MenuInflater;
28 import android.view.MenuItem;
29 import android.view.View;
30 import android.view.ContextMenu.ContextMenuInfo;
31 import android.view.View.OnCreateContextMenuListener;
99 public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo info) {
  /packages/screensavers/WebView/src/com/android/dreams/web/
Screensaver.java 36 import android.view.MotionEvent;
37 import android.view.View;
38 import android.view.WindowManager;
39 import android.view.animation.AccelerateInterpolator;
40 import android.view.animation.DecelerateInterpolator;
51 public boolean shouldOverrideUrlLoading(WebView view, String url) {
  /external/chromium_org/mojo/examples/window_manager/
window_manager.cc 19 #include "mojo/services/public/cpp/view_manager/view.h"
94 View* view() { return view_; } function in class:mojo::examples::KeyboardManager
98 View* parent,
101 view_ = View::Create(view_manager);
125 View* view = view_manager_->GetViewById(view_id); variable
126 if (!view)
135 view,
141 view,
223 View* view = *iter; variable
255 View* view() const { return view_; } function in class:mojo::examples::Window
372 View* view = View::Create(view_manager_); variable
406 View* view = WindowManagerApp::GetViewForWindow( variable
448 View* view = view_manager_->GetViewById(content_view_id_); local
458 View* view = view_manager_->GetViewById(content_view_id_); local
475 View* view = View::Create(view_manager_); local
488 View* view = View::Create(view_manager_); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/offscreen/
ColorChangeOnKeyView.java 23 import android.view.KeyEvent;
24 import android.view.View;
29 public class ColorChangeOnKeyView extends View {
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
WaterMeshNode.h 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/
BlurMeshNode.h 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
29 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection);
  /cts/tests/tests/opengl/src/android/opengl/cts/
OpenGLES20NativeActivityOne.java 24 import android.view.Window;
25 import android.view.WindowManager;
41 OpenGLES20View view; field in class:OpenGLES20NativeActivityOne
59 view = new OpenGLES20View(this, viewType, viewIndex, mLatch);
60 setContentView(view);
76 view.onPause();
82 if(view != null) {
83 view.onResume();
  /cts/tests/tests/theme/src/android/theme/cts/
DeviceDefaultActivity.java 23 import android.view.Window;
24 import android.view.WindowManager;
  /cts/tests/tests/view/src/android/view/cts/
MockLinearLayout.java 17 package android.view.cts;
22 import android.view.ViewParent;
SurfaceHolder_BadSurfaceTypeExceptionTest.java 16 package android.view.cts;
19 import android.view.SurfaceHolder.BadSurfaceTypeException;
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleAdapterTest.java 28 import android.view.LayoutInflater;
29 import android.view.View;
148 View result = mSimpleAdapter.getView(0, null, mAdapterHost);
156 // use the previous result as the convert view
197 View result = mSimpleAdapter.getDropDownView(0, null, mAdapterHost);
216 View result = mSimpleAdapter.getDropDownView(0, null, mAdapterHost);
224 // use the previous result as the convert view
283 ImageView view = new ImageView(mContext); local
284 assertNull(view.getDrawable())
339 TextView view = new TextView(mContext); local
    [all...]

Completed in 695 milliseconds

<<31323334353637383940>>