/frameworks/base/core/java/com/android/internal/app/ |
IMediaContainerService.aidl | 24 String copyPackageToContainer(String packagePath, String containerId, String key, 26 int copyPackage(String packagePath, in IParcelFileDescriptorFactory target); 28 PackageInfoLite getMinimalPackageInfo(String packagePath, int flags, String abiOverride); 34 long calculateInstalledSize(String packagePath, boolean isForwardLocked, String abiOverride);
|
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/ |
DefaultContainerService.java | 76 * @param packagePath absolute path to the package to be copied. Can be 87 public String copyPackageToContainer(String packagePath, String containerId, String key, 89 if (packagePath == null || containerId == null) { 105 final File packageFile = new File(packagePath); 111 Slog.w(TAG, "Failed to copy package at " + packagePath, e); 121 * @param packagePath absolute path to the package to be copied. Can be 128 public int copyPackage(String packagePath, IParcelFileDescriptorFactory target) { 129 if (packagePath == null || target == null) { 135 final File packageFile = new File(packagePath); 139 Slog.w(TAG, "Failed to copy package at " + packagePath + ": " + e) [all...] |
/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/ |
junit.stg | 31 hasPackage,packagePath,lexerPath,parserPath,treeParserPath,isTreeGrammar) ::= << 40 <if(hasPackage)><\t><\t>this.packagePath = "<packagePath>";<endif>
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
EclipseTestCollector.java | 118 String packagePath = dotPath.substring(index); 119 return Class.forName(packagePath);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
gUnitBaseTest.java | 52 public String packagePath; 71 if ( !testInputFile.exists() && packagePath!=null ) { 72 testInputFile = new File(packagePath, filePath); 162 if ( !testInputFile.exists() && packagePath!=null ) { 163 testInputFile = new File(packagePath, filePath); 308 if ( !testInputFile.exists() && packagePath!=null ) { 309 testInputFile = new File(packagePath, filePath);
|
JUnitCodeGen.java | 138 String packagePath = null; 144 packagePath = "./"+grammarInfo.getGrammarPackage().replace('.', '/'); 170 classHeaderST.setAttribute("packagePath", packagePath);
|
/development/tools/idegen/src/ |
Configuration.java | 187 String packagePath = packageName.replace('.', File.separatorChar); 190 if (!parentPath.endsWith(packagePath)) { 196 0, parentPath.length() - packagePath.length()));
|
/prebuilts/misc/common/swig/include/2.0.11/java/ |
enums.swg | 23 %typemap(directorin, descriptor="L$packagepath/$*javaclassname;") const enum SWIGTYPE & "$input = (jint)$1;" 48 %typemap(directorin, descriptor="L$packagepath/$javaclassname;") enum SWIGTYPE "$input = (jint) $1;"
|
enumtypesafe.swg | 22 %typemap(directorin, descriptor="L$packagepath/$*javaclassname;") const enum SWIGTYPE & "$input = (jint)$1;" 46 %typemap(directorin, descriptor="L$packagepath/$javaclassname;") enum SWIGTYPE "$input = (jint) $1;"
|
java.swg | 631 %typemap(directorin,descriptor="L$packagepath/$&javaclassname;") SWIGTYPE 668 %typemap(directorin,descriptor="L$packagepath/$javaclassname;") SWIGTYPE * 670 %typemap(directorin,descriptor="L$packagepath/$javaclassname;") SWIGTYPE (CLASS::*) 679 %typemap(directorin,descriptor="L$packagepath/$javaclassname;") SWIGTYPE & [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
DictionaryFactory.java | 159 final File packagePath = new File(sourceDir); 161 if (!packagePath.isFile()) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
ApplicationInfoPage.java | 803 public static String suggestTestPackage(String packagePath) { 804 if (packagePath == null) { 805 packagePath = ""; //$NON-NLS-1$ 807 return packagePath + ".test"; //$NON-NLS-1$
|
/frameworks/base/libs/androidfw/ |
AssetManager.cpp | 241 bool AssetManager::addOverlayPath(const String8& packagePath, int32_t* cookie) 243 const String8 idmapPath = idmapPathForPackagePath(packagePath); 270 if (overlayPath != packagePath) { 272 idmapPath.string(), packagePath.string(), overlayPath.string()); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
PreCompilerBuilder.java | [all...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageManagerService.java | [all...] |
/frameworks/base/core/java/android/content/pm/ |
PackageParser.java | 660 final String packagePath = packageFile.getAbsolutePath(); 661 return new PackageLite(packagePath, baseApk, null, null, null); [all...] |
/prebuilts/sdk/tools/linux/ |
aapt | |