/frameworks/base/packages/Keyguard/scripts/ |
new_merge.py | 65 sourceFile = sourceDir + file 68 prepareFileForCompare(sourceFile, TEMP_FILE1, FW_RES_IMPORT, FW_PKG, PROTO_PKG) 72 prepareFileForCompare(sourceFile, TEMP_FILE2, FW_RES_IMPORT,) 77 diff(sourceFile, destFile) 81 diff(sourceFile, destFile)
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
AddDelegateTransformer.java | 50 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { 55 super.begin_class(version, access, className, superType, all, sourceFile); 70 super.begin_class(version, access, className, superType, interfaces, sourceFile);
|
InterceptFieldTransformer.java | 47 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { 49 super.begin_class(version, access, className, superType, TypeUtils.add(interfaces, ENABLED), sourceFile); 70 super.begin_class(version, access, className, superType, interfaces, sourceFile);
|
FieldProviderTransformer.java | 51 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { 57 super.begin_class(version, access, className, superType, interfaces, sourceFile);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
MethodImplementationBuilder.java | 145 public void addSetSourceFile(@Nullable StringReference sourceFile) { 146 currentLocation.addSetSourceFile(sourceFile);
|
MethodLocation.java | 244 public void addSetSourceFile(@Nullable StringReference sourceFile) { 245 getDebugItems().add(new BuilderSetSourceFile(sourceFile));
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
PackageUtil.java | 65 public static PackageParser.Package getPackageInfo(File sourceFile) { 68 PackageParser.Package pkg = parser.parseMonolithicPackage(sourceFile, 0); 169 Activity pContext, ApplicationInfo appInfo, File sourceFile) { 170 final String archiveFilePath = sourceFile.getAbsolutePath();
|
InstallAppProgress.java | 247 final File sourceFile = new File(mPackageURI.getPath()); 248 as = PackageUtil.getAppSnippet(this, mAppInfo, sourceFile);
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
DexMaker.java | 219 public void declare(TypeId<?> type, String sourceFile, int flags, 233 declaration.sourceFile = sourceFile; 405 private String sourceFile; 429 interfaces.ropTypes, new CstString(sourceFile));
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/ |
FileCheckerCallable.java | 68 context.sourceFile, context.sourceFile.getCode(), config, errorReporter).ast;
|
/external/qemu/android/tools/ |
gen-hw-config.py | 55 sourceFile = sys.argv[1] 98 for line in open(sourceFile):
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
DebugWriter.java | 127 public void writeSetSourceFile(int codeAddress, @Nullable StringKey sourceFile) throws IOException { 130 writer.writeUleb128(stringSection.getNullableItemIndex(sourceFile) + 1);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
SourceProcessor.java | 256 for (IFile sourceFile : mRemoved) { 257 int pos = mToCompile.indexOf(sourceFile); 273 for (IFile sourceFile : mRemoved) { 275 SourceFileData data = getFileData(sourceFile);
|
/bionic/libc/tools/zoneinfo/ |
ZoneCompactor.java | 77 File sourceFile = new File(dataDirectory, s); 78 long length = sourceFile.length(); 83 copyFile(sourceFile, allData);
|
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/ |
DefaultContainerService.java | 397 final File sourceFile = new File(sourcePath); 400 Slog.d(TAG, "Copying " + sourceFile + " to " + targetFile); 401 if (!FileUtils.copyFile(sourceFile, targetFile)) { 402 throw new IOException("Failed to copy " + sourceFile + " to " + targetFile); 410 PackageHelper.extractPublicFiles(sourceFile, publicTargetFile);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeRefactoring.java | 240 IFile sourceFile = mDelegate.getEditor().getInputFile(); 241 if (sourceFile == null) { 246 handleIncludingFile(changes, sourceFile, mSelectionStart, mSelectionEnd, 252 List<IFile> layouts = getOtherLayouts(sourceFile); 318 IContainer parent = sourceFile.getParent(); 346 IFile sourceFile, int begin, int end, Document document, Element primary) { 347 TextFileChange change = new TextFileChange(sourceFile.getName(), sourceFile); 365 model = StructuredModelManager.getModelManager().getModelForRead(sourceFile); 400 private List<IFile> getOtherLayouts(IFile sourceFile) { [all...] |
ExtractStyleRefactoring.java | 375 IFile sourceFile = mDelegate.getEditor().getInputFile(); 376 if (sourceFile == null) { 379 TextFileChange change = new TextFileChange(sourceFile.getName(), sourceFile);
|
/external/smali/smali/src/main/java/org/jf/smali/ |
smaliFlexLexer.java | [all...] |
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
ClassDefinition.java | 140 String sourceFile = classDef.getSourceFile(); 141 if (sourceFile != null) { 143 StringUtils.writeEscapedString(writer, sourceFile);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/ |
DebugInfo.java | 229 String sourceFile = dexFile.getOptionalString(reader.readSmallUleb128() - 1); 230 return new ImmutableSetSourceFile(codeAddress, sourceFile);
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
ClassWriter.java | 340 private int sourceFile;
607 sourceFile = newUTF8(file);
729 if (sourceFile != 0) {
732 newUTF8("SourceFile");
802 if (sourceFile != 0) {
803 out.putShort(newUTF8("SourceFile")).putInt(2).putShort(sourceFile);
[all...] |
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/ |
mt_rx_tx_test.cc | 134 FILE* sourceFile; 137 if ((sourceFile = fopen(inname.c_str(), "rb")) == NULL)
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
DexBuilder.java | 113 @Nullable String sourceFile, 137 context.stringPool.internNullableString(sourceFile),
|
/cts/tools/vm-tests-tf/src/util/build/ |
BuildDalvikSuite.java | 338 File sourceFile = getFileFromPackage(pName, method); 342 // if (sourceFile.lastModified() > classFile.lastModified()) { 343 writeToFile(sourceFile, content); 344 javacBuildStep.addSourceFile(sourceFile.getAbsolutePath());
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
CfTranslator.java | 122 CstString sourceFile = (cfOptions.positionInfo == PositionList.NONE) ? null : 126 cf.getSuperclass(), cf.getInterfaces(), sourceFile);
|