Home
last modified time | relevance | path

Searched refs:theName (Results 1 – 6 of 6) sorted by relevance

/external/gptfdisk/
Dgptpart.cc171 void GPTPart::SetName(const string & theName) { argument
172 SetName((UnicodeString) theName.c_str());
177 void GPTPart::SetName(const UnicodeString & theName) { argument
178 if (theName.isBogus()) {
182 theName.extractBetween(0, NAME_SIZE, (UChar*) name);
192 void GPTPart::SetName(const string & theName) { argument
194 size_t len = theName.length() ;
198 uint8_t cp = theName[ i ++ ] ;
225 cp = theName[ i ++ ] ;
Dgptpart.h82 void SetName(const string & theName);
84 void SetName(const UnicodeString & theName);
Dgpttext.cc307 UnicodeString theName = ""; in SetName() local
313 theName = ReadUString(); in SetName()
315 theName = ReadString(); in SetName()
317 partitions[partNum].SetName(theName); in SetName()
Dgpt.h150 int SetName(uint32_t partNum, const UnicodeString & theName);
Dgpt.cc1904 int GPTData::SetName(uint32_t partNum, const UnicodeString & theName) { in SetName() argument
1908 partitions[partNum].SetName(theName); in SetName()
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DElementType.java25 private String theName; // element type name (Qname) field in ElementType
51 theName = name; in ElementType()
103 public String name() { return theName; } in name()