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

  /frameworks/base/services/java/com/android/server/pm/
PendingPackage.java 24 PendingPackage(String name, String realName, File codePath, File resourcePath,
26 super(name, realName, codePath, resourcePath, nativeLibraryPathString, pVersionCode,
PackageSetting.java 31 PackageSetting(String name, String realName, File codePath, File resourcePath,
33 super(name, realName, codePath, resourcePath, nativeLibraryPathString, pVersionCode,
PackageSettingBase.java 51 File codePath;
80 PackageSettingBase(String name, String realName, File codePath, File resourcePath,
85 init(codePath, resourcePath, nativeLibraryPathString, pVersionCode);
97 codePath = base.codePath;
125 void init(File codePath, File resourcePath, String nativeLibraryPathString,
127 this.codePath = codePath;
128 this.codePathString = codePath.toString();
Installer.java 223 public int rmdex(String codePath) {
226 builder.append(codePath);
Settings.java 201 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
204 PackageSetting p = getPackageLPw(name, origPackage, realName, sharedUser, codePath,
286 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath,
300 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath,
311 p = new PackageSetting(name, realName, codePath, resourcePath, nativeLibraryPathString,
366 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
371 if (!p.codePath.equals(codePath)) {
378 + p.codePathString + " to " + codePath.toString());
382 Slog.i(PackageManagerService.TAG, "Package " + name + " codePath changed from
    [all...]
PackageManagerService.java 317 // installed zip file (absolute codePath), and values are Package.
385 // Mapping from provider base names (first directory in content URI codePath)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Font.cpp 42 Font::CodePath Font::s_codePath = Auto;
142 if (codePath(run) != Complex)
162 if (codePath(run) != Complex)
175 CodePath codePathToUse = codePath(run);
198 if (codePath(run) != Complex)
213 if (codePath(run) != Complex)
226 if (codePath(run) != Complex)
263 void Font::setCodePath(CodePath p)
268 Font::CodePath Font::codePath(
    [all...]
Font.h 157 enum CodePath { Auto, Simple, Complex, SimpleWithGlyphOverflow };
192 CodePath codePath(const TextRun&) const;
206 static void setCodePath(CodePath);
207 static CodePath codePath();
208 static CodePath s_codePath;
  /external/webkit/Source/WebCore/platform/win/
WebCoreTextRenderer.cpp 124 return Font::codePath() == Font::Complex;
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 336 String codePath = packageURI.getPath();
337 File codeFile = new File(codePath);
361 if (FileUtils.copyFile(new File(codePath), resFile)) {
363 Slog.i(TAG, "Copied " + codePath + " to " + resFile);
366 Slog.e(TAG, "Failed to copy " + codePath + " to " + resFile);
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]

Completed in 350 milliseconds