Searched refs:fullname (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/tools/apilint/
H A Dapilint.py124 self.fullname = raw[raw.index("class")+1]
126 self.fullname = raw[raw.index("interface")+1]
135 self.fullname = self.pkg.name + "." + self.fullname
136 self.name = self.fullname[self.fullname.rindex(".")+1:]
176 api[clazz.fullname] = clazz
193 sig = "%s-%s-%s" % (clazz.fullname, repr(detail), msg)
216 if re.match("android\.R\.[a-z]+", clazz.fullname): return
232 if clazz.fullname
[all...]
/frameworks/base/tools/layoutlib/rename_font/
H A Dbuild_font_single.py46 fullname = None variable in class:FontInfo
142 font.fullname = namerecord.text.strip()
164 namerecord.text = font.fullname
168 """ Compute the new font family name and font fullname. If the font has a
170 font fullname is then created by joining the new family name and the
180 font.fullname = new_family
182 font.fullname = new_family + ' ' + font.style
188 """ According to the specification, the font fullname should not end in
H A Dtest.py40 self.assertEqual(fonts[0].fullname, "Roboto1200310 Regular")
H A Dbuild_font.py48 fullname = None variable in class:FontInfo
158 font.fullname = namerecord.text.strip()
180 namerecord.text = font.fullname
184 """ Compute the new font family name and font fullname. If the font has a
186 font fullname is then created by joining the new family name and the
196 font.fullname = new_family
198 font.fullname = new_family + ' ' + font.style
204 """ According to the specification, the font fullname should not end in
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp535 String8 fullname; // for pax later on local
614 fullname = prefix;
615 fullname.appendPath(relpath);
620 // We only use the prefix area if fullname won't fit in the path
621 if (fullname.length() > 100) {
625 strncpy(buf, fullname.string(), 100);
631 ALOGI(" Name: %s", fullname.string());
648 // fullname was generated above with the ustar paths
649 p += write_pax_header_entry(p, "path", fullname.string());
657 String8 leaf = fullname
[all...]
/frameworks/base/tools/aidl/
H A Daidl.cpp778 char fullname[1024]; local
785 sscanf(line, "%s %[^; \r\n\t];", type, fullname);
788 char* classname = rfind(fullname, '.');
792 packagename = fullname;
794 classname = fullname;

Completed in 147 milliseconds