Home
last modified time | relevance | path

Searched refs:fullname (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/tools/apilint/
Ddeprecated_at_birth.py134 self.fullname = raw[raw.index("class")+1]
136 self.fullname = raw[raw.index("enum")+1]
138 self.fullname = raw[raw.index("interface")+1]
140 self.fullname = raw[raw.index("@interface")+1]
151 self.fullname = self.pkg.name + "." + self.fullname
152 self.fullname_path = self.fullname.split(".")
154 self.name = self.fullname[self.fullname.rindex(".")+1:]
198 api[clazz.fullname] = clazz
263 sig = "%s-%s-%s" % (clazz.fullname, repr(detail), msg)
285 if prev_clazz.fullname not in next_api: continue
[all …]
/frameworks/layoutlib/rename_font/
Dbuild_font_single.py46 fullname = None variable in FontInfo
149 font.fullname = namerecord.text.strip()
174 namerecord.text = font.fullname
190 font.fullname = new_family
192 font.fullname = new_family + ' ' + font.style
Dbuild_font.py48 fullname = None variable in FontInfo
158 font.fullname = namerecord.text.strip()
180 namerecord.text = font.fullname
196 font.fullname = new_family
198 font.fullname = new_family + ' ' + font.style
Dtest.py40 self.assertEqual(fonts[0].fullname, "Roboto1200310 Regular")
/frameworks/opt/vcard/tests/res/raw/
Dv21_malformed_photo.vcf4 FN:fullname
Dv21_base64_no_2_crlf.vcf4 FN:fullname
/frameworks/base/libs/androidfw/
DBackupHelpers.cpp528 String8 fullname; // for pax later on in write_tarfile() local
615 fullname = prefix; in write_tarfile()
616 fullname.appendPath(relpath); in write_tarfile()
622 if (fullname.length() > 100) { in write_tarfile()
626 strncpy(buf, fullname.string(), 100); in write_tarfile()
632 ALOGI(" Name: %s", fullname.string()); in write_tarfile()
650 "path", fullname.string()); in write_tarfile()
657 String8 leaf = fullname.getPathLeaf(); in write_tarfile()
/frameworks/base/errorprone/java/com/google/errorprone/bugpatterns/android/
DRethrowFromSystemChecker.java107 return type.tsym.packge().fullname.toString().startsWith(filter); in inPackage()