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

1 2 3 4 5 6 7 8 91011>>

  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ListPopupMenu/Application/src/main/java/com/example/android/actionbarcompat/listpopupmenu/
PopupListFragment.java 21 import android.view.MenuItem;
22 import android.view.View;
23 import android.view.ViewGroup;
31 * This ListFragment displays a list of cheeses, with a clickable view on each item whichs displays
35 public class PopupListFragment extends ListFragment implements View.OnClickListener {
52 public void onListItemClick(ListView listView, View v, int position, long id) {
60 public void onClick(final View view) {
62 // correctly positioned. The reason being that the view may change position before th
116 View view = super.getView(position, convertView, container); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarNavigationTarget.java 21 import android.view.Menu;
22 import android.view.MenuItem;
23 import android.view.Window;
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
UrlIntentListener.java 22 import android.view.View;
27 * A listener which expects a URL as a tag of the view it is associated with. It then opens the URL
32 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
33 final String url = view.getTag().toString();
  /development/samples/browseable/ActionBarCompat-ListPopupMenu/src/com.example.android.actionbarcompat.listpopupmenu/
PopupListFragment.java 21 import android.view.MenuItem;
22 import android.view.View;
23 import android.view.ViewGroup;
31 * This ListFragment displays a list of cheeses, with a clickable view on each item whichs displays
35 public class PopupListFragment extends ListFragment implements View.OnClickListener {
52 public void onListItemClick(ListView listView, View v, int position, long id) {
60 public void onClick(final View view) {
62 // correctly positioned. The reason being that the view may change position before th
116 View view = super.getView(position, convertView, container); local
    [all...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
WindowCallbackWrapper.java 8 import android.view.ActionMode;
9 import android.view.ActionMode.Callback;
10 import android.view.KeyEvent;
11 import android.view.Menu;
12 import android.view.MenuItem;
13 import android.view.MotionEvent;
14 import android.view.View;
15 import android.view.Window;
16 import android.view.WindowManager.LayoutParams
    [all...]
ApiCompatibilityUtils.java 17 import android.view.View;
18 import android.view.ViewGroup.MarginLayoutParams;
19 import android.view.ViewTreeObserver;
35 * Returns true if view's layout direction is right-to-left.
37 * @param view the View whose layout is being considered
39 public static boolean isLayoutRtl(View view) {
41 return view.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL
    [all...]
  /external/chromium_org/chrome/browser/
platform_util.h 37 // Get the top level window for the native view. This can return NULL.
38 gfx::NativeWindow GetTopLevel(gfx::NativeView view);
40 // Get the direct parent of |view|, may return NULL.
41 gfx::NativeView GetParent(gfx::NativeView view);
49 // Returns true if the view is visible. The exact definition of this is
51 // whether the view has the visible attribute set.
52 bool IsVisible(gfx::NativeView view);
  /external/chromium_org/mojo/services/window_manager/
window_manager_service_impl.h 27 virtual void SetCapture(Id view,
29 virtual void FocusWindow(Id view,
32 Id view,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
heapProfiler.css 40 .heap-snapshot-view {
50 .heap-snapshot-view .pie-chart {
54 .heap-snapshot-view .data-grid {
58 .heap-snapshot-view .data-grid tr:empty {
63 .heap-snapshot-view .data-grid span.percent-column {
67 .heap-snapshot-view .console-formatted-object,
77 .heap-snapshot-view .console-formatted-string {
81 .heap-snapshot-view tr:not(.selected) .console-formatted-id {
85 .heap-snapshot-view .delimiter {
90 .heap-snapshot-view .data-grid
    [all...]
requestHeadersView.css 7 .request-headers-view {
19 .request-headers-view.visible {
23 .request-headers-view .outline-disclosure > .parent {
28 .request-headers-view .outline-disclosure > .parent > .section {
32 .request-headers-view .outline-disclosure .children li {
36 .request-headers-view .outline-disclosure .caution {
42 .request-headers-view .outline-disclosure li.expanded .header-count {
46 .request-headers-view .outline-disclosure li .header-toggle {
50 .request-headers-view .outline-disclosure li .status-from-cache {
54 .request-headers-view .outline-disclosure li.expanded .header-toggle
    [all...]
  /external/chromium_org/ui/v2/public/
view_observer.h 16 class View;
18 // Observe View disposition changes. -ing methods are called before the change
32 View* target;
33 View* old_parent;
34 View* new_parent;
35 View* receiver;
52 virtual void OnViewDestroy(View* view, DispositionChangePhase phase) {}
53 virtual void OnViewBoundsChanged(View* view,
    [all...]
  /external/chromium_org/ui/views/animation/
bounds_animator.h 26 class View;
28 // Bounds animator is responsible for animating the bounds of a view from the
33 // BoundsAnimator internally creates an animation for each view. If you need
35 // You can attach an AnimationDelegate to the individual animation for a view
41 explicit BoundsAnimator(View* view);
44 // Starts animating |view| from its current bounds to |target|. If there is
45 // already an animation running for the view it's stopped and a new one
46 // started. If an AnimationDelegate has been set for |view| it is removed
48 void AnimateViewTo(View* view, const gfx::Rect& target)
    [all...]
  /external/chromium_org/ui/views/
drag_utils.cc 21 gfx::NativeView view = widget->GetNativeView(); local
22 gfx::Display display = gfx::Screen::GetScreenFor(view)->
23 GetDisplayNearestWindow(view);
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
InstrumentationInputInjector.java 20 import android.view.InputEvent;
21 import android.view.KeyEvent;
22 import android.view.MotionEvent;
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ImageViewTargetFactory.java 10 public <Z> Target<Z> buildTarget(ImageView view, Class<Z> clazz) {
12 return (Target<Z>) new BitmapImageViewTarget(view);
14 return (Target<Z>) new DrawableImageViewTarget(view);
  /external/chromium_org/mojo/services/public/cpp/view_manager/tests/
view_manager_unittest.cc 48 typedef base::Callback<void(ViewManager*, View*)> LoadedCallback;
84 View* root,
100 explicit BoundsChangeObserver(View* view) : view_(view) {}
105 virtual void OnViewBoundsChanged(View* view,
108 DCHECK_EQ(view, view_);
112 View* view_;
117 // Wait until the bounds of the supplied view change
280 View* view = View::Create(parent_manager); local
369 View* view = View::Create(window_manager()); local
383 View* view = View::Create(window_manager()); local
397 View* view = View::Create(window_manager()); local
427 View* view = View::Create(window_manager()); local
443 View* view = View::Create(window_manager()); local
458 View* view = View::Create(window_manager()); local
485 View* view = View::Create(window_manager()); local
    [all...]
  /external/chromium_org/chrome/browser/resources/net_export/
net_export.js 15 * This class handles the presentation of our profiler view. Used as a
32 $('export-view-start-data').onclick = this.onStartData_.bind(this);
33 $('export-view-stop-data').onclick = this.onStopData_.bind(this);
34 $('export-view-send-data').onclick = this.onSendData_.bind(this);
49 var stripPrivateData = $('export-view-private-data-toggle').checked;
78 $('export-view-file-path-text').textContent =
81 $('export-view-file-path-text').textContent = '';
84 $('export-view-private-data-toggle').disabled = true;
85 $('export-view-start-data').disabled = true;
86 $('export-view-deletes-log-text').hidden = true
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/
ProjectedPresentation.java 21 import android.view.Display;
22 import android.view.KeyEvent;
23 import android.view.MotionEvent;
24 import android.view.WindowManager;
31 // This theme is required to prevent an extra view from obscuring the presentation
  /cts/hostsidetests/theme/app/src/android/theme/app/modifiers/
SearchViewModifier.java 22 import android.view.View;
37 public View modifyView(View view) {
38 SearchView searchView = (SearchView) view;
39 Context context = view.getContext();
51 throw new IllegalArgumentException("Bad search view type: " + mSearchViewType);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodManagerTest.java 16 package android.view.inputmethod.cts;
18 import com.android.cts.view.R;
28 import android.view.KeyEvent;
29 import android.view.Window;
30 import android.view.inputmethod.BaseInputConnection;
31 import android.view.inputmethod.InputMethodInfo;
32 import android.view.inputmethod.InputMethodManager;
41 super("com.android.cts.view", InputMethodCtsActivity.class);
68 final EditText view = (EditText) window.findViewById(R.id.entry); local
73 return view.hasWindowFocus()
    [all...]
  /developers/build/prebuilts/gradle/ScreenCapture/Application/tests/src/com/example/android/screencapture/test/
SampleTests.java 20 import android.view.View;
56 final View view = mTestFragment.getView(); local
57 assertNotNull(view);
58 final Button buttonToggle = (Button) view.findViewById(R.id.toggle);
  /developers/samples/android/media/ScreenCapture/Application/tests/src/com/example/android/screencapture/test/
SampleTests.java 20 import android.view.View;
56 final View view = mTestFragment.getView(); local
57 assertNotNull(view);
58 final Button buttonToggle = (Button) view.findViewById(R.id.toggle);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyTouchEvent.java 19 import android.view.InputDevice;
MonkeyTrackballEvent.java 19 import android.view.InputDevice;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Animation1.java 17 package com.example.android.apis.view;
25 import android.view.View;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
29 public class Animation1 extends Activity implements View.OnClickListener {
36 View loginButton = findViewById(R.id.login);
40 public void onClick(View v) {

Completed in 328 milliseconds

1 2 3 4 5 6 7 8 91011>>