HomeSort by relevance Sort by last modified time
    Searched refs:codePath (Results 1 - 13 of 13) sorted by null

  /frameworks/base/services/core/java/com/android/server/pm/
PendingPackage.java 24 PendingPackage(String name, String realName, File codePath, File resourcePath,
28 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
PackageSetting.java 32 PackageSetting(String name, String realName, File codePath, File resourcePath,
36 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
PackageSettingBase.java 54 File codePath;
112 PackageSettingBase(String name, String realName, File codePath, File resourcePath,
119 init(codePath, resourcePath, legacyNativeLibraryPathString, primaryCpuAbiString,
132 codePath = base.codePath;
166 void init(File codePath, File resourcePath, String legacyNativeLibraryPathString,
169 this.codePath = codePath;
170 this.codePathString = codePath.toString();
Installer.java 122 public int rmdex(String codePath, String instructionSet) {
130 builder.append(codePath);
Settings.java 274 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
278 PackageSetting p = getPackageLPw(name, origPackage, realName, sharedUser, codePath,
365 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath,
381 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath,
393 p = new PackageSetting(name, realName, codePath, resourcePath,
462 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
472 if (!p.codePath.equals(codePath)) {
479 + p.codePathString + " to " + codePath.toString());
483 Slog.i(PackageManagerService.TAG, "Package " + name + " codePath changed from
    [all...]
PackageManagerService.java 423 // Mapping from provider base names (first directory in content URI codePath)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextMetricsBuilder.cpp 82 CodePath codePath = scaledFont.codePath(m_run);
83 m_isComplexText = codePath == ComplexPath;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
Font.h 40 // with Complex value in CodePath enum.
128 CodePath codePath(const TextRun&) const;
159 static void setCodePath(CodePath);
160 static CodePath codePath();
161 static CodePath s_codePath;
Font.cpp 49 CodePath Font::s_codePath = AutoPath;
113 CodePath codePathToUse = codePath(runInfo.run);
129 CodePath codePathToUse = codePath(runInfo.run);
153 CodePath codePathToUse = codePath(run);
213 CodePath codePathToUse = codePath(run);
227 if (codePath(run) != ComplexPath && !fontDescription().typesettingFeatures()
    [all...]
  /frameworks/base/core/java/android/content/pm/
ApplicationInfo.java     [all...]
PackageParser.java 109 // TODO: refactor "codePath" to "apkPath"
258 public final String codePath;
268 public PackageLite(String codePath, ApkLite baseApk, String[] splitNames,
275 this.codePath = codePath;
276 this.baseCodePath = baseApk.codePath;
296 public final String codePath;
306 public ApkLite(String codePath, String packageName, String splitName, int versionCode,
309 this.codePath = codePath;
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 446 for (String codePath : pkg.getAllCodePaths()) {
447 final File codeFile = new File(codePath);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 586 this.packageURI = Uri.fromFile(new File(pkg.codePath));
590 this.packageURI = Uri.fromFile(new File(pkg.codePath));
595 File file = new File(pkg.codePath);
    [all...]

Completed in 2368 milliseconds