/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttSourceFile.java | 22 * Attribute class for standard {@code SourceFile} attributes. 26 public static final String ATTRIBUTE_NAME = "SourceFile"; 29 private final CstString sourceFile; 34 * @param sourceFile {@code non-null;} the name of the source file 36 public AttSourceFile(CstString sourceFile) { 39 if (sourceFile == null) { 40 throw new NullPointerException("sourceFile == null"); 43 this.sourceFile = sourceFile; 57 return sourceFile; [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
SourcePosition.java | 32 private final CstUtf8 sourceFile; 49 * @param sourceFile {@code null-ok;} name of the file of origin or 56 public SourcePosition(CstUtf8 sourceFile, int address, int line) { 65 this.sourceFile = sourceFile; 75 if (sourceFile != null) { 76 sb.append(sourceFile.toHuman()); 114 return sourceFile.hashCode() + address + line; 137 ((sourceFile == other.sourceFile) || [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
SourcePosition.java | 32 private final CstString sourceFile; 49 * @param sourceFile {@code null-ok;} name of the file of origin or 56 public SourcePosition(CstString sourceFile, int address, int line) { 65 this.sourceFile = sourceFile; 75 if (sourceFile != null) { 76 sb.append(sourceFile.toHuman()); 114 return sourceFile.hashCode() + address + line; 137 ((sourceFile == other.sourceFile) || [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
SourcePosition.java | 32 private final CstString sourceFile; 49 * @param sourceFile {@code null-ok;} name of the file of origin or 56 public SourcePosition(CstString sourceFile, int address, int line) { 65 this.sourceFile = sourceFile; 75 if (sourceFile != null) { 76 sb.append(sourceFile.toHuman()); 114 return sourceFile.hashCode() + address + line; 137 ((sourceFile == other.sourceFile) || [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
DebuggerPresentationModel.js | 72 sourceFile: function(sourceFileId) 100 var sourceFile = this._sourceFiles[sourceFileId]; 101 if (sourceFile) { 102 sourceFile.addScript(script); 106 function contentChanged(sourceFile) 111 sourceFile = new WebInspector.SourceFile(sourceFileId, script, contentChanged.bind(this)); 113 sourceFile = new WebInspector.FormattedSourceFile(sourceFileId, script, contentChanged.bind(this), this._formatter()); 114 this._sourceFiles[sourceFileId] = sourceFile; 116 this._restoreBreakpoints(sourceFile); [all...] |
ScriptsPanel.js | 255 var sourceFile = event.data; 257 if (!sourceFile.url) { 262 this._addOptionToFilesSelect(sourceFile.id); 268 this._showSourceFrameAndAddToHistory(sourceFile.id); 272 } else if (sourceFile.url === lastViewedURL) 273 this._showSourceFrameAndAddToHistory(sourceFile.id); 278 var sourceFile = this._presentationModel.sourceFile(sourceFileId); 281 option.text = sourceFile.url ? WebInspector.displayNameForURL(sourceFile.url) : WebInspector.UIString("(program)") [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
NativeStackCallInfo.java | 40 * <sourcefile>:<linenumber> 47 * Basic constructor with library, method, and sourcefile information 52 * @param sourceFile the name of the source file and the line number 53 * as "[sourcefile]:[fileNumber]" 55 public NativeStackCallInfo(long address, String lib, String method, String sourceFile) { 60 Matcher m = SOURCE_NAME_PATTERN.matcher(sourceFile); 69 mSourceFile = sourceFile;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
SourceFileData.java | 36 public SourceFileData(IFile sourceFile) { 37 this(sourceFile, null, null); 40 SourceFileData(IFile sourceFile, 42 mSourceFile = sourceFile; 51 SourceFileData(IFile sourceFile, IFile outputFile) { 52 mSourceFile = sourceFile;
|
AidlProcessor.java | 146 for (IFile sourceFile : sources) { 148 String name = sourceFile.getName(); 149 IPath sourceFolderPath = getSourceFolderFor(sourceFile); 152 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath); 159 builder.removeMarkersFromResource(sourceFile, AdtConstants.MARKER_AIDL); 162 IPath sourcePath = sourceFile.getLocation(); 166 SourceFileData data = getFileData(sourceFile); 168 data = new SourceFileData(sourceFile); 174 IFile javaFile = getAidlOutputFile(sourceFile, genFolder, 184 if (execAidl(builder, project, commands, sourceFile, verbose) == false) [all...] |
RenderScriptProcessor.java | 100 IFile sourceFile = sourceFolder.getFile(relative); 101 SourceFileData data = processor.getFileData(sourceFile); 103 addFileToCompile(sourceFile); 182 for (IFile sourceFile : sources) { 184 String name = sourceFile.getName(); 185 IPath sourceFolderPath = getSourceFolderFor(sourceFile); 188 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath); 195 builder.removeMarkersFromResource(sourceFile, AdtConstants.MARKER_RENDERSCRIPT); 196 SourceFileData data = getFileData(sourceFile); 204 IPath sourcePath = sourceFile.getLocation() [all...] |
SourceChangeHandler.java | 50 IFile sourceFile = mProcessor.isOutput(file); 51 if (sourceFile != null) { 52 mToCompile.add(sourceFile);
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
PackageUtil.java | 54 File sourceFile = new File(archiveFilePath); 58 sourceFile, archiveFilePath, metrics, 0); 68 public static PackageParser.Package getPackageInfo(File sourceFile) { 69 final String archiveFilePath = sourceFile.getAbsolutePath(); 73 PackageParser.Package pkg = packageParser.parsePackage(sourceFile, 153 Activity pContext, ApplicationInfo appInfo, File sourceFile) { 154 final String archiveFilePath = sourceFile.getAbsolutePath();
|
/tools/motodev/src/plugins/preflighting.checkers/src/com/motorolamobility/preflighting/checkers/logic/ |
OpenedCursorsCondition.java | 83 for (SourceFileElement sourceFile : sourceFiles)
86 List<Method> methods = sourceFile.getVirtualMethods();
87 analizeMethods(valManagerConfig, results, sourceFile, methods);
90 methods = sourceFile.getDirectMethods();
91 analizeMethods(valManagerConfig, results, sourceFile, methods);
97 ValidationResult results, SourceFileElement sourceFile, List<Method> methods)
104 getOpenedCursors(method, sourceFile, instructions);
112 addValidationResult(results, valManagerConfig, sourceFile, method, variable,
119 private Map<Variable, Integer> getOpenedCursors(Method method, SourceFileElement sourceFile,
152 ((isProject) ? ACTIVITY_QUALIFIED_NAME : sourceFile
[all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
ClassDefItem.java | 64 private final CstUtf8 sourceFile; 87 * @param sourceFile {@code null-ok;} source file name or 91 CstType superclass, TypeList interfaces, CstUtf8 sourceFile) { 110 this.sourceFile = sourceFile; 158 if (sourceFile != null) { 159 stringIds.intern(sourceFile); 182 int sourceFileIdx = (sourceFile == null) ? -1 : 183 file.getStringIds().indexOf(sourceFile); 205 " // " + ((sourceFile == null) ? "<none>" [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
ClassDefItem.java | 62 private final CstString sourceFile; 85 * @param sourceFile {@code null-ok;} source file name or 89 CstType superclass, TypeList interfaces, CstString sourceFile) { 108 this.sourceFile = sourceFile; 156 if (sourceFile != null) { 157 stringIds.intern(sourceFile); 180 int sourceFileIdx = (sourceFile == null) ? -1 : 181 file.getStringIds().indexOf(sourceFile); 203 " // " + ((sourceFile == null) ? "<none>" [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
ClassDefItem.java | 62 private final CstString sourceFile; 85 * @param sourceFile {@code null-ok;} source file name or 89 CstType superclass, TypeList interfaces, CstString sourceFile) { 108 this.sourceFile = sourceFile; 156 if (sourceFile != null) { 157 stringIds.intern(sourceFile); 180 int sourceFileIdx = (sourceFile == null) ? -1 : 181 file.getStringIds().indexOf(sourceFile); 203 " // " + ((sourceFile == null) ? "<none>" [all...] |
/cts/tools/vm-tests-tf/src/util/build/ |
JavacBuildStep.java | 36 public void addSourceFile(String sourceFile) 38 sourceFiles.add(sourceFile);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/ |
ClassDefItem.java | 48 private StringIdItem sourceFile; 68 * @param sourceFile The main source file that this class is defined in, or null if not available 78 TypeListItem implementedInterfaces, StringIdItem sourceFile, 87 this.sourceFile = sourceFile; 108 * @param sourceFile The main source file that this class is defined in, or null if not available 119 TypeIdItem superType, TypeListItem implementedInterfaces, StringIdItem sourceFile, 130 sourceFile, annotations, classData, encodedArrayItem); 142 * @param sourceFile The main source file that the class is defined in, or null if not available 153 TypeIdItem superType, TypeListItem implementedInterfaces, StringIdItem sourceFile, [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
ConcreteMethod.java | 44 * {@code null-ok;} the class's {@code SourceFile} attribute value, 47 private final CstString sourceFile; 78 public ConcreteMethod(Method method, int accessFlags, CstString sourceFile, 82 this.sourceFile = sourceFile; 254 return new SourcePosition(sourceFile, offset,
|
/tools/build/builder/src/main/java/com/android/builder/compiler/ |
SourceGenerator.java | 77 File sourceFile = graph.getFirstPrereq(); 78 String sourceFilePath = sourceFile.getAbsolutePath(); 86 File sourceFolder = sourceFiles.get(sourceFile); 97 sourceFiles.remove(sourceFile); 101 toCompile.put(sourceFile, sourceFolder);
|
/external/webkit/Tools/Scripts/ |
svn-create-patch | 201 my $sourceFile; 206 $sourceFile = File::Spec->abs2rel($1, $baseUrl); 212 return ($sourceFile, $sourceRevision); 272 my ($sourceFile, $sourceRevision) = findSourceFileAndRevision($path); 273 $diffFiles->{$path}->{sourceFile} = $sourceFile; 306 my $sourceFile = $fileData->{sourceFile}; 308 print "--- ${file}\t(revision ${sourceRevision})\t(from ${sourceFile}:${sourceRevision})\n"; 315 print `svn cat ${sourceFile} | diff -u $devNull - | tail -n +3` [all...] |
/sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/ |
ClassContext.java | 158 String source = mClassNode.sourceFile; 174 File sourceFile = new File(dir, relative); 175 if (sourceFile.exists()) { 176 mSourceFile = sourceFile; 190 File sourceFile = new File(dir, relative + File.separator + source); 191 if (sourceFile.exists()) { 192 mSourceFile = sourceFile; 212 File sourceFile = getSourceFile(); 213 if (sourceFile != null) { 263 File sourceFile = getSourceFile() [all...] |
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/ |
Main.java | 93 String sourceFile = source.getName(); 95 if (sourceFile.length() > 3) 97 String suffix = sourceFile.substring(sourceFile.length()-4).toLowerCase();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeWizard.java | 43 IFile sourceFile = ref.getSourceFile(); 44 addPage(new InputPage(mDelegate.getEditor().getProject(), sourceFile, initialName)); 55 public InputPage(IProject project, IFile sourceFile, String suggestedName) { 58 mSourceFile = sourceFile;
|
/sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/ |
ViewConstructorDetector.java | 137 File sourceFile = context.getSourceFile(); 138 Location location = Location.create(sourceFile != null 139 ? sourceFile : context.file);
|