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);
PackageManagerService.java 441 // Mapping from provider base names (first directory in content URI codePath)
    [all...]
Settings.java 282 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
286 PackageSetting p = getPackageLPw(name, origPackage, realName, sharedUser, codePath,
373 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath,
389 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath,
401 p = new PackageSetting(name, realName, codePath, resourcePath,
470 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
480 if (!p.codePath.equals(codePath)) {
487 + p.codePathString + " to " + codePath.toString());
491 Slog.i(PackageManagerService.TAG, "Package " + name + " codePath changed from
    [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.cpp 50 CodePath Font::s_codePath = AutoPath;
114 CodePath codePathToUse = codePath(runInfo.run);
130 CodePath codePathToUse = codePath(runInfo.run);
154 CodePath codePathToUse = codePath(run);
215 CodePath codePathToUse = codePath(runInfo.run);
246 CodePath codePathToUse = codePath(run)
    [all...]
Font.h 41 // with Complex value in CodePath enum.
136 CodePath codePath(const TextRun&) const;
173 static void setCodePath(CodePath);
174 static CodePath codePath();
175 static CodePath s_codePath;
  /frameworks/base/core/java/android/content/pm/
ApplicationInfo.java     [all...]
PackageParser.java 108 // TODO: refactor "codePath" to "apkPath"
257 public final String codePath;
272 public PackageLite(String codePath, ApkLite baseApk, String[] splitNames,
279 this.codePath = codePath;
280 this.baseCodePath = baseApk.codePath;
302 public final String codePath;
313 public ApkLite(String codePath, String packageName, String splitName, int versionCode,
316 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 595 this.packageURI = Uri.fromFile(new File(pkg.codePath));
599 this.packageURI = Uri.fromFile(new File(pkg.codePath));
604 File file = new File(pkg.codePath);
    [all...]

Completed in 173 milliseconds