HomeSort by relevance Sort by last modified time
    Searched refs:item_ (Results 1 - 5 of 5) sorted by null

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
item.hpp 44 static aux::type_wrapper<T> item_(index_);
45 using Base::item_;
61 static aux::type_wrapper<T> item_(index_);
62 using Base::item_;
79 static aux::type_wrapper<void_> item_(index_);
80 using Base::item_;
95 static aux::type_wrapper<void_> item_(index_);
96 using Base::item_;
vector0.hpp 39 static aux::type_wrapper<void_> item_(...);
at.hpp 35 typedef __typeof__( Vector::item_(index_()) ) type;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
sli.h 31 Macroblocks() : item_(0) {}
38 uint16_t first() const { return item_ >> 19; }
39 uint16_t number() const { return (item_ >> 6) & 0x1fff; }
40 uint8_t picture_id() const { return (item_ & 0x3f); }
43 uint32_t item_; member in class:webrtc::rtcp::Sli::Macroblocks
sli.cc 50 item_ = (first << 19) | (number << 6) | picture_id;
54 item_ = ByteReader<uint32_t>::ReadBigEndian(buffer);
58 ByteWriter<uint32_t>::WriteBigEndian(buffer, item_);

Completed in 64 milliseconds