/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | FragmentDialog.java | 126 int style = DialogFragment.STYLE_NORMAL, theme = 0; in onCreate() local 128 case 1: style = DialogFragment.STYLE_NO_TITLE; break; in onCreate() 129 case 2: style = DialogFragment.STYLE_NO_FRAME; break; in onCreate() 130 case 3: style = DialogFragment.STYLE_NO_INPUT; break; in onCreate() 131 case 4: style = DialogFragment.STYLE_NORMAL; break; in onCreate() 132 case 5: style = DialogFragment.STYLE_NORMAL; break; in onCreate() 133 case 6: style = DialogFragment.STYLE_NO_TITLE; break; in onCreate() 134 case 7: style = DialogFragment.STYLE_NO_FRAME; break; in onCreate() 135 case 8: style = DialogFragment.STYLE_NORMAL; break; in onCreate() 138 case 4: theme = android.R.style.Theme_Holo; break; in onCreate() [all …]
|
D | ActivityRecreate.java | 39 case android.R.style.Theme_Holo_Light: in onCreate() 40 mCurTheme = android.R.style.Theme_Holo_Dialog; in onCreate() 42 case android.R.style.Theme_Holo_Dialog: in onCreate() 43 mCurTheme = android.R.style.Theme_Holo; in onCreate() 46 mCurTheme = android.R.style.Theme_Holo_Light; in onCreate()
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
D | FragmentDialogSupport.java | 127 int style = DialogFragment.STYLE_NORMAL, theme = 0; in onCreate() local 129 case 1: style = DialogFragment.STYLE_NO_TITLE; break; in onCreate() 130 case 2: style = DialogFragment.STYLE_NO_FRAME; break; in onCreate() 131 case 3: style = DialogFragment.STYLE_NO_INPUT; break; in onCreate() 132 case 4: style = DialogFragment.STYLE_NORMAL; break; in onCreate() 133 case 5: style = DialogFragment.STYLE_NO_TITLE; break; in onCreate() 134 case 6: style = DialogFragment.STYLE_NO_FRAME; break; in onCreate() 135 case 7: style = DialogFragment.STYLE_NORMAL; break; in onCreate() 138 case 2: theme = android.R.style.Theme_Panel; break; in onCreate() 139 case 4: theme = android.R.style.Theme; break; in onCreate() [all …]
|
/development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/ |
D | NotificationPresets.java | 26 import android.text.style.ForegroundColorSpan; 27 import android.text.style.RelativeSizeSpan; 28 import android.text.style.StrikethroughSpan; 29 import android.text.style.StyleSpan; 30 import android.text.style.SubscriptSpan; 31 import android.text.style.SuperscriptSpan; 32 import android.text.style.TypefaceSpan; 33 import android.text.style.UnderlineSpan; 122 NotificationCompat.BigTextStyle style = new NotificationCompat.BigTextStyle(); in buildNotifications() local 155 style.setBigContentTitle(title); in buildNotifications() [all …]
|
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/ |
D | CardPresenterSelector.java | 56 int themeResId = R.style.MovieCardSimpleTheme; in getPresenter() 58 themeResId = R.style.MovieCardBasicTheme; in getPresenter() 60 themeResId = R.style.MovieCardCompleteTheme; in getPresenter() 62 themeResId = R.style.SquareBigCardTheme; in getPresenter() 64 themeResId = R.style.GridCardTheme; in getPresenter() 66 themeResId = R.style.GameCardTheme; in getPresenter()
|
D | SingleLineCardPresenter.java | 30 super(context, R.style.SingleLineCardTheme); in SingleLineCardPresenter()
|
D | IconCardPresenter.java | 34 super(context, R.style.IconCardTheme); in IconCardPresenter()
|
D | ImageCardViewPresenter.java | 39 this(context, R.style.DefaultCardTheme); in ImageCardViewPresenter()
|
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/ |
D | RecipeService.java | 68 NotificationCompat.BigTextStyle style = new NotificationCompat.BigTextStyle(); in createNotification() local 69 style.bigText(recipeStep.stepText); in createNotification() 70 style.setBigContentTitle(String.format( in createNotification() 72 style.setSummaryText(""); in createNotification() 74 builder.setStyle(style); in createNotification()
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
D | NotificationPresets.java | 29 import android.text.style.ForegroundColorSpan; 30 import android.text.style.RelativeSizeSpan; 31 import android.text.style.StrikethroughSpan; 32 import android.text.style.StyleSpan; 33 import android.text.style.SubscriptSpan; 34 import android.text.style.SuperscriptSpan; 35 import android.text.style.TypefaceSpan; 36 import android.text.style.UnderlineSpan; 118 Notification.BigTextStyle style = new Notification.BigTextStyle(); in buildNotification() local 151 style.setBigContentTitle(title); in buildNotification() [all …]
|
/development/tools/checkstyle/ |
D | README | 2 Checkstyle is used by developers to validate Java code style before running repo upload. 5 1. To check style of entire specific files: 7 2. To check style of the lines modified in the latest commit:
|
/development/samples/Support7Demos/src/com/example/android/supportv7/app/ |
D | AppCompatNightModeDialog.java | 46 AppCompatDialog dialog = new AppCompatDialog(this, R.style.Theme_AppCompat_DayNight_Dialog); in setModeNightNo() 54 AppCompatDialog dialog = new AppCompatDialog(this, R.style.Theme_AppCompat_DayNight_Dialog); in setModeNightYes() 62 AppCompatDialog dialog = new AppCompatDialog(this, R.style.Theme_AppCompat_DayNight_Dialog); in setModeNightAuto()
|
D | AppCompatNightModeAlertDialog.java | 59 R.style.Theme_AppCompat_DayNight_Dialog_Alert); in createAlertDialog()
|
/development/samples/ApiDemos/src/com/example/android/apis/text/ |
D | Link.java | 28 import android.text.style.StyleSpan; 29 import android.text.style.URLSpan;
|
/development/samples/browseable/TextLinkify/src/com.example.android.textlinkify/ |
D | MainActivity.java | 26 import android.text.style.StyleSpan; 27 import android.text.style.URLSpan;
|
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/ |
D | MusicConsumptionExampleFragment.java | 155 R.style.TextAppearance_Leanback_PlaybackMediaItemNumber); in onBindMediaDetails() 157 R.style.TextAppearance_Leanback_PlaybackMediaItemName); in onBindMediaDetails() 159 R.style.TextAppearance_Leanback_PlaybackMediaItemDuration); in onBindMediaDetails() 212 R.style.Theme_Example_LeanbackMusic_RegularSongNumbers)) in addPlaybackControlsRow() 214 R.style.Theme_Example_LeanbackMusic_FavoriteSongNumbers))) in addPlaybackControlsRow()
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
D | WiFiChatFragment.java | 99 R.style.normalText); in getView() 102 R.style.boldText); in getView()
|
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/wizard/ |
D | WizardExampleBaseStepFragment.java | 32 return R.style.Theme_Example_LeanbackWizard; in onProvideTheme()
|
/development/ndk/platforms/android-21/arch-mips64/include/asm/ |
D | ptrace.h | 82 enum pt_watch_style style; member
|
/development/ndk/platforms/android-21/arch-mips/include/asm/ |
D | ptrace.h | 82 enum pt_watch_style style; member
|
/development/samples/SupportLeanbackDemos/src/com/example/android/leanback/ |
D | GuidedStepHalfScreenActivity.java | 84 return R.style.Theme_Example_Leanback_GuidedStep_Half; in onProvideTheme() 102 return R.style.Theme_Example_Leanback_GuidedStep_Half; in onProvideTheme()
|
D | GuidedStepSupportHalfScreenActivity.java | 86 return R.style.Theme_Example_Leanback_GuidedStep_Half; in onProvideTheme() 104 return R.style.Theme_Example_Leanback_GuidedStep_Half; in onProvideTheme()
|
/development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/page/ |
D | SettingsIconPresenter.java | 30 super(context, R.style.IconCardTheme); in SettingsIconPresenter()
|
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
D | MainActivity.java | 127 if (mThemeId == R.style.AppTheme_Dark) { in onOptionsItemSelected() 128 mThemeId = R.style.AppTheme_Light; in onOptionsItemSelected() 130 mThemeId = R.style.AppTheme_Dark; in onOptionsItemSelected()
|
/development/samples/browseable/BasicImmersiveMode/src/com.example.android.basicimmersivemode/ |
D | MainActivity.java | 76 logFragment.getLogView().setTextAppearance(this, R.style.Log); in initializeLogging()
|