Lines Matching refs:theName
178 // Set the name for a partition to theName, using a C++-style string as
180 void GPTPart::SetName(const string & theName) {
181 SetName((UnicodeString) theName.c_str());
184 // Set the name for a partition to theName, using a Unicode string as
186 void GPTPart::SetName(const UnicodeString & theName) {
187 if (theName.isBogus()) {
191 theName.extractBetween(0, NAME_SIZE, (UChar*) name);
197 // Set the name for a partition to theName. Note that theName is a
201 void GPTPart::SetName(const string & theName) {
203 size_t len = theName.length() ;
207 uint8_t cp = theName[ i ++ ] ;
214 // invalid byte, theName is broken
231 // missing continuation byte, theName is broken
234 cp = theName[ i ++ ] ;
236 // invalid continuation byte, theName is broken