HomeSort by relevance Sort by last modified time
    Searched defs:AM (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/base/tools/layoutlib/bridge/src/android/widget/
TimePickerClockDelegate_Delegate.java 29 private static final int AM = 0;
35 if (amOrPm == AM) {
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGDumper.cpp 336 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
337 switch (AM) {
476 const char *AM = getIndexedModeName(LD->getAddressingMode());
477 if (*AM)
478 OS << ", " << AM;
487 const char *AM = getIndexedModeName(ST->getAddressingMode());
488 if (*AM)
489 OS << ", " << AM;
DAGCombiner.cpp     [all...]
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
RegionCode.java 27 static final String AM = "AM";
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 463 const MDNode *AM = LocA.AATags.TBAA;
464 if (!AM) return AliasAnalysis::alias(LocA, LocB);
469 if (Aliases(AM, BM))
DependenceAnalysis.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 103 bool MatchAddress(SDValue N, MSP430ISelAddressMode &AM);
104 bool MatchWrapper(SDValue N, MSP430ISelAddressMode &AM);
105 bool MatchAddressBase(SDValue N, MSP430ISelAddressMode &AM);
135 bool MSP430DAGToDAGISel::MatchWrapper(SDValue N, MSP430ISelAddressMode &AM) {
138 if (AM.hasSymbolicDisplacement())
144 AM.GV = G->getGlobal();
145 AM.Disp += G->getOffset();
146 //AM.SymbolFlags = G->getTargetFlags();
148 AM.CP = CP->getConstVal();
149 AM.Align = CP->getAlignment()
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
AmPmCirclesView.java 34 * Draw the two smaller AM and PM circles next to where the larger circle will be.
54 private static final int AM = TimePickerDialog.AM;
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/PM texts on top
    [all...]
TimePickerDialog.java 67 public static final int AM = 0;
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/PM have been typed
    [all...]
RadialPickerLayout.java 44 * The primary layout to hold the circular picker, and the am/pm buttons. This view well measure
61 private static final int AM = TimePickerDialog.AM;
180 // Initialize the circle and AM/PM circles if applicable.
184 mAmPmCirclesView.initialize(context, initialHoursOfDay < 12? AM : PM);
286 return AM;
294 * Set the internal value for the hour, minute, or AM/PM.
302 if (value == AM) {
311 * Set the internal value as either AM or PM, and update the AM/PM circle displays
    [all...]
  /external/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 129 TargetLoweringBase::AddrMode AM;
130 AM.BaseGV = BaseGV;
131 AM.BaseOffs = BaseOffset;
132 AM.HasBaseReg = HasBaseReg;
133 AM.Scale = Scale;
134 return getTLI()->isLegalAddressingMode(AM, Ty);
139 TargetLoweringBase::AddrMode AM;
140 AM.BaseGV = BaseGV;
141 AM.BaseOffs = BaseOffset;
142 AM.HasBaseReg = HasBaseReg
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
calendar.h 132 * saving time in US, wall clock time jumps from 12:59 AM (standard) to 2:00 AM
133 * (daylight). Therefore, wall clock time from 1:00 AM to 1:59 AM do not exist on
136 * In this example, 1:30 AM is interpreted as 1:30 AM standard time (non-exist),
137 * so the final result will be 2:30 AM daylight time.
140 * hour at 2:00 AM. So wall clock time from 1:00 AM to 1:59 AM occur twice. In thi
    [all...]
  /frameworks/base/core/java/android/widget/
TimePickerClockDelegate.java 76 static final int AM = 0;
163 // Set up AM/PM labels.
333 // Enable or disable the AM/PM view.
355 // Ensure that AM/PM layout is in the correct position.
360 updateAmPmLabelStates(mInitialHourOfDay < 12 ? AM : PM);
397 mRadialTimePickerView.setAmOrPm(mInitialHourOfDay < 12 ? AM : PM);
414 case AM:
445 * Set whether in 24 hour or AM/PM mode.
447 * @param is24HourView True = 24 hour mode. False = AM/PM.
680 final boolean isAm = amOrPm == AM;
    [all...]
RadialTimePickerView.java 73 private static final int AM = 0;
389 mAmOrPm = AM;
467 // 0 is 12 AM (midnight) and 12 is 12 PM (noon).
468 final int amOrPm = (hour == 0 || (hour % 24) < 12) ? AM : PM;
    [all...]
  /libcore/luni/src/main/java/java/util/
Calendar.java 144 * <li> Although historically not precise, midnight also belongs to "am", and
145 * noon belongs to "pm", so on the same day, we have 12:00 am (midnight) &lt; 12:01 am,
597 * @see #AM
675 public static final int AM = 0;
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 106 AM, CM, BK, CF, ES, FM, MD, NO, LR, RF, DB, SG, BH, HS, MT, DS, RG, CN, UUT, UUQ, UUP, UUH,
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp 802 ISD::MemIndexedMode AM = (Opcode == ISD::LOAD)
805 ARM_AM::AddrOpc AddSub = (AM == ISD::PRE_INC || AM == ISD::POST_INC)
838 ISD::MemIndexedMode AM = (Opcode == ISD::LOAD)
841 ARM_AM::AddrOpc AddSub = (AM == ISD::PRE_INC || AM == ISD::POST_INC)
858 ISD::MemIndexedMode AM = (Opcode == ISD::LOAD)
861 ARM_AM::AddrOpc AddSub = (AM == ISD::PRE_INC || AM == ISD::POST_INC)
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 459 ISD::MemIndexedMode AM = LD->getAddressingMode();
462 if (AM != ISD::UNINDEXED) {
550 ISD::MemIndexedMode AM = ST->getAddressingMode();
553 if (AM != ISD::UNINDEXED) {
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 197 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
198 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
199 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
200 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
201 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
203 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
236 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
239 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
240 ? CurDAG->getTargetFrameIndex(AM.Base_FrameIndex,
242 : AM.Base_Reg
    [all...]
X86FastISel.cpp 86 bool X86FastEmitLoad(EVT VT, const X86AddressMode &AM, MachineMemOperand *MMO,
89 bool X86FastEmitStore(EVT VT, const Value *Val, const X86AddressMode &AM,
92 const X86AddressMode &AM,
98 bool X86SelectAddress(const Value *V, X86AddressMode &AM);
99 bool X86SelectCallAddress(const Value *V, X86AddressMode &AM);
141 bool handleConstantAddresses(const Value *V, X86AddressMode &AM);
329 bool X86FastISel::X86FastEmitLoad(EVT VT, const X86AddressMode &AM,
405 addFullAddress(MIB, AM);
416 const X86AddressMode &AM,
469 addFullAddress(MIB, AM).addReg(ValReg, getKillRegState(ValIsKill))
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 800 const ComplexPattern *AM = P->getComplexPatternInfo(CGP);
801 if (AM) {
802 Size += AM->getNumOperands() * 3;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Calendar.java 141 * saving time in US, wall clock time jumps from 12:59 AM (standard) to 2:00 AM
142 * (daylight). Therefore, wall clock time from 1:00 AM to 1:59 AM do not exist on
145 * In this example, 1:30 AM is interpreted as 1:30 AM standard time (non-exist),
146 * so the final result will be 2:30 AM daylight time.
149 * hour at 2:00 AM. So wall clock time from 1:00 AM to 1:59 AM occur twice. In thi
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 1308 milliseconds

1 2