/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 | 32 PackageSetting(String name, String realName, File codePath, File resourcePath, 34 super(name, realName, codePath, resourcePath, nativeLibraryPathString, pVersionCode,
|
PackageSettingBase.java | 51 File codePath; 82 PackageSettingBase(String name, String realName, File codePath, File resourcePath, 87 init(codePath, resourcePath, nativeLibraryPathString, pVersionCode); 99 codePath = base.codePath; 130 void init(File codePath, File resourcePath, String nativeLibraryPathString, 132 this.codePath = codePath; 133 this.codePathString = codePath.toString();
|
Installer.java | 223 public int rmdex(String codePath) { 226 builder.append(codePath);
|
Settings.java | 215 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, 218 PackageSetting p = getPackageLPw(name, origPackage, realName, sharedUser, codePath, 300 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath, 314 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath, 325 p = new PackageSetting(name, realName, codePath, resourcePath, nativeLibraryPathString, 393 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, 398 if (!p.codePath.equals(codePath)) { 405 + p.codePathString + " to " + codePath.toString()); 409 Slog.i(PackageManagerService.TAG, "Package " + name + " codePath changed from [all...] |
PackageManagerService.java | 331 // installed zip file (absolute codePath), and values are Package. 397 // Mapping from provider base names (first directory in content URI codePath) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
Font.cpp | 81 Font::CodePath Font::s_codePath = Auto; 178 CodePath codePathToUse = codePath(runInfo.run); 194 CodePath codePathToUse = codePath(runInfo.run); 207 CodePath codePathToUse = codePath(run); 270 CodePath codePathToUse = codePath(run); 284 if (codePath(run) != Complex && !typesettingFeatures() [all...] |
Font.h | 40 // with Complex value in CodePath enum. 165 enum CodePath { Auto, Simple, Complex, SimpleWithGlyphOverflow }; 166 CodePath codePath(const TextRun&) const; 167 static CodePath characterRangeCodePath(const LChar*, unsigned) { return Simple; } 168 static CodePath characterRangeCodePath(const UChar*, unsigned len); 202 static void setCodePath(CodePath); 203 static CodePath codePath(); 204 static CodePath s_codePath [all...] |
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/ |
DefaultContainerService.java | 344 String codePath = packageURI.getPath(); 345 File codeFile = new File(codePath); 369 if (FileUtils.copyFile(new File(codePath), resFile)) { 371 Slog.i(TAG, "Copied " + codePath + " to " + resFile); 374 Slog.e(TAG, "Failed to copy " + codePath + " to " + resFile); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGTextMetricsBuilder.cpp | 104 m_isComplexText = scaledFont.codePath(m_run) == Font::Complex;
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/ |
ComplexTextController.cpp | 44 return font.codePath(run) == Font::Complex;
|