Searched refs:view (Results 1 - 25 of 622) sorted by relevance

1234567891011>>

/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...]
H A Du_sampler.h43 u_sampler_view_default_template(struct pipe_sampler_view *view,
48 u_sampler_view_default_dx9_template(struct pipe_sampler_view *view,
/external/libmojo/mojo/common/
H A Dcommon_custom_types_struct_traits.cc12 std::vector<uint16_t> view; local
13 data.ReadData(&view);
14 out->assign(reinterpret_cast<const base::char16*>(view.data()), view.size());
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/view/
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 DViewAnimation.java3 import android.view.View;
4 import android.view.animation.Animation;
8 * {@link android.view.animation.Animation Animation} to a {@link android.view.View View} using
9 * {@link android.view.View#startAnimation(android.view.animation.Animation) View.startAnimation}.
11 * @param <R> The type of the resource displayed in the view that is animated
18 * Constructs a new ViewAnimation that will start the given {@link android.view.animation.Animation}.
25 * Always clears the current animation on the view using {@link android.view
[all...]
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/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DViewTarget.java5 import android.view.Display;
6 import android.view.View;
7 import android.view.ViewGroup;
8 import android.view.ViewTreeObserver;
9 import android.view.WindowManager;
20 * {@link android.view.ViewTreeObserver.OnDrawListener}.
24 * class uses the {@link View#setTag(Object)} method to store some metadata so that if a view is reused, any
30 * and/or {@link IllegalArgumentException}s. If you must call {@link View#setTag(Object)} on a view, consider
34 * @param <T> The specific subclass of view wrapped by this target.
40 protected final T view; field in class:ViewTarget
43 ViewTarget(T view) argument
114 private final View view; field in class:ViewTarget.SizeDeterminer
118 SizeDeterminer(View view) argument
[all...]
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 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...]
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);
/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/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/v8/tools/turbolizer/
H A Dtext-view.js10 let view = this;
11 view.hide();
12 view.textListNode = view.divNode.getElementsByTagName('ul')[0];
13 view.fillerSvgElement = view.divElement.append("svg").attr('version','1.1').attr("width", "0");
14 view.patterns = patterns;
15 view.allowSpanSelection = allowSpanSelection;
16 view.nodeToLineMap = [];
30 broker.select(selectionHandler, view
[all...]
H A Dcode-view.js10 let view = this;
11 view.PR = PR;
12 view.mouseDown = false;
13 view.broker = broker;
14 view.allSpans = [];
20 var broker = view.broker;
39 var lineListDiv = view.divNode.firstChild.firstChild.childNodes;
57 let firstSelect = view.selection.isEmpty();
63 let upper = view.allSpans.length;
67 var lineStart = view
[all...]
H A Ddisassembly-view.js11 let view = this;
22 view.select(function(location) { return location.address == text; }, true, true);
37 view.pos_start = Number(text);
73 if (view.pos_lines === null) return undefined;
74 let pos = view.pos_lines[li-1] + Number(matches[2]);
81 view.SOURCE_POSITION_HEADER_REGEX = /^(\s*-- .+:)(\d+:\d+)( --)/;
85 [view.SOURCE_POSITION_HEADER_REGEX, SOURCE_POSITION_HEADER_STYLE, -1],
119 view.setPatterns(patterns);
123 let view = this;
142 else if (view
[all...]
/external/clang/tools/clang-format/
H A Dclang-format-sublime.py31 encoding = self.view.encoding()
36 for region in self.view.sel():
42 '-assume-filename', str(self.view.file_name())])
43 old_viewport_position = self.view.viewport_position()
44 buf = self.view.substr(sublime.Region(0, self.view.size()))
50 self.view.replace(
51 edit, sublime.Region(0, self.view.size()),
53 self.view.sel().clear()
55 self.view
[all...]
/external/droiddriver/src/io/appium/droiddriver/instrumentation/
H A DViewElement.java23 import android.view.View;
24 import android.view.ViewGroup;
44 private final View view; field in class:ViewElement
53 * instance are immutable. If the underlying view is updated, a new {@code ViewElement} instance
56 public ViewElement(DroidDriverContext<View, ViewElement> context, View view, ViewElement parent) { argument
58 this.view = Preconditions.checkNotNull(view);
60 AttributesSnapshot attributesSnapshot = new AttributesSnapshot(view);
115 return view;
120 private final View view; field in class:ViewElement.AttributesSnapshot
125 AttributesSnapshot(View view) argument
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DVideoViewTest.java22 private VideoView view; field in class:VideoViewTest
25 view = new VideoView(null);
31 view.setOnPreparedListener(l);
32 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view);
39 view.setOnErrorListener(l);
40 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view);
47 view.setOnCompletionListener(l);
48 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view);
54 view.setVideoPath("video.mp4");
55 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view);
[all...]
H A DViewTest.java8 import android.view.*;
9 import android.view.View.MeasureSpec;
10 import android.view.animation.Animation;
28 private View view; field in class:ViewTest
32 view = new View(new Activity());
37 ViewGroup.LayoutParams layoutParams = view.getLayoutParams();
43 assertThat(view.getWidth(), equalTo(0));
44 assertThat(view.getHeight(), equalTo(0));
46 view.layout(100, 200, 303, 404);
47 assertThat(view
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DWorkSpaceController.java55 private final WorkSpaceView view = new WorkSpaceView(); field in class:WorkSpaceController
61 view.resultPane = (JPanel) runner.getView();
62 view.initComponents();
68 this.view.setTitle("gUnitEditor");
69 this.view.setVisible(true);
70 this.view.pack();
74 return view.paneEditor.getView();
78 this.view.tabEditors.addChangeListener(new TabChangeListener());
79 this.view.listRules.setListSelectionListener(new RuleListSelectionListener());
80 this.view
[all...]
/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
/external/droiddriver/src/io/appium/droiddriver/actions/
H A DInputInjector.java19 import android.view.InputEvent;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRemoteViews.java6 import android.view.View;
47 public void doUpdate(View view) {
48 ((TextView) view).setText(text);
56 @Override void doUpdate(final View view) {
57 view.setOnClickListener(new View.OnClickListener() {
61 pendingIntent.send(view.getContext(), 0, null);
75 public void doUpdate(View view) {
76 view.setVisibility(visibility);
85 public void doUpdate(View view) {
86 ((ImageView) view)
125 doUpdate(View view) argument
[all...]
/external/skia/samplecode/
H A DOverView.h16 bool is_overview(SkView* view);

Completed in 2172 milliseconds

1234567891011>>