Searched refs:mLocale (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/core/java/android/text/style/
H A DLocaleSpan.java30 private final Locale mLocale; field in class:LocaleSpan
38 mLocale = locale;
42 mLocale = new Locale(src.readString(), src.readString(), src.readString());
57 dest.writeString(mLocale.getLanguage());
58 dest.writeString(mLocale.getCountry());
59 dest.writeString(mLocale.getVariant());
68 return mLocale;
73 apply(ds, mLocale);
78 apply(paint, mLocale);
/frameworks/base/location/java/android/location/
H A DGeocoderParams.java36 private Locale mLocale; field in class:GeocoderParams
49 mLocale = locale;
57 return mLocale;
74 gp.mLocale = new Locale(language, country, variant);
89 parcel.writeString(mLocale.getLanguage());
90 parcel.writeString(mLocale.getCountry());
91 parcel.writeString(mLocale.getVariant());
H A DAddress.java36 private Locale mLocale; field in class:Address
64 mLocale = locale;
71 return mLocale;
534 parcel.writeString(mLocale.getLanguage());
535 parcel.writeString(mLocale.getCountry());
/frameworks/base/core/java/android/speech/tts/
H A DVoice.java64 private final Locale mLocale; field in class:Voice
77 this.mLocale = locale;
86 this.mLocale = (Locale)in.readSerializable();
97 dest.writeSerializable(mLocale);
126 return mLocale;
189 .append(", locale: ").append(mLocale)
203 result = prime * result + ((mLocale == null) ? 0 : mLocale.hashCode());
232 if (mLocale == null) {
233 if (other.mLocale !
[all...]
/frameworks/base/core/java/android/text/method/
H A DAllCapsTransformationMethod.java34 private Locale mLocale; field in class:AllCapsTransformationMethod
37 mLocale = context.getResources().getConfiguration().locale;
43 return source != null ? source.toString().toUpperCase(mLocale) : null;
/frameworks/support/v4/ics/android/support/v4/view/
H A DPagerTitleStripIcs.java34 private Locale mLocale; field in class:PagerTitleStripIcs.SingleLineAllCapsTransform
37 mLocale = context.getResources().getConfiguration().locale;
43 return source != null ? source.toString().toUpperCase(mLocale) : null;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/text/
H A DAllCapsTransformationMethod.java30 private Locale mLocale; field in class:AllCapsTransformationMethod
33 mLocale = context.getResources().getConfiguration().locale;
38 return source != null ? source.toString().toUpperCase(mLocale) : null;
/frameworks/av/media/libmedia/
H A DMediaScannerClient.cpp36 mLocale = locale; // not currently used
H A DMediaScanner.cpp30 : mLocale(NULL), mSkipList(NULL), mSkipIndex(NULL) {
41 if (mLocale) {
42 free(mLocale);
43 mLocale = NULL;
46 mLocale = strdup(locale);
51 return mLocale;
/frameworks/av/include/media/
H A Dmediascanner.h90 char *mLocale; member in struct:android::MediaScanner
123 // default encoding from MediaScanner::mLocale
124 String8 mLocale; member in class:android::MediaScannerClient
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DClock.java53 private Locale mLocale; field in class:Clock
131 if (! newLocale.equals(mLocale)) {
132 mLocale = newLocale;
H A DNetworkControllerImpl.java125 private Locale mLocale = null; field in class:NetworkControllerImpl
175 mLocale = mContext.getResources().getConfiguration().locale;
534 if (!current.equals(mLocale)) {
535 mLocale = current;
687 pw.print(" mLocale=");
688 pw.println(mLocale);
/frameworks/base/core/java/android/view/
H A DAccessibilityIterators.java71 private Locale mLocale; field in class:AccessibilityIterators.CharacterTextSegmentIterator
83 mLocale = locale;
149 if (!mLocale.equals(locale)) {
150 mLocale = locale;
/frameworks/base/core/java/android/service/voice/
H A DAlwaysOnHotwordDetector.java185 private final Locale mLocale; field in class:AlwaysOnHotwordDetector
340 mLocale = locale;
523 return mKeyphraseEnrollmentInfo.getManageKeyphraseIntent(action, mText, mLocale);
577 mKeyphraseMetadata.id, mLocale.toLanguageTag(), mInternalCallback,
692 enrolled = internalGetIsEnrolled(mKeyphraseMetadata.id, mLocale);
758 pw.print(prefix); pw.print("Locale="); pw.println(mLocale);
/frameworks/base/core/java/android/text/
H A DAutoText.java73 private Locale mLocale; field in class:AutoText
77 mLocale = resources.getConfiguration().locale;
95 if (!locale.equals(instance.mLocale)) {
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp151 : mLocale(NULL), mVendor(NULL),
169 delete[] mLocale;
376 if (mLocale != NULL) {
380 delete[] mLocale;
407 // This isn't a bug. We really do want mLocale to be 1 byte
410 mLocale = new char[newLocaleLen];
412 memcpy(mLocale, kTlPrefix, kTlPrefixLen);
414 memcpy(mLocale + kTlPrefixLen, locale + kFilPrefixLen,
421 mLocale = strdupNew(locale);
742 if (mLocale) {
[all...]
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java239 private final String mLocale; field in class:SpellCheckerService.InternalISpellCheckerSession
246 mLocale = locale;
299 return mLocale;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DCarrierText.java337 private final Locale mLocale; field in class:CarrierText.CarrierTextTransformationMethod
341 mLocale = context.getResources().getConfiguration().locale;
350 source = source.toString().toUpperCase(mLocale);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java53 private Locale mLocale; field in class:Paint
517 mLocale = paint.mLocale;
1171 return mLocale;
1204 if (locale.equals(mLocale)) return;
1205 mLocale = locale;
/frameworks/base/include/androidfw/
H A DAssetManager.h371 char* mLocale; member in class:android::AssetManager
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java186 private Locale mLocale; field in class:BaseStatusBar
539 mLocale = currentConfig.locale;
540 mLayoutDirection = TextUtils.getLayoutDirectionFromLocale(mLocale);
716 if (! locale.equals(mLocale) || ld != mLayoutDirection || fontScale != mFontScale) {
719 "config changed locale/LD: %s (%d) -> %s (%d)", mLocale, mLayoutDirection,
722 mLocale = locale;
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java917 private final String mLocale; field in class:TextServicesManagerService.InternalServiceConnection
922 mLocale = locale;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java96 private Locale mLocale = Locale.getDefault(); field in class:Paint_Delegate
1230 mLocale = new Locale(locale);
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java188 private Locale mLocale; field in class:AppWidgetServiceImpl
271 if (revised == null || mLocale == null || !revised.equals(mLocale)) {
272 mLocale = revised;

Completed in 528 milliseconds