HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 51 - 75 of 6090) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/view/
ViewGroupOverlay.java 16 package android.view;
23 * (the "host view") which is drawn after all other content in that view
24 * (including the view group's children). Interaction with the overlay
35 ViewGroupOverlay(Context context, View hostView) {
40 * Adds a View to the overlay. The bounds of the added view should be
41 * relative to the host view. Any view added to the overlay should be
49 * <p>If the view has a parent, the view will be removed from that paren
    [all...]
IInputFilter.aidl 17 package android.view;
19 import android.view.IInputFilterHost;
20 import android.view.InputEvent;
IOnKeyguardExitResult.aidl 18 package android.view;
IRotationWatcher.aidl 18 package android.view;
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ItemMoveGestureListener.java 19 import android.view.MotionEvent;
20 import android.view.View;
29 * @param view The view
34 public boolean onMoveBegin(View view, MotionEvent e);
39 * @param view The view
45 public boolean onMove(View view, MotionEvent e1, MotionEvent e2)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
splitView.css 29 .split-view {
38 .split-view-contents {
44 .split-view-contents.maximized {
49 .split-view-vertical > .split-view-contents {
54 .split-view-vertical > .split-view-contents-first {
58 .split-view-vertical > .split-view-contents-first.maximized {
62 .split-view-vertical > .split-view-contents-second
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/
perf.css 26 #perf-view {
30 #perf-view > .title-bar {
34 #perf-view > .notifications {
38 #perf-view .actions,
39 #perf-view .pop-out {
44 #perf-view > iframe {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
GraphicsActivity.java 21 import android.view.View;
22 import android.view.ViewGroup;
34 public void setContentView(View view) {
37 vg.addView(view);
38 view = vg;
41 super.setContentView(view);
  /external/chromium-trace/trace-viewer/src/tracing/analysis/
analysis_view.css 6 .analysis-view {
11 .analysis-view:not(.viewing-object) {
15 .analysis-view > * {
  /cts/tests/src/android/view/cts/
MenuInflaterStubActivity.java 17 package android.view.cts;
20 import android.view.MenuInflater;
  /cts/tests/tests/holo/src/android/holo/cts/
LayoutModifier.java 19 import android.view.View;
22 * Interface used to do further setup on a view after it has been inflated.
26 /** Actions to take before inflating the view. */
30 * @param view inflated by the test activity
31 * @return the same view or another view that will be snapshotted by the test
33 View modifyView(View view);
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
picture_view.css 6 .picture-snapshot-view {
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBuffer.cpp 73 void ArrayBuffer::addView(ArrayBufferView* view)
75 view->m_buffer = this;
76 view->m_prevView = 0;
77 view->m_nextView = m_firstView;
79 m_firstView->m_prevView = view;
80 m_firstView = view;
83 void ArrayBuffer::removeView(ArrayBufferView* view)
85 ASSERT(this == view->m_buffer);
86 if (view->m_nextView)
87 view->m_nextView->m_prevView = view->m_prevView
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_sampler.c 34 * Initialize a pipe_sampler_view. 'view' is considered to have
38 default_template(struct pipe_sampler_view *view,
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->swizzle_r = PIPE_SWIZZLE_RED
    [all...]
  /external/chromium_org/ui/views/
debug_utils.h 12 class View;
14 // Log the view hierarchy.
15 VIEWS_EXPORT void PrintViewHierarchy(const View* view);
18 VIEWS_EXPORT void PrintFocusHierarchy(const View* view);
debug_utils.cc 11 #include "ui/views/view.h"
15 void PrintViewHierarchyImp(const View* view,
21 *out << UTF8ToWide(view->GetClassName());
23 *out << view->id();
25 *out << view->x() << L"," << view->y() << L",";
26 *out << view->bounds().right() << L"," << view->bounds().bottom();
28 *out << view; local
47 *out << view; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_sampler.c 34 * Initialize a pipe_sampler_view. 'view' is considered to have
38 default_template(struct pipe_sampler_view *view,
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->swizzle_r = PIPE_SWIZZLE_RED
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
IAccessibilityManagerClient.aidl 17 package android.view.accessibility;
  /frameworks/base/core/java/com/android/internal/view/
InputBindResult.aidl 17 package com.android.internal.view;
  /frameworks/base/tools/layoutlib/create/tests/mock_data/mock_android/widget/
LinearLayout.java 19 import mock_android.view.ViewGroup;
23 public class LayoutParams extends mock_android.view.ViewGroup.LayoutParams {
  /frameworks/support/v4/froyo/android/support/v4/view/
ViewConfigurationCompatFroyo.java 17 package android.support.v4.view;
19 import android.view.ViewConfiguration;
  /frameworks/support/v7/appcompat/src/android/support/v7/view/
CollapsibleActionView.java 17 package android.support.v7.view;
19 import android.support.v4.view.MenuItemCompat.OnActionExpandListener;
22 * When a {@link android.view.View} implements this interface it will receive callbacks when expanded or
23 * collapsed as an action view alongside the optional, app-specified callbacks to {@link
26 * <p>See {@link android.support.v4.view.MenuItemCompat} for more information about action views.
32 * Called when this view is expanded as an action view. See {@link
33 * android.support.v4.view.MenuItemCompat#expandActionView(android.view.MenuItem)}
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/widget/
LinearLayout.java 19 import mock_android.view.ViewGroup;
23 public class LayoutParams extends mock_android.view.ViewGroup.LayoutParams {
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
results_unittests.js 125 test('View', 18, function() {
130 var view = new ui.results.View(delegate);
131 view.setResultsByTest(kExampleResultsByTest);
133 view.firstResult();
134 var testSelector = view.querySelector('.test-selector');
137 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 0);
139 view.nextResult();
141 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 1);
142 equals(view.currentTestName(), 'scrollbars/custom-scrollbar-with-incomplete-style.html')
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_view.css 6 #timeline-view-selection-div {
11 #timeline-view-selection-toggle {
15 .timeline-view-rotateleft {
19 .timeline-view-rotateright {
23 #timeline-view-selection-div ul {
28 #timeline-view-selection-div li {
33 .timeline-view-text {
37 #timeline-view-open-sockets {
41 #timeline-view-in-use-sockets {
45 #timeline-view-url-requests
    [all...]

Completed in 325 milliseconds

1 23 4 5 6 7 8 91011>>