Home
last modified time | relevance | path

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

/external/gptfdisk/
Dgptpart.cc173 void GPTPart::SetName(const string & theName) { argument
174 SetName((UnicodeString) theName.c_str());
179 void GPTPart::SetName(const UnicodeString & theName) { argument
180 if (theName.isBogus()) {
184 theName.extractBetween(0, NAME_SIZE, (UChar*) name);
194 void GPTPart::SetName(const string & theName) { argument
196 size_t len = theName.length() ;
200 uint8_t cp = theName[ i ++ ] ;
227 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.h151 int SetName(uint32_t partNum, const UnicodeString & theName);
Dgpt.cc1914 int GPTData::SetName(uint32_t partNum, const UnicodeString & theName) { in SetName() argument
1918 partitions[partNum].SetName(theName); in SetName()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
DUtil.java24 public static String getLocalResource(String theName) { in getLocalResource() argument
27 input = YamlDocument.class.getClassLoader().getResourceAsStream(theName); in getLocalResource()
29 throw new RuntimeException("Can not find " + theName); in getLocalResource()
/external/pdfium/testing/resources/javascript/
Dbug_679642.in93 var theName = "MyField";
97 var f = this.getField(theName);
104 this.removeField(theName);
Dbug_679643.in93 var theName = "MyField";
101 this.removeField(theName);
/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()
/external/snakeyaml/src/test/java/org/pyyaml/
DPyImportTest.java64 protected String getResource(String theName) { in getResource() argument
66 content = Util.getLocalResource(PATH + File.separator + theName); in getResource()