Searched refs:cr (Results 76 - 100 of 101) sorted by relevance

12345

/frameworks/native/libs/gui/
H A DCpuConsumer.cpp200 nativeBuffer->dataCr = reinterpret_cast<uint8_t*>(ycbcr.cr);
/frameworks/native/libs/math/include/math/
H A DTMatHelpers.h568 T cr = std::cos(roll); local
570 T cc = cr * cy;
571 T cs = cr * sy;
582 r[2][2] = cp * cr;
/frameworks/base/tools/apilint/
H A Dapilint.py659 cr = rank(clazz.pkg.name)
660 if cr is None: return
664 if ir and ir < cr:
669 if ir and ir < cr:
673 if ir and ir < cr:
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java1096 ContentResolver cr = context.getContentResolver();
1097 return Settings.Global.getInt(cr, setting, 0);
1104 ContentResolver cr = context.getContentResolver();
1105 return Settings.System.getInt(cr, setting, 0);
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java1158 private void readDockAudioSettings(ContentResolver cr) argument
1161 cr, Settings.Global.DOCK_AUDIO_MEDIA_ENABLED, 0) == 1;
1174 private void updateMasterMono(ContentResolver cr) argument
1177 cr, System.MASTER_MONO, 0 /* default */, UserHandle.USER_CURRENT) == 1;
1184 private void sendEncodedSurroundMode(ContentResolver cr, String eventSource) argument
1187 cr, Settings.Global.ENCODED_SURROUND_OUTPUT,
1223 final ContentResolver cr = mContentResolver;
1227 cr, Settings.Global.MODE_RINGER, AudioManager.RINGER_MODE_NORMAL);
1238 Settings.Global.putInt(cr, Settings.Global.MODE_RINGER, ringerMode);
1262 readDockAudioSettings(cr);
6615 loadSettings(ContentResolver cr) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DBatteryService.java622 ContentResolver cr = mContext.getContentResolver();
623 String dischargeThresholdString = Settings.Global.getString(cr,
625 String durationThresholdString = Settings.Global.getString(cr,
H A DConnectivityService.java3833 final ContentResolver cr = mContext.getContentResolver();
3834 Settings.Global.putInt(cr, Settings.Global.AIRPLANE_MODE_ON, encodeBool(enable));
/frameworks/base/media/java/android/media/
H A DMediaScanner.java1116 ContentResolver cr = mContext.getContentResolver();
1117 String existingSettingValue = Settings.System.getString(cr, settingName);
1124 Settings.System.putInt(cr, settingSetIndicatorName(settingName), 1);
1165 ContentResolver cr = mContext.getContentResolver();
1168 return Settings.System.getInt(cr, indicatorName) != 0;
H A DClosedCaptionRenderer.java461 getMemory().cr();
810 void cr() { method in class:Cea608CCParser.CCMemory
/frameworks/base/services/core/java/com/android/server/locksettings/
H A DLockSettingsService.java610 final ContentResolver cr = mContext.getContentResolver();
612 String value = Settings.Secure.getString(cr, validSetting);
624 final ContentResolver cr = mContext.getContentResolver();
630 String ownerInfo = Settings.Secure.getStringForUser(cr, OWNER_INFO, userId);
633 Settings.Secure.putStringForUser(cr, OWNER_INFO, "", userId);
642 int ivalue = Settings.Secure.getIntForUser(cr, OWNER_INFO_ENABLED, userId);
651 Settings.Secure.putIntForUser(cr, OWNER_INFO_ENABLED, 0, userId);
/frameworks/base/services/core/java/com/android/server/am/
H A DActiveServices.java1206 ConnectionRecord cr = clist.get(cri);
1207 if (cr.binding.client == null || cr.binding.client == proc) {
1211 if (cr.binding.client.activities.size() > 0) {
2431 ConnectionRecord cr = c.get(i);
2434 cr.serviceDead = true;
2436 cr.conn.connected(r.name, null, true);
3747 ConnectionRecord cr = r.get(i);
3748 if (!matcher.match(cr.binding.service, cr
[all...]
H A DProcessRecord.java545 ConnectionRecord cr = connections.valueAt(i);
546 if ((cr.flags&Context.BIND_ABOVE_CLIENT) != 0) {
H A DActivityManagerService.java3549 ConnectionRecord cr = app.connections.valueAt(j);
3550 if (cr.binding != null && !cr.serviceDead && cr.binding.service != null
3551 && cr.binding.service.app != null
3552 && cr.binding.service.app.lruSeq != mLruSeq
3553 && !cr.binding.service.app.persistent) {
3554 nextIndex = updateLruProcessInternalLocked(cr.binding.service.app, now, nextIndex,
3555 "service connection", cr, app);
21225 ConnectionRecord cr
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java4346 * @param cr The ContentResolver to access.
4356 public static int getIntAtIndex(android.content.ContentResolver cr, argument
4359 String v = android.provider.Settings.Global.getString(cr, name);
4381 * @param cr The ContentResolver to access.
4388 public static boolean putIntAtIndex(android.content.ContentResolver cr, argument
4392 String v = android.provider.Settings.Global.getString(cr, name);
4421 return android.provider.Settings.Global.putString(cr, name, data);
5810 public static int getIntWithSubId(ContentResolver cr, String name, int subId) argument
5813 return Settings.Global.getInt(cr, name + subId);
5816 int val = Settings.Global.getInt(cr, nam
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java390 for (ClientRecord cr : userRecord.mClientRecords) {
391 if (validatePackageName(uid, cr.mPackageName)) {
392 clientRecord = cr;
/frameworks/base/services/core/java/com/android/server/notification/
H A DManagedServices.java322 final ContentResolver cr = mContext.getContentResolver();
324 cr,
329 cr,
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiControlService.java549 ContentResolver cr = getContext().getContentResolver();
550 return Global.getInt(cr, key, toInt(defVal)) == ENABLED;
554 ContentResolver cr = getContext().getContentResolver();
555 Global.putInt(cr, key, toInt(value));
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java771 ContentResolver cr = context.getContentResolver();
772 if (Settings.Global.getInt(cr, Settings.Global.EUICC_PROVISIONED, 0) == 0) {
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java625 ContentResolver cr = getContentResolver();
666 settingsHelper.restoreValue(this, cr, contentValues, destination, key, value,
/frameworks/base/core/java/android/provider/
H A DContactsContract.java2126 * @param cr The content resolver to use for querying
2133 public static InputStream openContactPhotoInputStream(ContentResolver cr, Uri contactUri, argument
2139 AssetFileDescriptor fd = cr.openAssetFileDescriptor(displayPhotoUri, "r");
2152 Cursor cursor = cr.query(photoUri,
2175 * @param cr The content resolver to use for querying
2182 public static InputStream openContactPhotoInputStream(ContentResolver cr, Uri contactUri) { argument
2183 return openContactPhotoInputStream(cr, contactUri, false);
/frameworks/base/wifi/tests/src/android/net/wifi/aware/
H A DWifiAwareManagerTest.java645 ConfigRequest cr = new ConfigRequest.Builder().build();
646 cr.mDiscoveryWindowInterval[ConfigRequest.NAN_BAND_5GHZ] = 6;
647 cr.validate();
/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplayContent.java3019 final Rect cr = w.mContentInsets;
3020 int left = wf.left + cr.left;
3021 int top = wf.top + cr.top;
3022 int right = wf.right - cr.right;
3023 int bottom = wf.bottom - cr.bottom;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java2917 ContentResolver cr = mPhone.getContext().getContentResolver();
2919 if (Settings.System.getInt(cr, radioTestProperty, 0) == 1) {
2923 Settings.System.putInt(cr, radioTestProperty, 0);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_intra_prediction.c421 ptr = image->cr;
H A Dh264bsd_deblocking.c176 static void FilterChroma(u8 *cb, u8 *cr, bS_t *bS, edgeThreshold_t *thresholds,

Completed in 824 milliseconds

12345