Searched defs:AM (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DAmPmCirclesView.java34 * Draw the two smaller AM and PM circles next to where the larger circle will be.
54 private static final int AM = TimePickerDialog.AM; field in class:AmPmCirclesView
125 * Calculate whether the coordinates are touching the AM or PM circle.
137 return AM;
166 // Line up the vertical center of the AM/PM circles with the bottom of the main circle.
168 // Line up the horizontal edges of the AM/PM circles with the horizontal edges
182 if (mAmOrPm == AM) {
189 if (mAmOrPmPressed == AM) {
205 // Draw the AM/P
[all...]
H A DRadialPickerLayout.java62 private static final int AM = TimePickerDialog.AM; field in class:RadialPickerLayout
181 // Initialize the circle and AM/PM circles if applicable.
185 mAmPmCirclesView.initialize(context, initialHoursOfDay < 12? AM : PM);
287 return AM;
295 * Set the internal value for the hour, minute, or AM/PM.
303 if (value == AM) {
312 * Set the internal value as either AM or PM, and update the AM/PM circle displays.
586 // If we're showing the AM/P
[all...]
H A DTimePickerDialog.java68 public static final int AM = 0; field in class:TimePickerDialog
268 // Enable or disable the AM/PM view.
280 updateAmPmDisplay(mInitialHourOfDay < 12? AM : PM);
286 if (amOrPm == AM) {
289 amOrPm = AM;
360 if (amOrPm == AM) {
518 if (deleted == getAmOrPmKeyCode(AM)) {
536 (keyCode == getAmOrPmKeyCode(AM) || keyCode == getAmOrPmKeyCode(PM)))) {
573 // If we're in 24hour mode, we'll need to check if the input is full. If in AM/PM mode,
574 // we'll need to see if AM/P
[all...]
/frameworks/compile/slang/
H A Dslang_rs_reflection.cpp2149 const char *RSReflection::Context::AccessModifierStr(AccessModifier AM) { argument
2150 switch (AM) {
2159 bool RSReflection::Context::startClass(AccessModifier AM, argument
2197 out() << AccessModifierStr(AM) << ((IsStatic) ? " static" : "") << " class "
2243 void RSReflection::Context::startFunction(AccessModifier AM, argument
2260 startFunction(AM, IsStatic, ReturnType, FunctionName, Args);
2265 void RSReflection::Context::startFunction(AccessModifier AM, argument
2270 indent() << AccessModifierStr(AM) << ((IsStatic) ? " static " : " ")

Completed in 109 milliseconds