Searched refs:PM (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/CodeGen/
H A DMCLDTargetMachine.cpp114 PassManagerBase &PM) {
123 PM.add(createSjLjEHPreparePass(TM->getTargetLowering()));
128 PM.add(createDwarfEHPass(TM->getTargetLowering()));
131 PM.add(createLowerInvokePass(TM->getTargetLowering()));
134 PM.add(createUnreachableBlockEliminationPass());
141 PassManagerBase &PM,
145 TargetPassConfig *PassConfig = TM->createPassConfig(PM);
150 PM.add(PassConfig);
154 addPassesToHandleExceptions(TM, PM);
163 PM
113 addPassesToHandleExceptions(llvm::TargetMachine *TM, PassManagerBase &PM) argument
140 addPassesToGenerateCode(llvm::LLVMTargetMachine *TM, PassManagerBase &PM, bool DisableVerify) argument
[all...]
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp124 PassManager PM; local
125 PM.add(createStripAttributePass());
126 PM.run(*M.get());
/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.
55 private static final int PM = TimePickerDialog.PM; field in class:AmPmCirclesView
125 * Calculate whether the coordinates are touching the AM or PM circle.
143 return PM;
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
185 } else if (mAmOrPm == PM) {
192 } else if (mAmOrPmPressed == PM) {
205 // Draw the AM/PM text
[all...]
H A DRadialPickerLayout.java63 private static final int PM = TimePickerDialog.PM; field in class:RadialPickerLayout
181 // Initialize the circle and AM/PM circles if applicable.
185 mAmPmCirclesView.initialize(context, initialHoursOfDay < 12? AM : PM);
289 return PM;
295 * Set the internal value for the hour, minute, or AM/PM.
305 } else if (value == PM) {
312 * Set the internal value as either AM or PM, and update the AM/PM circle displays.
586 // If we're showing the AM/PM, chec
[all...]
H A DTimePickerDialog.java69 public static final int PM = 1; field in class:TimePickerDialog
268 // Enable or disable the AM/PM view.
280 updateAmPmDisplay(mInitialHourOfDay < 12? AM : PM);
287 amOrPm = PM;
288 } else if (amOrPm == PM){
364 } else if (amOrPm == PM){
520 } else if (deleted == getAmOrPmKeyCode(PM)) {
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/PM hav
[all...]
/frameworks/compile/mclinker/tools/llvm-mcld/
H A Dllvm-mcld.cpp1515 PassManager PM; local
1519 PM.add(new DataLayout(*DL));
1521 PM.add(new DataLayout(&mod));
1528 if( TheTargetMachine.addPassesToEmitFile(PM,
1543 PM.run(mod);
/frameworks/base/core/java/android/widget/
H A DTimePicker.java44 * A view for selecting the time of day, in either 24 hour or AM/PM mode. The
45 * hour, each minute digit, and AM/PM (if applicable) can be conrolled by
49 * by entering single digits. Under AM/PM mode, the user can hit 'a', 'A", 'p'
94 // using a button for toggling between AM/PM while the new
476 * Set whether in 24 hour or AM/PM mode.
478 * @param is24HourView True = 24 hour mode. False = AM/PM.
634 int index = mIsAm ? Calendar.AM : Calendar.PM;
664 // AM/PM

Completed in 619 milliseconds