Home
last modified time | relevance | path

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

/frameworks/base/tools/apilint/
Ddeprecated_at_birth.py135 self.fullname = raw[raw.index("class")+1]
137 self.fullname = raw[raw.index("enum")+1]
139 self.fullname = raw[raw.index("interface")+1]
141 self.fullname = raw[raw.index("@interface")+1]
152 self.fullname = self.pkg.name + "." + self.fullname
153 self.fullname_path = self.fullname.split(".")
155 self.name = self.fullname[self.fullname.rindex(".")+1:]
199 api[clazz.fullname] = clazz
264 sig = "%s-%s-%s" % (clazz.fullname, repr(detail), msg)
286 if prev_clazz.fullname not in next_api: continue
[all …]
/frameworks/opt/vcard/tests/res/raw/
Dv21_malformed_photo.vcf4 FN:fullname
Dv21_base64_no_2_crlf.vcf4 FN:fullname
/frameworks/base/ravenwood/junit-src/android/platform/test/ravenwood/
DRavenwoodRule.java340 final var fullname = description.getTestClass().getName() in shouldStillIgnoreInProbeIgnoreMode() local
343 if (REALLY_DISABLE_PATTERN.matcher(fullname).find()) { in shouldStillIgnoreInProbeIgnoreMode()
344 System.out.println("Still ignoring " + fullname); in shouldStillIgnoreInProbeIgnoreMode()
/frameworks/base/apct-tests/perftests/core/src/android/libcore/varhandles/
Dgenerate_java.py59 def fullname(self): member in Benchmark
83 name = self.fullname(),
509 file_path = final_java_dir / "{}.java".format(bench.fullname())
/frameworks/base/libs/androidfw/
DBackupHelpers.cpp532 String8 fullname; // for pax later on in write_tarfile() local
620 fullname = prefix; in write_tarfile()
621 appendPath(fullname, relpath); in write_tarfile()
627 if (fullname.length() > 100) { in write_tarfile()
631 strncpy(buf, fullname.c_str(), 100); in write_tarfile()
637 ALOGI(" Name: %s", fullname.c_str()); in write_tarfile()
655 "path", fullname.c_str()); in write_tarfile()
662 String8 leaf = getPathLeaf(fullname); in write_tarfile()
/frameworks/base/errorprone/java/com/google/errorprone/bugpatterns/android/
DRethrowFromSystemChecker.java109 return type.tsym.packge().fullname.toString().startsWith(filter); in inPackage()