HomeSort by relevance Sort by last modified time
    Searched defs:hasBit (Results 1 - 7 of 7) sorted by null

  /cts/tests/tests/location/src/android/location/cts/asn1/base/
BitStreamReader.java 52 public boolean hasBit() {
  /external/pdfium/fxbarcode/datamatrix/
BC_DefaultPlacement.cpp 54 bool CBC_DefaultPlacement::hasBit(int32_t col, int32_t row) {
75 if ((row < m_numrows) && (col >= 0) && !hasBit(col, row)) {
84 if ((row >= 0) && (col < m_numcols) && !hasBit(col, row)) {
93 if (!hasBit(m_numcols - 1, m_numrows - 1)) {
  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
MotionEvents.java 90 return hasBit(e.getMetaState(), KeyEvent.META_SHIFT_ON);
94 return hasBit(e.getMetaState(), KeyEvent.META_CTRL_ON);
98 return hasBit(e.getMetaState(), KeyEvent.META_ALT_ON);
117 private static boolean hasBit(int metaState, int bit) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
Events.java 69 return hasBit(e.getMetaState(), KeyEvent.META_CTRL_ON);
73 return hasBit(e.getMetaState(), KeyEvent.META_ALT_ON);
77 return hasBit(e.getMetaState(), KeyEvent.META_SHIFT_ON);
86 private static boolean hasBit(int metaState, int bit) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
MotionEvents.java 78 return hasBit(e.getMetaState(), KeyEvent.META_SHIFT_ON);
82 return hasBit(e.getMetaState(), KeyEvent.META_CTRL_ON);
86 return hasBit(e.getMetaState(), KeyEvent.META_ALT_ON);
95 private static boolean hasBit(int metaState, int bit) {
  /system/core/libutils/include/utils/
BitSet.h 62 inline bool hasBit(uint32_t n) const { return hasBit(value, n); }
64 static inline bool hasBit(uint32_t value, uint32_t n) { return value & valueForBit(n); }
204 inline bool hasBit(uint32_t n) const { return hasBit(value, n); }
206 static inline bool hasBit(uint64_t value, uint32_t n) { return value & valueForBit(n); }
  /external/zxing/core/
core.jar 

Completed in 133 milliseconds