Searched defs:context (Results 176 - 200 of 1807) sorted by relevance

1234567891011>>

/packages/apps/Camera2/src/com/android/camera/ui/
H A DAbstractSettingPopup.java31 public AbstractSettingPopup(Context context, AttributeSet attrs) { argument
32 super(context, attrs);
H A DCheckedLinearLayout.java30 public CheckedLinearLayout(Context context, AttributeSet attrs) { argument
31 super(context, attrs);
H A DPieMenuButton.java27 public PieMenuButton(Context context, AttributeSet attrs) { argument
28 super(context, attrs);
H A DTwoStateImageView.java31 public TwoStateImageView(Context context, AttributeSet attrs) { argument
32 super(context, attrs);
35 public TwoStateImageView(Context context) { argument
36 this(context, null);
/packages/apps/Camera2/src_pd/com/android/camera/util/
H A DIntentHelper.java28 public static Intent getGalleryIntent(Context context) { argument
33 public static Intent getVideoPlayerIntent(Context context, Uri uri) { argument
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertDialog.java37 public void onReceive(Context context, Intent intent) { argument
/packages/apps/Contacts/src/com/android/contacts/
H A DContactsSearchManager.java33 * An extra that provides context for search UI and defines the scope for
41 public static void startSearch(Activity context, String initialQuery) { argument
42 context.startActivity(buildIntent(context, initialQuery, null));
45 public static void startSearchForResult(Activity context, String initialQuery, argument
47 context.startActivityForResult(
48 buildIntent(context, initialQuery, originalRequest), requestCode);
51 public static void startSearch(Activity context, String initialQuery, argument
53 context.startActivity(buildIntent(context, initialQuer
56 buildIntent( Activity context, String initialQuery, ContactsRequest originalRequest) argument
[all...]
H A DGroupListLoader.java49 public GroupListLoader(Context context) { argument
50 super(context, GROUP_LIST_URI, COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND "
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DActionsViewContainer.java34 public ActionsViewContainer(Context context) { argument
35 super(context);
38 public ActionsViewContainer(Context context, AttributeSet attrs) { argument
39 this(context, attrs, 0);
42 public ActionsViewContainer(Context context, AttributeSet attrs, int defStyle) { argument
43 super(context, attrs, defStyle);
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupDetailDisplayUtils.java35 public static View getNewGroupSourceView(Context context) { argument
36 LayoutInflater inflater = (LayoutInflater)context.getSystemService(
41 public static void bindGroupSourceView(Context context, View view, String accountTypeString, argument
43 AccountTypeManager accountTypeManager = AccountTypeManager.getInstance(context);
51 label.setText(accountType.getViewGroupLabel(context));
58 accountIcon.setImageDrawable(accountType.getDisplayIcon(context));
/packages/apps/Contacts/src/com/android/contacts/list/
H A DGroupMemberTileAdapter.java35 public GroupMemberTileAdapter(Context context, ContactTileView.Listener listener, int numCols) { argument
36 super(context, listener, numCols, DisplayType.GROUP_MEMBERS);
/packages/apps/Contacts/src/com/android/contacts/preference/
H A DContactsPreferenceActivity.java41 // app up icon, regardless of launch context.
60 public static boolean isEmpty(Context context) { argument
61 return !context.getResources().getBoolean(R.bool.config_sort_order_user_changeable)
62 && !context.getResources().getBoolean(R.bool.config_display_order_user_changeable);
H A DDisplayOrderPreference.java36 public DisplayOrderPreference(Context context) { argument
37 super(context);
41 public DisplayOrderPreference(Context context, AttributeSet attrs) { argument
42 super(context, attrs);
H A DSortOrderPreference.java36 public SortOrderPreference(Context context) { argument
37 super(context);
41 public SortOrderPreference(Context context, AttributeSet attrs) { argument
42 super(context, attrs);
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DCheckableImageView.java36 public CheckableImageView(Context context, AttributeSet attrs) { argument
37 super(context, attrs);
/packages/apps/Contacts/src/com/android/contacts/util/
H A DContactBadgeUtil.java42 public static CharSequence getSocialDate(StreamItemEntry streamItem, Context context) { argument
68 resources = context.getResources();
72 PackageManager pm = context.getPackageManager();
96 attribution = context.getString(
100 attribution = context.getString(
111 public static Bitmap loadDefaultAvatarPhoto(Context context, boolean hires, boolean darkTheme) { argument
112 return BitmapFactory.decodeResource(context.getResources(),
H A DHelpUtils.java64 public static boolean prepareHelpMenuItem(Context context, MenuItem helpMenuItem, argument
66 String helpUrlString = context.getResources().getString(helpUrlResourceId);
67 return prepareHelpMenuItem(context, helpMenuItem, helpUrlString);
78 public static boolean prepareHelpMenuItem(Context context, MenuItem helpMenuItem, argument
88 final Uri fullUri = uriWithAddedParameters(context, Uri.parse(helpUrlString));
109 * of the app's package as gotten via the context.
112 private static Uri uriWithAddedParameters(Context context, Uri baseUri) { argument
123 PackageInfo info = context.getPackageManager().getPackageInfo(
124 context.getPackageName(), 0);
132 Log.wtf(TAG, "Invalid package name for context",
[all...]
H A DNotifyingAsyncQueryHandler.java43 public NotifyingAsyncQueryHandler(Context context, AsyncQueryListener listener) { argument
44 super(context.getContentResolver());
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DFullHeightLinearLayout.java31 public FullHeightLinearLayout(Context context) { argument
32 super(context);
35 public FullHeightLinearLayout(Context context, AttributeSet attrs) { argument
36 super(context, attrs);
39 public FullHeightLinearLayout(Context context, AttributeSet attrs, int defStyle) { argument
40 super(context, attrs, defStyle);
H A DNotifyingSpinner.java35 public NotifyingSpinner(Context context) { argument
36 super(context);
39 public NotifyingSpinner(Context context, AttributeSet attrs) { argument
40 super(context, attrs);
H A DTransitionAnimationView.java33 public TransitionAnimationView(Context context) { argument
34 this(context, null, 0);
37 public TransitionAnimationView(Context context, AttributeSet attrs) { argument
38 this(context, attrs, 0);
41 public TransitionAnimationView(Context context, AttributeSet attrs, int defStyle) { argument
42 super(context, attrs, defStyle);
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DClipboardUtils.java33 * @param context Context
38 public static void copyText(Context context, CharSequence label, CharSequence text, argument
42 ClipboardManager clipboardManager = (ClipboardManager) context.getSystemService(
48 String toastText = context.getString(R.string.toast_text_copied);
49 Toast.makeText(context, toastText, Toast.LENGTH_SHORT).show();
/packages/apps/ContactsCommon/src/com/android/contacts/common/extensions/
H A DExtensionsFactory.java46 public static void init(Context context) { argument
51 final InputStream fileStream = context.getAssets().open(EXTENSIONS_PROPERTIES);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DAutoScrollListView.java38 public AutoScrollListView(Context context) { argument
39 super(context);
42 public AutoScrollListView(Context context, AttributeSet attrs) { argument
43 super(context, attrs);
46 public AutoScrollListView(Context context, AttributeSet attrs, int defStyle) { argument
47 super(context, attrs, defStyle);
H A DContactTilePhoneFrequentView.java35 public ContactTilePhoneFrequentView(Context context, AttributeSet attrs) { argument
36 super(context, attrs);

Completed in 182 milliseconds

1234567891011>>