Home | History | Annotate | Download | only in bluetooth

Lines Matching refs:string

8 #include <string>
18 // constructed using a string representing 16, 32, or 128 bit UUID formats.
30 // represented as a 4, 8, or 36 character string with the following
43 explicit BluetoothUUID(const std::string& uuid);
48 // UUID by definition and the string accessors will return an empty string.
59 // Returns the value of the UUID as a string. The representation format is
66 const std::string& value() const { return value_; }
68 // Returns the underlying 128-bit value as a string in the following format:
71 const std::string& canonical_value() const { return canonical_value_; }
82 // String representation of the UUID that was used during construction. For
88 std::string value_;
90 // The 128-bit string representation of the UUID.
91 std::string canonical_value_;
100 return std::hash<std::string>()(uuid.canonical_value());