Searched defs:view (Results 1 - 25 of 250) sorted by relevance

12345678910

/external/droiddriver/src/io/appium/droiddriver/actions/view/
H A DViewAction.java17 package io.appium.droiddriver.actions.view;
19 import android.view.View;
42 * @param view the View associated with the UiElement
47 protected abstract boolean perform(View view, UiElement element); argument
H A DCloseKeyboardAction.java17 package io.appium.droiddriver.actions.view;
24 import android.view.View;
25 import android.view.inputmethod.InputMethodManager;
57 protected boolean perform(View view, UiElement element) { argument
71 if (!imm.hideSoftInputFromWindow(view.getWindowToken(), 0, resultReceiver)) {
/external/autotest/frontend/client/src/autotest/tko/
H A DDBColumnSelector.java11 public DBColumnSelector(String view) { argument
12 this(view, false);
15 public DBColumnSelector(String view, boolean canUseSinglePoint) { argument
20 for (FieldInfo fieldInfo : TkoUtils.getFieldList(view)) {
/external/eigen/bench/btl/data/
H A Dgnuplot_common_settings.hh32 set view 60, 30, 1, 1 variable
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DBitmapImageViewTarget.java13 public BitmapImageViewTarget(ImageView view) { argument
14 super(view);
18 * Sets the {@link android.graphics.Bitmap} on the view using
25 view.setImageBitmap(resource);
H A DDrawableImageViewTarget.java10 public DrawableImageViewTarget(ImageView view) { argument
11 super(view);
16 view.setImageDrawable(resource);
H A DImageViewTargetFactory.java11 * {@link android.view.View} subclass.
16 public <Z> Target<Z> buildTarget(ImageView view, Class<Z> clazz) { argument
18 return (Target<Z>) new GlideDrawableImageViewTarget(view);
20 return (Target<Z>) new BitmapImageViewTarget(view);
22 return (Target<Z>) new DrawableImageViewTarget(view);
H A DGlideDrawableImageViewTarget.java21 * @param view The view to display the drawable in.
23 public GlideDrawableImageViewTarget(ImageView view) { argument
24 this(view, GlideDrawable.LOOP_FOREVER);
31 * @param view The view to display the drawable in.
36 public GlideDrawableImageViewTarget(ImageView view, int maxLoopCount) { argument
37 super(view);
44 * {@link android.graphics.drawable.Drawable} on the view, the drawable is set using
59 float viewRatio = view
[all...]
H A DImageViewTarget.java16 public ImageViewTarget(ImageView view) { argument
17 super(view);
21 * Returns the current {@link android.graphics.drawable.Drawable} being displayed in the view using
26 return view.getDrawable();
30 * Sets the given {@link android.graphics.drawable.Drawable} on the view using
37 view.setImageDrawable(drawable);
41 * Sets the given {@link android.graphics.drawable.Drawable} on the view using
48 view.setImageDrawable(placeholder);
52 * Sets the given {@link android.graphics.drawable.Drawable} on the view using
59 view
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_sampler.c34 * Initialize a pipe_sampler_view. 'view' is considered to have
38 default_template(struct pipe_sampler_view *view, argument
43 memset(view, 0, sizeof(*view));
48 view->format = format;
49 view->u.tex.first_level = 0;
50 view->u.tex.last_level = texture->last_level;
51 view->u.tex.first_layer = 0;
52 view->u.tex.last_layer = texture->target == PIPE_TEXTURE_3D ?
54 view
88 u_sampler_view_default_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
100 u_sampler_view_default_dx9_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_stateobj_tex.h25 nv50_tic_entry(struct pipe_sampler_view *view) argument
27 return (struct nv50_tic_entry *)view;
/external/robolectric/v1/src/main/java/android/view/animation/
H A DShadowAnimationBridge.java1 package android.view.animation;
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestWindowTest.java1 package com.xtremelabs.robolectric.tester.android.view;
H A DTestMenuTest.java1 package com.xtremelabs.robolectric.tester.android.view;
12 import com.xtremelabs.robolectric.tester.android.view.TestMenuItem;
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
H A DTestOnLongClickListener.java3 import android.view.View;
9 public boolean onLongClick(View view) { argument
/external/vogar/src/vogar/target/
H A DTestActivity.java41 private TextView view; field in class:TestActivity
61 this.view = new TextView(this);
63 setContentView(view);
84 view.append(message + "\n");
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestSubMenu.java1 package com.xtremelabs.robolectric.tester.android.view;
4 import android.view.MenuItem;
5 import android.view.SubMenu;
6 import android.view.View;
31 public SubMenu setHeaderView(View view) { argument
H A DTestWindowManager.java1 package com.xtremelabs.robolectric.tester.android.view;
3 import android.view.Display;
4 import android.view.View;
5 import android.view.WindowManager;
19 public void addView(View view, android.view.ViewGroup.LayoutParams layoutParams) { argument
20 views.add(view);
24 public void removeView(View view) { argument
25 views.remove(view);
29 public void updateViewLayout(View arg0, android.view
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/request/animation/
H A DViewPropertyAnimation.java3 import android.view.View;
7 * that can apply an animation like a {@link android.view.ViewPropertyAnimator}
10 * @param <R> The type of the resource displayed in the view that is animated
17 * Constructor for a view property animation that takes an
19 * to a view.
29 * constructor to the given view and returns {@code false} because the animator cannot set the new resource on
30 * the view.
38 final View view = adapter.getView();
39 if (view != null) {
46 * An interface that allows an animation to be applied on or started from an {@link android.view
54 animate(View view) argument
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowExpandableListView.java3 import android.view.View;
17 public boolean performItemClick(View view, int position, long id) { argument
H A DShadowInputMethodManager.java5 import android.view.View;
6 import android.view.inputmethod.InputMethodManager;
17 public boolean showSoftInput(View view, int flags) { argument
18 return showSoftInput(view, flags, null);
22 public boolean showSoftInput(View view, int flags, ResultReceiver resultReceiver) { argument
H A DShadowListActivity.java4 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) { argument
36 listView = view;
46 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
51 handler.invoke(realActivity, parent, view, position, id);
H A DShadowPasswordTransformationMethod.java6 import android.view.View;
16 public CharSequence getTransformation(CharSequence charSequence, View view) { argument
32 public void onFocusChanged(View view, CharSequence charSequence, boolean b, int i, Rect rect) { } argument
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DGalleryTest.java3 import android.view.KeyEvent;
4 import android.view.View;
34 assertThat((Gallery) listener.view, sameInstance(gallery));
42 assertThat((Gallery)listener.view, sameInstance(gallery));
47 View view; field in class:GalleryTest.TestOnKeyListener
52 public boolean onKey(View view, int keyCode, KeyEvent event) { argument
53 this.view = view;
H A DPagerAdapterTest.java4 import android.support.v4.view.PagerAdapter;
5 import android.view.View;
32 public boolean isViewFromObject(View view, Object object) { argument

Completed in 746 milliseconds

12345678910