Lines Matching refs:string
8 #include <string>
16 // constructed using a string representing 16, 32, or 128 bit UUID formats.
28 // represented as a 4, 8, or 36 character string with the following
41 explicit BluetoothUUID(const std::string& uuid);
46 // UUID by definition and the string accessors will return an empty string.
57 // Returns the value of the UUID as a string. The representation format is
64 const std::string& value() const { return value_; }
66 // Returns the underlying 128-bit value as a string in the following format:
69 const std::string& canonical_value() const { return canonical_value_; }
80 // String representation of the UUID that was used during construction. For
86 std::string value_;
88 // The 128-bit string representation of the UUID.
89 std::string canonical_value_;