• Home
  • Raw
  • Download

Lines Matching refs:val

717     bool WriteVector(const std::vector<T1> &val, bool (Parcel::*Write)(T2));
718 bool WriteBoolVector(const std::vector<bool> &val);
719 bool WriteInt8Vector(const std::vector<int8_t> &val);
720 bool WriteInt16Vector(const std::vector<int16_t> &val);
721 bool WriteInt32Vector(const std::vector<int32_t> &val);
722 bool WriteInt64Vector(const std::vector<int64_t> &val);
723 bool WriteUInt8Vector(const std::vector<uint8_t> &val);
724 bool WriteUInt16Vector(const std::vector<uint16_t> &val);
725 bool WriteUInt32Vector(const std::vector<uint32_t> &val);
726 bool WriteUInt64Vector(const std::vector<uint64_t> &val);
727 bool WriteFloatVector(const std::vector<float> &val);
728 bool WriteDoubleVector(const std::vector<double> &val);
729 bool WriteStringVector(const std::vector<std::string> &val);
730 bool WriteString16Vector(const std::vector<std::u16string> &val);
743 bool ReadVector(std::vector<T> *val, bool (Parcel::*Read)(T &));
744 bool ReadBoolVector(std::vector<bool> *val);
745 bool ReadInt8Vector(std::vector<int8_t> *val);
746 bool ReadInt16Vector(std::vector<int16_t> *val);
747 bool ReadInt32Vector(std::vector<int32_t> *val);
748 bool ReadInt64Vector(std::vector<int64_t> *val);
749 bool ReadUInt8Vector(std::vector<uint8_t> *val);
750 bool ReadUInt16Vector(std::vector<uint16_t> *val);
751 bool ReadUInt32Vector(std::vector<uint32_t> *val);
752 bool ReadUInt64Vector(std::vector<uint64_t> *val);
753 bool ReadFloatVector(std::vector<float> *val);
754 bool ReadDoubleVector(std::vector<double> *val);
755 bool ReadStringVector(std::vector<std::string> *val);
756 bool ReadString16Vector(std::vector<std::u16string> *val);