HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 376 - 400 of 3607) sorted by null

<<11121314151617181920>>

  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwViewMethods.java 11 import android.view.KeyEvent;
12 import android.view.MotionEvent;
13 import android.view.View;
14 import android.view.inputmethod.EditorInfo;
15 import android.view.inputmethod.InputConnection;
18 * An interface that defines a subset of the {@link View} functionality.
27 * @see android.view.View#onDraw
32 * @see android.view.View#onMeasur
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_reset.css 68 .powerwash-proposal-view .powerwash-proposal-specific,
69 .powerwash-confirm-view .powerwash-confirm-specific,
70 .rollback-confirm-view .rollback-confirm-specific,
71 .restart-required-view .restart-required-specific,
72 .revert-promise-view .revert-promise-specific {
79 .revert-promise-view #reset-controls {
83 .restart-required-view #reset-restart-button,
84 .powerwash-confirm-view #reset-button,
85 .rollback-confirm-view #reset-button,
86 .powerwash-proposal-view #reset-toconfirm-button
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
url_drop_target.h 13 // Object which coordinates the dropping of URLs on a given view, sending data
23 // Initialize the given view, which must implement the |URLDropTarget| (below),
25 - (id)initWithView:(NSView<URLDropTarget>*)view;
27 // The owner view should implement the following methods by calling the
57 // is supported by the web view. In particular, if the content is a local file
61 // The given URLs (an |NSArray| of |NSString|s) were dropped in the given view
62 // at the given point (in that view's coordinates).
63 - (void)dropURLs:(NSArray*)urls inView:(NSView*)view at:(NSPoint)point;
65 // The given text was dropped in the given view at the given point (in that
66 // view's coordinates)
    [all...]
  /external/chromium_org/extensions/renderer/
render_view_observer_natives.cc 22 content::RenderView* view,
24 : content::RenderViewObserver(view), context_(context), callback_(cb) {}
66 content::RenderView* view = content::RenderView::FromRoutingID(view_id); local
67 if (!view) {
68 LOG(WARNING) << "No render view found to register LoadWatcher.";
72 new LoadWatcher(context(), view, args[1].As<v8::Function>()); local
  /external/chromium_org/third_party/WebKit/Source/core/page/
AutoscrollController.cpp 96 if (FrameView* view = scrollable->frame()->view()) {
97 view->removePanScrollIcon();
98 view->setCursor(pointerCursor());
205 if (FrameView* view = scrollable->frame()->view())
206 view->addPanScrollIcon(lastKnownMousePosition);
248 if (FrameView* view = m_autoscrollRenderer->frame()->view())
249 updatePanScrollState(view, eventHandler.lastKnownMousePosition())
    [all...]
  /external/chromium_org/ui/views/
view_model.h 17 class View;
29 // Adds |view| to this model. This does not add |view| to a view hierarchy,
31 void Add(View* view, int index);
33 // Removes the view at the specified index. This does not actually remove the
34 // view from the view hierarchy.
37 // Moves the view at |index| to |target_index|. |target_index| is in term
77 View* view; member in struct:views::ViewModel::Entry
    [all...]
  /external/javassist/sample/duplicate/
Viewer.java 70 Viewer view = new Viewer(); local
71 f.addWindowListener(view);
72 f.add(view);
74 view.init();
75 view.start();
  /external/chromium_org/mojo/services/view_manager/
connection_manager.cc 142 void ConnectionManager::ProcessViewBoundsChanged(const ServerView* view,
149 view, old_bounds, new_bounds, IsChangeSource(i->first));
154 const ServerView* view,
161 view, new_parent, old_parent, IsChangeSource(i->first));
166 const ServerView* view,
173 view, new_parent, old_parent, IsChangeSource(i->first));
177 void ConnectionManager::ProcessViewReorder(const ServerView* view,
184 view, relative_view, direction, IsChangeSource(i->first));
188 void ConnectionManager::ProcessViewDeleted(const ViewId& view) {
192 i->second->ProcessViewDeleted(view, IsChangeSource(i->first))
    [all...]
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandingListView.java 27 import android.view.View;
28 import android.view.ViewTreeObserver;
45 private List<View> mViewsToDraw = new ArrayList<View>();
69 * Listens for item clicks and expands or collapses the selected view depending on
75 public void onItemClick (AdapterView<?> parent, View view, int position, long id) {
77 (view));
79 expandView(view);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
overrides.css 32 .overrides-view .tabbed-pane {
36 .overrides-view .tabbed-pane-header {
42 .overrides-view .tabbed-pane-content {
49 .overrides-view .tabbed-pane-header-contents {
53 .overrides-view .tabbed-pane-header-tabs {
60 .overrides-view .tabbed-pane-header-tab {
72 .overrides-view .tabbed-pane-header-tab:not(.selected) {
76 .overrides-view .tabbed-pane-header-tab.selected {
82 .overrides-view fieldset {
87 .overrides-view fieldset p
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
ObjectAnimatorTest.java 24 import android.view.animation.AccelerateInterpolator;
25 import android.view.animation.Interpolator;
53 Object object = mActivity.view.newBall;
66 float x = mActivity.view.newBall.getX();
67 float y = mActivity.view.newBall.getY();
73 Object object = mActivity.view.newBall;
86 Object object = mActivity.view.newBall;
88 int startColor = mActivity.view.RED;
89 int endColor = mActivity.view.BLUE;
112 Object object = mActivity.view.newBall
    [all...]
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java 29 import android.view.MotionEvent;
30 import android.view.View;
31 import android.view.View.OnTouchListener;
32 import android.view.ViewGroup;
33 import android.view.ViewTreeObserver;
34 import android.view.animation.AccelerateInterpolator;
35 import android.view.animation.DecelerateInterpolator;
36 import android.view.animation.LinearInterpolator
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PageWidgetDelegate.cpp 53 return rootFrame->view();
58 return toLocalFrame(page->mainFrame())->view();
63 RefPtr<FrameView> view = rootFrameView(page, rootFrame); local
64 if (!view)
94 FrameView* view = rootFrameView(page, rootFrame); local
95 if (view) {
97 view->paint(&gc, dirtyRect);
117 if (!frame || !frame->view())
122 if (!frame || !frame->view())
127 if (!frame || !frame->view())
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
UiUtils.java 12 import android.view.SurfaceView;
13 import android.view.View;
14 import android.view.ViewGroup;
15 import android.view.inputmethod.InputMethodManager;
44 * @param view A {@link View}.
47 boolean disableKeyboardCheck(Context context, View view);
60 * @param view The currently focused {@link View}, which would receive soft keyboard input
    [all...]
  /external/chromium_org/content/renderer/
render_view_browsertest.cc 155 RenderViewImpl* view() { function in class:content::RenderViewImplTest
160 return view()->page_id_;
164 return static_cast<RenderFrameImpl*>(view()->GetMainRenderFrame());
301 view()->saveImageFromDataURL(WebString::fromUTF8(image_data_url));
317 view()->saveImageFromDataURL(WebString::fromUTF8(large_data_url));
333 view()->saveImageFromDataURL(WebString::fromUTF8(exceeded_data_url));
345 view()->set_send_content_state_immediately(true);
450 RendererPreferences prefs = view()->renderer_preferences();
452 view()->OnSetRendererPrefs(prefs);
479 // Enable bindings to simulate a WebUI view
2163 RenderViewImpl* view() { function in class:content::SuppressErrorPageTest
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
PerspectiveProgram.cpp 32 void PerspectiveProgram::before(Matrix& model, Matrix& view, Matrix& projection) {
33 Program::before(model, view, projection);
37 Matrix::multiplyVector(mLightPosInEyeSpace, view, mLightPosInWorldSpace);
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraCtsActivity.java 21 import android.view.SurfaceHolder;
22 import android.view.SurfaceView;
23 import android.view.ViewGroup;
  /cts/tests/tests/nativeopengl/src/com/android/opengl/cts/
GLTestActivity.java 24 import android.view.SurfaceHolder;
25 import android.view.SurfaceView;
26 import android.view.Surface;
  /cts/tests/tests/view/src/android/view/cts/
FocusFinderCtsActivity.java 17 package android.view.cts;
19 import com.android.cts.view.R;
25 import android.view.ViewGroup;
FocusFinderTest.java 17 package android.view.cts;
22 import android.view.FocusFinder;
23 import android.view.View;
24 import android.view.ViewGroup;
37 super("com.android.cts.view", FocusFinderCtsActivity.class);
67 assertNextFocus(mTopLeft, View.FOCUS_RIGHT, mTopRight);
68 assertNextFocus(mTopRight, View.FOCUS_DOWN, mBottomRight);
69 assertNextFocus(mBottomRight, View.FOCUS_LEFT, mBottomLeft);
70 assertNextFocus(mBottomLeft, View.FOCUS_UP, mTopLeft)
140 View view = mFocusFinder.findNearestTouchable(mLayout, x, y, View.FOCUS_DOWN, deltas); local
    [all...]
SoundEffectConstantsTest.java 17 package android.view.cts;
20 import android.view.SoundEffectConstants;
21 import android.view.View;
35 .getContantForFocusDirection(View.FOCUS_RIGHT));
37 .getContantForFocusDirection(View.FOCUS_DOWN));
39 .getContantForFocusDirection(View.FOCUS_LEFT));
41 .getContantForFocusDirection(View.FOCUS_UP));
44 .getContantForFocusDirection(View.FOCUS_FORWARD));
47 .getContantForFocusDirection(View.FOCUS_BACKWARD))
    [all...]
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test6DetailFragment.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
44 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedState) {
45 View rootView = inflater.inflate(R.layout.test6_detail_fragment, container, false);
  /developers/build/prebuilts/gradle/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/swiperefreshlayoutbasic/
SwipeRefreshLayoutBasicFragment.java 26 import android.view.LayoutInflater;
27 import android.view.Menu;
28 import android.view.MenuInflater;
29 import android.view.MenuItem;
30 import android.view.View;
31 import android.view.ViewGroup;
80 public View onCreateView(LayoutInflater inflater, ViewGroup container,
82 View view = inflater.inflate(R.layout.fragment_sample, container, false) local
    [all...]
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/swiperefreshlayoutbasic/
SwipeRefreshLayoutBasicFragment.java 26 import android.view.LayoutInflater;
27 import android.view.Menu;
28 import android.view.MenuInflater;
29 import android.view.MenuItem;
30 import android.view.View;
31 import android.view.ViewGroup;
80 public View onCreateView(LayoutInflater inflater, ViewGroup container,
82 View view = inflater.inflate(R.layout.fragment_sample, container, false) local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarMechanics.java 20 import android.view.Menu;
21 import android.view.MenuItem;
22 import android.view.Window;
36 // before setting a content view. Normally this is set automatically

Completed in 518 milliseconds

<<11121314151617181920>>