/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
H A D | ListButtonsDiagonalAcrossItems.java | 20 import static android.util.ListItemFactory.Slot; 52 final Slot slot = position == 0 ? Slot.Left : 53 (position == 1 ? Slot.Middle : Slot.Right);
|
H A D | ListHorizontalFocusWithinItemWins.java | 20 import static android.util.ListItemFactory.Slot; 56 context, desiredHeight, Slot.Left, Slot.Right); 59 context, desiredHeight, Slot.Middle);
|
/frameworks/compile/mclinker/lib/Fragment/ |
H A D | FGNode.cpp | 36 void FGNode::addSlot(Slot pSlot)
|
H A D | FragmentGraph.cpp | 238 bool FragmentGraph::connect(Signal pSignal, Slot pSlot) 253 bool FragmentGraph::connect(FGNode& pFrom, Slot pSlot)
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
H A D | FGNode.h | 32 typedef ResolveInfo* Slot; typedef in class:mcld::FGNode 39 typedef std::vector<Slot> SlotListType; 53 void addSlot(Slot pSlot);
|
H A D | FragmentGraph.h | 39 typedef FGNode::Slot Slot; typedef in class:mcld::FragmentGraph 60 bool connect(Signal pSignal, Slot pSlot); 61 bool connect(FGNode& pFrom, Slot pSlot);
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
H A D | BitcodeReader.h | 253 /// slot 'Slot'. Increment Slot past the number of slots used in the record. 255 bool getValueTypePair(SmallVector<uint64_t, 64> &Record, unsigned &Slot, 257 if (Slot == Record.size()) return true; 258 unsigned ValNo = (unsigned)Record[Slot++]; 264 } else if (Slot == Record.size()) { 268 unsigned TypeNo = (unsigned)Record[Slot++]; 272 bool getValue(SmallVector<uint64_t, 64> &Record, unsigned &Slot, 274 if (Slot == Record.size()) return true; 275 unsigned ValNo = (unsigned)Record[Slot [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
H A D | BitcodeReader.h | 247 /// slot 'Slot'. Increment Slot past the number of slots used in the record. 249 bool getValueTypePair(SmallVector<uint64_t, 64> &Record, unsigned &Slot, 251 if (Slot == Record.size()) return true; 252 unsigned ValNo = (unsigned)Record[Slot++]; 258 } else if (Slot == Record.size()) { 262 unsigned TypeNo = (unsigned)Record[Slot++]; 266 bool getValue(SmallVector<uint64_t, 64> &Record, unsigned &Slot, 268 if (Slot == Record.size()) return true; 269 unsigned ValNo = (unsigned)Record[Slot [all...] |
/frameworks/native/include/gui/ |
H A D | ConsumerBase.h | 180 // Slot contains the information and object references that 182 struct Slot { struct in class:android::ConsumerBase 204 Slot mSlots[BufferQueue::NUM_BUFFER_SLOTS];
|
/frameworks/base/graphics/java/android/renderscript/ |
H A D | ProgramFragmentFixedFunction.java | 154 private class Slot { class in class:ProgramFragmentFixedFunction.Builder 157 Slot(EnvMode _env, Format _fmt) { method in class:ProgramFragmentFixedFunction.Builder.Slot 162 Slot[] mSlots; 236 mSlots = new Slot[MAX_TEXTURE]; 259 mSlots[slot] = new Slot(env, fmt);
|
/frameworks/base/core/tests/coretests/src/android/util/ |
H A D | ListItemFactory.java | 77 public enum Slot { enum in class:ListItemFactory 91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) { 104 for (Slot slot : slots) {
|
/frameworks/compile/libbcc/bcinfo/ |
H A D | MetadataExtractor.cpp | 164 llvm::StringRef Slot = local 167 if (Slot.getAsInteger(10, USlot)) { 168 ALOGE("Non-integer object slot value '%s'", Slot.str().c_str());
|
/frameworks/base/services/input/ |
H A D | InputReader.h | 838 class Slot { class in class:android::MultiTouchMotionAccumulator 875 Slot(); 889 inline const Slot* getSlot(size_t index) const { return &mSlots[index]; } 893 Slot* mSlots;
|
H A D | InputReader.cpp | 1557 mSlots = new Slot[slotCount]; 1616 Slot* slot = &mSlots[mCurrentSlot]; 1691 // --- MultiTouchMotionAccumulator::Slot --- 1693 MultiTouchMotionAccumulator::Slot::Slot() { function in class:android::MultiTouchMotionAccumulator::Slot 1697 void MultiTouchMotionAccumulator::Slot::clear() { 1715 int32_t MultiTouchMotionAccumulator::Slot::getToolType() const { 2892 dumpRawAbsoluteAxisInfo(dump, mRawPointerAxes.slot, "Slot"); 6023 const MultiTouchMotionAccumulator::Slot* inSlot =
|