HomeSort by relevance Sort by last modified time
    Searched defs:mContext (Results 1 - 25 of 514) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
TextAppearanceFactory.java 26 private final Context mContext;
29 mContext = context;
34 new TextAppearanceSpan(mContext, R.style.SuggestionQueryTextAppearance)
40 new TextAppearanceSpan(mContext, R.style.SuggestionSuggestedTextAppearance)
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockIconLoader.java 31 private final Context mContext;
34 mContext = context;
41 return mContext.getResources().getDrawable(android.R.drawable.star_on);
50 .authority(mContext.getPackageName())
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
ClearUserDictionaryDialogPreferenceEN.java 32 protected Context mContext = null;
42 mContext = context;
62 Toast.makeText(mContext.getApplicationContext(), R.string.dialog_clear_user_dictionary_done,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
ClearLearnDictionaryDialogPreferenceJAJP.java 32 protected Context mContext = null;
42 mContext = context;
62 Toast.makeText(mContext.getApplicationContext(), R.string.dialog_clear_learning_dictionary_done,
ClearUserDictionaryDialogPreferenceJAJP.java 32 protected Context mContext = null;
42 mContext = context;
62 Toast.makeText(mContext.getApplicationContext(), R.string.dialog_clear_user_dictionary_done,
  /packages/apps/Mms/tests/src/com/android/mms/ui/
ConversationListTests.java 32 private Context mContext;
41 mContext = getInstrumentation().getTargetContext();
  /cts/tests/tests/content/src/android/content/cts/
MutableContextWrapperTest.java 31 Context mContext;
37 mContext = getContext();
47 mMutableContextWrapper = new MutableContextWrapper(mContext);
57 mMutableContextWrapper = new MutableContextWrapper(mContext);
58 assertTrue(mContext.equals(mMutableContextWrapper.getBaseContext()));
Intent_ShortcutIconResourceTest.java 35 Context mContext;
42 mContext = getContext();
51 String resourceName = mContext.getResources().getResourceName(
53 mShortcutIconResource = ShortcutIconResource.fromContext(mContext,
66 String resourceName = mContext.getResources().getResourceName(
68 mShortcutIconResource = ShortcutIconResource.fromContext(mContext,
73 assertEquals(mContext.getPackageName(),
84 mShortcutIconResource = ShortcutIconResource.fromContext(mContext,
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderAction.java 60 private BridgeContext mContext;
107 mContext = new BridgeContext(mParams.getProjectKey(), metrics, resources,
138 if (mContext == null) {
181 // If this is called by init, mContext will be null and so should sCurrentContext
183 if (mContext != sCurrentContext) {
215 mContext.initResources();
216 sCurrentContext = mContext;
220 mContext.getRenderResources().setFrameworkResourceIdProvider(this);
221 mContext.getRenderResources().setLogger(currentLog);
231 mContext.disposeResources()
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsMessageSender.java 36 protected final Context mContext;
56 mContext = context;
83 SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mContext);
90 Sms.addMessageToUri(mContext.getContentResolver(),
97 SqliteWrapper.checkSQLiteException(mContext, e);
101 mContext.sendBroadcast(new Intent(SmsReceiverService.ACTION_SEND_MESSAGE,
103 mContext,
125 cursor = SqliteWrapper.query(mContext, mContext.getContentResolver(),
  /cts/tests/tests/permission/src/android/permission/cts/
NoSystemFunctionPermissionTest.java 46 ActivityManager activityManager = (ActivityManager) mContext.getSystemService(
64 AlarmManager alarmManager = (AlarmManager) mContext.getSystemService(
88 mContext.setWallpaper(bitmap);
95 mContext.setWallpaper((InputStream) null);
102 mContext.clearWallpaper();
RebootPermissionTest.java 42 mContext.sendBroadcast(new Intent(Intent.ACTION_REBOOT));
  /frameworks/base/core/java/android/app/backup/
BackupManager.java 56 private Context mContext;
75 mContext = context;
88 sService.dataChanged(mContext.getPackageName());
141 IRestoreSession binder = sService.beginRestoreSession(mContext.getPackageName(),
143 session = new RestoreSession(mContext, binder);
144 result = session.restorePackage(mContext.getPackageName(), observer);
168 session = new RestoreSession(mContext, binder);
AbsoluteFileBackupHelper.java 35 Context mContext;
48 mContext = context;
  /frameworks/base/core/java/android/server/search/
SearchManagerService.java 44 private final Context mContext;
56 mContext = context;
57 mContext.registerReceiver(new BootCompletedReceiver(),
64 new MyPackageMonitor().register(mContext, true);
65 mSearchables = new Searchables(mContext);
81 mContext.unregisterReceiver(BootCompletedReceiver.this);
99 mContext.sendBroadcast(intent);
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 42 private final Context mContext;
48 mContext = context;
50 mContext.bindService(mIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
59 mContext.unbindService(mServiceConnection);
61 mContext.bindService(mIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
  /packages/apps/Contacts/src/com/android/contacts/
ProgressShower.java 29 private final Context mContext;
54 mContext = context;
71 mProgressDialog.setMessage(mContext.getString(R.string.progress_shower_message,
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEnabler.java 39 private final Context mContext;
54 mContext = context;
75 mContext.registerReceiver(mReceiver, mIntentFilter);
84 mContext.unregisterReceiver(mReceiver);
93 .isRadioAllowed(mContext, Settings.System.RADIO_BLUETOOTH)) {
94 Toast.makeText(mContext, R.string.wifi_in_airplane_mode,
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiEnabler.java 37 private final Context mContext;
61 mContext = context;
75 mContext.registerReceiver(mReceiver, mIntentFilter);
80 mContext.unregisterReceiver(mReceiver);
89 .isRadioAllowed(mContext, Settings.System.RADIO_WIFI)) {
90 Toast.makeText(mContext, R.string.wifi_in_airplane_mode,
146 mCheckBox.setSummary(Summary.get(mContext, info.getSSID(), state));
  /cts/tests/tests/app/src/android/app/cts/
NotificationTest.java 37 private Context mContext;
48 mContext = getContext();
108 final PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
112 mContext, 0, deleteIntent, 0);
116 final RemoteViews contentView = new RemoteViews(mContext.getPackageName(),
200 final PendingIntent contentIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
201 mNotification.setLatestEventInfo(mContext, CONTENT_TITLE, CONTENT_TEXT, contentIntent);
  /development/apps/Development/src/com/android/development/
ArrayAdapter.java 30 mContext = context;
73 private final Context mContext;
  /frameworks/base/core/java/android/text/
ClipboardManager.java 39 private Context mContext;
52 mContext = context;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
SimTonesTest.java 33 Context mContext;
  /frameworks/base/vpn/java/android/net/vpn/
VpnManager.java 99 private Context mContext;
105 mContext = c;
141 mContext.startService(new Intent(ACTION_VPN_SERVICE));
148 mContext.stopService(new Intent(ACTION_VPN_SERVICE));
155 if (!mContext.bindService(new Intent(ACTION_VPN_SERVICE), c, 0)) {
178 mContext.sendBroadcast(intent);
184 mContext.registerReceiver(r, filter);
188 mContext.unregisterReceiver(r);
195 mContext.startActivity(intent);
  /packages/apps/Camera/src/com/android/camera/
CameraPreference.java 34 private final Context mContext;
37 mContext = context;
50 mSharedPreferences = ComboPreferences.get(mContext);

Completed in 3209 milliseconds

1 2 3 4 5 6 7 8 91011>>