Searched defs:view (Results 201 - 225 of 738) sorted by relevance

1234567891011>>

/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DTwoFieldDatePickerDialog.java100 public void onMonthOrWeekChanged(TwoFieldDatePicker view, int year, int positionInYear) { argument
/external/chromium_org/ui/base/
H A Dlayout.cc123 float GetScaleFactorForNativeView(gfx::NativeView view) { argument
124 gfx::Screen* screen = gfx::Screen::GetScreenFor(view);
126 gfx::Display display = screen->GetDisplayNearestWindow(view);
H A Dview_prop.cc11 // Maints the actual view, key and data.
14 // Returns the Data* for the view/key pair. If |create| is false and |Get|
15 // has not been invoked for the view/key pair, NULL is returned.
16 static void Get(gfx::AcceleratedWidget view, argument
22 scoped_refptr<Data> new_data(new Data(view, key));
54 Data(gfx::AcceleratedWidget view, const char* key) argument
55 : view_(view),
80 ViewProp::ViewProp(gfx::AcceleratedWidget view, const char* key, void* data) { argument
81 Data::Get(view, key, true, &data_);
92 void* ViewProp::GetValue(gfx::AcceleratedWidget view, cons argument
[all...]
/external/chromium_org/ui/snapshot/
H A Dsnapshot_win.cc133 gfx::NativeView view,
132 GrabViewSnapshotAsync( gfx::NativeView view, const gfx::Rect& source_rect, scoped_refptr<base::TaskRunner> background_task_runner, const GrabWindowSnapshotAsyncPNGCallback& callback) argument
/external/chromium_org/ui/v2/public/
H A Dview_observer.h52 virtual void OnViewDestroy(View* view, DispositionChangePhase phase) {} argument
53 virtual void OnViewBoundsChanged(View* view, argument
56 virtual void OnViewVisibilityChange(View* view, argument
/external/chromium_org/ui/views/accessibility/
H A Dax_view_obj_wrapper.cc11 #include "ui/views/view.h"
16 AXViewObjWrapper::AXViewObjWrapper(View* view) : view_(view) { argument
17 DCHECK(view->GetWidget());
18 if (view->GetWidget())
19 AXAuraObjCache::GetInstance()->GetOrCreate(view->GetWidget());
H A Dnative_view_accessibility.cc8 #include "ui/views/view.h"
15 NativeViewAccessibility* NativeViewAccessibility::Create(View* view) { argument
16 DCHECK(view);
18 instance->set_view(view);
/external/chromium_org/ui/views/animation/
H A Dbounds_animator_unittest.cc10 #include "ui/views/view.h"
21 explicit TestBoundsAnimator(View* view) : BoundsAnimator(view) { argument
111 // Checks animate view to.
127 // Make sure the bounds match of the view that was animated match.
/external/chromium_org/ui/views/bubble/
H A Dbubble_delegate_unittest.cc31 void SetAnchorViewForTest(View* view) { argument
32 SetAnchorView(view);
115 // destruction of the used anchor view. (Animations and delayed closure of the
116 // bubble will call upon the anchor view to get its location).
118 // Create an anchor widget and add a view to be used as an anchor view.
128 // Check that the anchor view is correct and set up an anchor view rect.
129 // Make sure that this rect will get ignored (as long as the anchor view is
141 // Remove now the anchor view an
[all...]
/external/chromium_org/ui/views/controls/
H A Dfocusable_border.cc38 void FocusableBorder::Paint(const View& view, gfx::Canvas* canvas) { argument
40 path.addRect(gfx::RectToSkRect(view.GetLocalBounds()), SkPath::kCW_Direction);
45 color = view.GetNativeTheme()->GetSystemColor(
46 view.HasFocus() ? ui::NativeTheme::kColorId_FocusedBorderColor :
/external/chromium_org/ui/views/examples/
H A Dscroll_view_example.cc13 #include "ui/views/view.h"
39 View* view = child_at(index); local
40 gfx::Size size = view->GetPreferredSize();
41 view->SetBounds(0, y, size.width(), size.height());
75 // Add scroll view.
/external/chromium_org/ui/views/focus/
H A Dfocus_search.cc8 #include "ui/views/view.h"
42 // If there was no starting view, then the one we select is a potential
46 // The starting view should be a direct or indirect child of the root.
59 // If the starting view is focusable, we don't want to go down, as we are
60 // traversing the view hierarchy tree bottom-up.
70 // Don't set the focus to something outside of this view hierarchy.
107 View* FocusSearch::FindSelectedViewForGroup(View* view) { argument
108 if (view->IsGroupFocusTraversable() ||
109 view->GetGroup() == -1) // No group for that view
228 View* view = local
[all...]
/external/chromium_org/ui/views/ime/
H A Dinput_method_base.cc10 #include "ui/views/view.h"
32 // Alert the InputMethod of the Widget's currently focused view.
43 void InputMethodBase::OnTextInputTypeChanged(View* view) {} argument
63 bool InputMethodBase::IsViewFocused(View* view) const {
64 return widget_ && widget_->IsActive() && view && GetFocusedView() == view;
94 // Convert coordinates if the focused view is inside a child Widget.
/external/chromium_org/ui/views/
H A Dview_targeter.cc9 #include "ui/views/view.h"
32 View* view = static_cast<View*>(root); local
35 return FindTargetForKeyEvent(view, *static_cast<ui::KeyEvent*>(event));
38 return FindTargetForScrollEvent(view,
44 View* gesture_target = FindTargetForGestureEvent(view, *gesture);
/external/chromium_org/ui/views/widget/
H A Ddrop_helper.cc8 #include "ui/views/view.h"
22 void DropHelper::ResetTargetViewIfEquals(View* view) { argument
23 if (target_view_ == view)
25 if (deepest_view_ == view)
32 View* view = CalculateTargetViewImpl(root_view_location, data, true, local
35 if (view != target_view_) {
38 target_view_ = view;
84 View* view = root_view_->GetEventHandlerForPoint(root_view_location); local
85 if (view == deepest_view_) {
86 // The view th
[all...]
H A Dtooltip_manager_aura.cc97 View* view = GetViewUnderPoint(view_point); local
98 UpdateTooltipForTarget(view, view_point, root_window);
102 void TooltipManagerAura::TooltipTextChanged(View* view) { argument
109 if (target != view)
111 UpdateTooltipForTarget(view, view_point, root_window);
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DDrawableCrossFadeViewAnimation.java6 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) { argument
82 view.startAnimation(defaultAnimation);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_sampler.c65 const struct pipe_sampler_view* view,
167 i915->fragment_sampler_views[unit], /* sampler view */
190 const struct pipe_sampler_view* view)
192 if ( (view->swizzle_r != PIPE_SWIZZLE_RED ||
193 view->swizzle_g != PIPE_SWIZZLE_GREEN ||
194 view->swizzle_b != PIPE_SWIZZLE_BLUE ||
195 view->swizzle_a != PIPE_SWIZZLE_ALPHA ) &&
247 if ( view->swizzle_r == PIPE_SWIZZLE_RED &&
248 view->swizzle_g == PIPE_SWIZZLE_RED &&
249 view
189 translate_texture_format(enum pipe_format pipeFormat, const struct pipe_sampler_view* view) argument
294 update_map(struct i915_context *i915, uint unit, const struct i915_texture *tex, const struct i915_sampler_state *sampler, const struct pipe_sampler_view* view, uint state[2]) argument
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_tex.c82 struct nv50_tic_entry *view; local
86 view = MALLOC_STRUCT(nv50_tic_entry);
87 if (!view)
90 view->pipe = *templ;
91 view->pipe.reference.count = 1;
92 view->pipe.texture = NULL;
93 view->pipe.context = pipe;
95 view->id = -1;
97 pipe_resource_reference(&view->pipe.texture, texture);
99 tic = &view
[all...]
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_objects.c125 struct pipe_sampler_view *view)
129 if (!view)
132 assert(view->texture == rb_resource->resource);
136 rb_view->base = *view;
141 rb_view->sampler_view = view;
123 rbug_sampler_view_create(struct rbug_context *rb_context, struct rbug_resource *rb_resource, struct pipe_sampler_view *view) argument
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_tile_cache.c126 struct pipe_sampler_view *view)
128 if (!view)
130 return (tc->texture == view->texture &&
131 tc->format == view->format &&
132 tc->swizzle_r == view->swizzle_r &&
133 tc->swizzle_g == view->swizzle_g &&
134 tc->swizzle_b == view->swizzle_b &&
135 tc->swizzle_a == view->swizzle_a);
139 * Specify the sampler view to cache.
143 struct pipe_sampler_view *view)
125 sp_tex_tile_is_compat_view(struct softpipe_tex_tile_cache *tc, struct pipe_sampler_view *view) argument
142 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache *tc, struct pipe_sampler_view *view) argument
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_sampler_view.c65 boolean view = TRUE; local
73 /* Is a view needed */
78 * results as a view.
81 view = FALSE;
84 view = FALSE;
87 view = TRUE;
91 if (view) {
98 SVGA_DBG(DEBUG_VIEWS, "svga: Sampler view: reuse %p, %u %u, last %u\n",
117 /* No view needed just use the whole texture */
118 if (!view) {
[all...]
/external/qemu/android/base/containers/
H A DStringVector.cpp98 void StringVector::append(const StringView& view) { argument
99 *(this->emplace(this->size())) = view;
102 void StringVector::prepend(const StringView& view) { argument
103 *(this->emplace(0U)) = view;
106 void StringVector::insert(size_t index, const StringView& view) { argument
107 *(this->emplace(index)) = view;
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysevents.cc166 SDL_VideoDevice *view = current_video; local
177 if (view->input_grab != SDL_GRAB_OFF)
/external/replicaisland/src/com/replica/replicaisland/
H A DSliderPreference.java20 import android.view.View;
63 protected void onBindView(View view) { argument
64 super.onBindView(view);
67 TextView minText = (TextView)view.findViewById(R.id.min);
72 TextView maxText = (TextView)view.findViewById(R.id.max);
76 SeekBar bar = (SeekBar)view.findViewById(R.id.slider);

Completed in 520 milliseconds

1234567891011>>