/packages/apps/Contacts/src/com/android/contacts/list/ |
LegacyPhoneNumberListAdapter.java | 26 import android.view.View; 27 import android.view.ViewGroup; 80 protected View newView(Context context, int partition, Cursor cursor, int position, 82 final ContactListItemView view = new ContactListItemView(context, null); local 83 view.setUnknownNameText(mUnknownNameText); 84 return view; 88 protected void bindView(View itemView, int partition, Cursor cursor, int position) { 89 ContactListItemView view = (ContactListItemView)itemView; local 90 bindName(view, cursor) [all...] |
LegacyPostalAddressListAdapter.java | 26 import android.view.View; 27 import android.view.ViewGroup; 81 protected View newView(Context context, int partition, Cursor cursor, int position, 83 final ContactListItemView view = new ContactListItemView(context, null); local 84 view.setUnknownNameText(mUnknownNameText); 85 return view; 89 protected void bindView(View itemView, int partition, Cursor cursor, int position) { 90 ContactListItemView view = (ContactListItemView)itemView; local 91 bindName(view, cursor) [all...] |
LegacyContactListAdapter.java | 24 import android.view.View; 25 import android.view.ViewGroup; 76 protected View newView(Context context, int partition, Cursor cursor, int position, 78 final ContactListItemView view = new ContactListItemView(context, null); local 79 view.setUnknownNameText(mUnknownNameText); 80 return view; 84 protected void bindView(View itemView, int partition, Cursor cursor, int position) { 85 ContactListItemView view = (ContactListItemView)itemView; local 86 bindName(view, cursor) [all...] |
/external/chromium_org/chrome/browser/automation/ |
testing_automation_provider_views.cc | 8 #include "ui/views/view.h" 22 views::View* root_view = widget->GetRootView(); 23 views::View* view = root_view->GetViewByID(view_id); local 24 if (view) { 28 views::View::ConvertPointToScreen(view, &point); 30 views::View::ConvertPointToTarget(view, root_view, &point); 31 *bounds = view->GetContentsBounds() [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowInputMethodManager.java | 5 import android.view.View; 6 import android.view.inputmethod.InputMethodManager; 17 public boolean showSoftInput(View view, int flags) { 18 return showSoftInput(view, flags, null); 22 public boolean showSoftInput(View view, int flags, ResultReceiver resultReceiver) {
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/ |
TestSubMenu.java | 1 package com.xtremelabs.robolectric.tester.android.view; 4 import android.view.MenuItem; 5 import android.view.SubMenu; 6 import android.view.View; 31 public SubMenu setHeaderView(View view) {
|
/frameworks/base/core/tests/coretests/src/android/view/menu/ |
MenuWith1ItemTest.java | 17 package android.view.menu; 19 import android.view.menu.MenuWith1Item; 21 import com.android.internal.view.menu.MenuBuilder; 28 import android.view.KeyEvent; 29 import android.view.View; 69 final View menuItem = mActivity.getItemView(MenuBuilder.TYPE_ICON, 0);
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
ScrollingThroughListOfFocusablesTest.java | 24 import android.view.KeyEvent; 79 InternalSelectionView view = mActivity.getSelectedView(); local 81 assertInternallySelectedRowOnScreen(view, i); 92 InternalSelectionView view = (InternalSelectionView) local 98 assertTrue("bottom of view should be just above fading edge", 99 view.getBottom() == bottomFadingEdgeTop); 102 // make sure fading edge is the expected view 104 assertEquals("should be a second view visible due to the fading edge", 140 InternalSelectionView view = mActivity.getSelectedView(); local 141 assertEquals(mNumRowsPerItem - 1, view.getSelectedRow()) 168 InternalSelectionView view = mActivity.getSelectedView(); local 175 InternalSelectionView view = mActivity.getSelectedView(); local 189 InternalSelectionView view = mActivity.getSelectedView(); local 201 final InternalSelectionView view = local [all...] |
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
PhoneLayoutInflater.java | 23 import android.view.View; 24 import android.view.LayoutInflater; 53 @Override protected View onCreateView(String name, AttributeSet attrs) throws ClassNotFoundException { 56 View view = createView(name, prefix, attrs); local 57 if (view != null) { 58 return view;
|
/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
BiDiTestTextViewDrawablesLtr.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.ViewGroup; 28 private View currentView; 32 public View onCreateView(LayoutInflater inflater, ViewGroup container, 39 public void onViewCreated(View view, Bundle savedInstanceState) { 40 super.onViewCreated(view, savedInstanceState);
|
BiDiTestTextViewDrawablesRtl.java | 21 import android.view.LayoutInflater; 22 import android.view.View; 23 import android.view.ViewGroup; 28 private View currentView; 32 public View onCreateView(LayoutInflater inflater, ViewGroup container, 39 public void onViewCreated(View view, Bundle savedInstanceState) { 40 super.onViewCreated(view, savedInstanceState);
|
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/ |
AutoCompleteTextViewActivityPortrait.java | 21 import android.view.KeyEvent; 22 import android.view.View; 23 import android.view.ViewGroup; 24 import android.view.WindowManager; 26 import android.view.inputmethod.InputMethodManager;
|
/frameworks/support/v4/ics/android/support/v4/view/ |
ViewCompatICS.java | 17 package android.support.v4.view; 19 import android.view.View; 20 import android.view.View.AccessibilityDelegate; 21 import android.view.accessibility.AccessibilityEvent; 22 import android.view.accessibility.AccessibilityNodeInfo; 25 * Helper for accessing newer features in View introduced in ICS. 29 public static boolean canScrollHorizontally(View v, int direction) { 33 public static boolean canScrollVertically(View v, int direction) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
ViewLayoutUtils.java | 19 import android.view.View; 20 import android.view.ViewGroup; 21 import android.view.ViewGroup.MarginLayoutParams; 44 public static void placeViewAt(final View view, final int x, final int y, final int w, 46 final ViewGroup.LayoutParams lp = view.getLayoutParams();
|
/frameworks/base/core/tests/coretests/src/android/view/ |
ViewGroupChildrenTest.java | 17 package android.view; 20 import android.view.ViewGroupChildren; 26 import android.view.View; 27 import android.view.ViewGroup; 32 * Exercises {@link android.view.ViewGroup}'s ability to add/remove children. 62 View view = createView("1"); local 63 mGroup.addView(view); 67 ViewAsserts.assertGroupContains(mGroup, view); 75 View view = createView(String.valueOf(i + 1)); local 79 View view = createView("X"); local 93 View view = createView(String.valueOf(i + 1)); local 97 View view = createView("X"); local 111 View view = createView(String.valueOf(i + 1)); local 122 View view = createView("1"); local 260 TextView view = new TextView(getActivity()); local [all...] |
/packages/apps/InCallUI/src/com/android/incallui/ |
AnimationUtils.java | 26 import android.view.View; 27 import android.view.ViewPropertyAnimator; 55 // View tag that's set during the fade-out animation; see hide() and 61 * Sets the visibility of the specified view to View.VISIBLE and then 62 * fades it in. If the view is already visible (and not in the middle 66 * @param view The view to be faded in 68 public static void show(final View view) [all...] |
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailViewPagerAdapter.java | 19 import android.support.v4.view.PagerAdapter; 20 import android.support.v4.view.ViewPager; 21 import android.view.View; 22 import android.view.ViewGroup; 31 public static final String ABOUT_FRAGMENT_TAG = "view-pager-about-fragment"; 32 public static final String UPDATES_FRAGMENT_TAG = "view-pager-updates-fragment"; 40 * The initial value for the view count needs to be MAX_FRAGMENT_VIEW_COUNT, 43 * device, the view pager requires the second page to exist immediately on launch). 47 private View mAboutFragmentView [all...] |
/external/chromium_org/content/renderer/ |
render_view_browsertest.cc | 122 RenderViewImpl* view() { function in class:content::RenderViewImplTest 263 view()->set_send_content_state_immediately(true); 297 view()->OnNavigate(nav_params); 331 WebKit::WebNavigationPolicy policy = view()->decidePolicyForNavigation( 343 policy = view()->decidePolicyForNavigation( 354 policy = view()->decidePolicyForNavigation( 365 // Enable bindings to simulate a WebUI view. 366 view()->OnAllowBindings(BINDINGS_POLICY_WEB_UI); 373 WebKit::WebNavigationPolicy policy = view()->decidePolicyForNavigation( 384 policy = view()->decidePolicyForNavigation [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
resourceView.css | 30 .resource-view { 40 .resource-view.visible { 44 .resource-view.font { 52 .resource-view .script-view { 56 .resource-view.image > .image { 61 .resource-view.image > .info { 67 .resource-view.image img.resource-image-view { 82 .resource-view.image .title [all...] |
/external/chromium_org/chrome/browser/ui/views/location_bar/ |
location_bar_layout.cc | 9 #include "ui/views/view.h" 22 views::View* view); 24 // The y position of the view inside its parent. 27 // The height of the view. 31 // bar, the view will reduce its width either to its minimal width or to zero 50 views::View* view; member in struct:LocationBarDecoration 63 views::View* view) [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/ |
ActionModeWrapper.java | 17 package android.support.v7.internal.view; 20 import android.support.v7.internal.view.menu.MenuWrapperFactory; 21 import android.support.v7.view.ActionMode; 22 import android.view.Menu; 23 import android.view.MenuInflater; 24 import android.view.View; 32 final android.view.ActionMode mWrappedObject; 34 public ActionModeWrapper(Context context, android.view.ActionMode frameworkActionMode) { 110 public View getCustomView() [all...] |
/external/chromium-trace/trace-viewer/src/tracing/ |
timeline_view.css | 6 .timeline-view * { 11 .timeline-view { 20 .timeline-view > .control > .title { 28 .timeline-view > .control { 40 .timeline-view > .control > .controls.category-filter { 44 .timeline-view > .control > .controls { 48 .timeline-view > .control > span { 53 .timeline-view > .control > .controls > button, 54 .timeline-view > .control > .controls > label { 60 .timeline-view > .control > .spacer [all...] |
/frameworks/base/core/java/android/webkit/ |
WebChromeClient.java | 23 import android.view.View; 29 * @param view The WebView that initiated the callback. 33 public void onProgressChanged(WebView view, int newProgress) {} 37 * @param view The WebView that initiated the callback. 40 public void onReceivedTitle(WebView view, String title) {} 44 * @param view The WebView that initiated the callback. 47 public void onReceivedIcon(WebView view, Bitmap icon) {} 51 * @param view The WebView that initiated the callback. 55 public void onReceivedTouchIconUrl(WebView view, String url [all...] |
/frameworks/base/core/java/android/transition/ |
ChangeBounds.java | 28 import android.view.View; 29 import android.view.ViewGroup; 72 * of every view using this transition. The flag is not enabled by 85 View view = values.view; local 86 values.values.put(PROPNAME_BOUNDS, new Rect(view.getLeft(), view.getTop(), 87 view.getRight(), view.getBottom())) 117 final View view = endValues.view; local [all...] |
/frameworks/base/core/java/android/text/method/ |
BaseKeyListener.java | 19 import android.view.KeyEvent; 20 import android.view.View; 48 public boolean backspace(View view, Editable content, int keyCode, KeyEvent event) { 49 return backspaceOrForwardDelete(view, content, keyCode, event, false); 60 public boolean forwardDelete(View view, Editable content, int keyCode, KeyEvent event) { 61 return backspaceOrForwardDelete(view, content, keyCode, event, true); 64 private boolean backspaceOrForwardDelete(View view, Editable content, int keyCode [all...] |