Home
last modified time | relevance | path

Searched refs:Slot (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListButtonsDiagonalAcrossItems.java20 import static android.util.ListItemFactory.Slot;
52 final Slot slot = position == 0 ? Slot.Left : in createView()
53 (position == 1 ? Slot.Middle : Slot.Right); in createView()
DListHorizontalFocusWithinItemWins.java20 import static android.util.ListItemFactory.Slot;
56 context, desiredHeight, Slot.Left, Slot.Right); in createView()
59 context, desiredHeight, Slot.Middle); in createView()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.h245 bool getValueTypePair(SmallVector<uint64_t, 64> &Record, unsigned &Slot, in getValueTypePair() argument
247 if (Slot == Record.size()) return true; in getValueTypePair()
248 unsigned ValNo = (unsigned)Record[Slot++]; in getValueTypePair()
254 } else if (Slot == Record.size()) { in getValueTypePair()
258 unsigned TypeNo = (unsigned)Record[Slot++]; in getValueTypePair()
262 bool getValue(SmallVector<uint64_t, 64> &Record, unsigned &Slot, in getValue() argument
264 if (Slot == Record.size()) return true; in getValue()
265 unsigned ValNo = (unsigned)Record[Slot++]; in getValue()
/frameworks/base/graphics/java/android/renderscript/
DProgramFragmentFixedFunction.java117 private class Slot { class in ProgramFragmentFixedFunction.Builder
120 Slot(EnvMode _env, Format _fmt) { in Slot() method in ProgramFragmentFixedFunction.Builder.Slot
125 Slot[] mSlots;
198 mSlots = new Slot[MAX_TEXTURE]; in Builder()
220 mSlots[slot] = new Slot(env, fmt); in setTexture()
/frameworks/compile/libbcc/bcinfo/
DMetadataExtractor.cpp109 llvm::StringRef Slot = in populateObjectSlotMetadata() local
112 if (Slot.getAsInteger(10, USlot)) { in populateObjectSlotMetadata()
113 LOGE("Non-integer object slot value '%s'", Slot.str().c_str()); in populateObjectSlotMetadata()
/frameworks/base/core/tests/coretests/src/android/util/
DListItemFactory.java77 public enum Slot { enum in ListItemFactory
91 public static View horizontalButtonSlots(Context context, int desiredHeight, Slot... slots) { in horizontalButtonSlots()
104 for (Slot slot : slots) { in horizontalButtonSlots()
/frameworks/compile/libbcc/lib/ExecutionEngine/
DCompiler.cpp486 llvm::StringRef Slot = in compile() local
489 if (Slot.getAsInteger(10, USlot)) { in compile()
490 setError("Non-integer object slot value '" + Slot.str() + "'"); in compile()
495 LOGD("compile(): RefCount Slot: %s @ %u\n", Slot.str().c_str(), USlot); in compile()
/frameworks/base/services/input/
DInputReader.h739 class Slot {
776 Slot();
789 inline const Slot* getSlot(size_t index) const { return &mSlots[index]; } in getSlot()
793 Slot* mSlots;
DInputReader.cpp1496 mSlots = new Slot[slotCount]; in configure()
1555 Slot* slot = &mSlots[mCurrentSlot]; in process()
1628 MultiTouchMotionAccumulator::Slot::Slot() { in Slot() function in android::MultiTouchMotionAccumulator::Slot
1632 void MultiTouchMotionAccumulator::Slot::clear() { in clear()
1650 int32_t MultiTouchMotionAccumulator::Slot::getToolType() const { in getToolType()
5581 const MultiTouchMotionAccumulator::Slot* inSlot = in syncTouch()