/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/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/debug/ |
BuilderSetSourceFile.java | 43 private final StringReference sourceFile; 45 public BuilderSetSourceFile(@Nullable StringReference sourceFile) { 46 this.sourceFile = sourceFile; 52 return sourceFile==null?null:sourceFile.getString(); 56 return sourceFile;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/ |
ImmutableSetSourceFile.java | 43 @Nullable protected final String sourceFile; 46 @Nullable String sourceFile) { 48 this.sourceFile = sourceFile; 61 @Nullable @Override public String getSourceFile() { return sourceFile; } 64 return sourceFile==null?null:new BaseStringReference() { 66 return sourceFile;
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/ |
SetSourceFileMethodItem.java | 43 @Nullable private final String sourceFile; 47 this.sourceFile = setSourceFile.getSourceFile(); 54 if (sourceFile != null) { 56 StringUtils.writeEscapedString(writer, 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;
|
DefaultSourceChangeHandler.java | 51 IFile sourceFile = mProcessor.isOutput(file); 52 if (sourceFile != null) { 53 mToCompile.add(sourceFile);
|
AidlProcessor.java | 151 for (IFile sourceFile : sources) { 153 String name = sourceFile.getName(); 154 IPath sourceFolderPath = getSourceFolderFor(sourceFile); 157 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath); 164 builder.removeMarkersFromResource(sourceFile, AdtConstants.MARKER_AIDL); 167 IPath sourcePath = sourceFile.getLocation(); 171 SourceFileData data = getFileData(sourceFile); 173 data = new SourceFileData(sourceFile); 179 IFile javaFile = getAidlOutputFile(sourceFile, genFolder, 189 if (execAidl(builder, project, commands, sourceFile, verbose) == false) [all...] |
/external/chromium_org/third_party/angle/tests/gles_conformance_tests/ |
generate_gles_conformance_tests.py | 40 def GenerateTestList(sourceFile, rootDir): 42 fileName, fileExtension = os.path.splitext(sourceFile) 44 lines = ReadFileAsLines(sourceFile) 46 tests += GenerateTestList(os.path.join(os.path.dirname(sourceFile), line), rootDir) 48 tests.append(os.path.relpath(os.path.realpath(sourceFile), rootDir).replace("\\", "/"))
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/ |
ValidatorContext.java | 3 import com.google.javascript.jscomp.SourceFile; 23 public final SourceFile sourceFile; 30 this.sourceFile = SourceFile.builder().buildFromCode(scriptFileName, text); 42 return sourceFile.getCode().substring( 51 sourceFile.getLineOfOffset(offset), sourceFile.getColumnOfOffset(offset)); 70 sourceFile.getLine(position.line),
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
ImmutableClassDef.java | 56 @Nullable protected final String sourceFile; 67 @Nullable String sourceFile, 82 this.sourceFile = sourceFile; 94 @Nullable String sourceFile, 104 this.sourceFile = sourceFile; 116 @Nullable String sourceFile, 126 this.sourceFile = 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...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/ |
BuilderClassDef.java | 51 @Nullable final BuilderStringReference sourceFile; 66 @Nullable BuilderStringReference sourceFile, 81 this.sourceFile = sourceFile; 92 @Nullable @Override public String getSourceFile() { return sourceFile==null?null:sourceFile.getString(); }
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
SecurityPolicyViolationEvent.h | 41 String sourceFile; 66 const String& sourceFile() const { return m_sourceFile; } 86 , m_sourceFile(initializer.sourceFile)
|
SecurityPolicyViolationEvent.idl | 35 [InitializedByEventConstructor] readonly attribute DOMString sourceFile;
|
/cts/tools/vm-tests-tf/src/util/build/ |
JavacBuildStep.java | 36 public void addSourceFile(String sourceFile) 38 sourceFiles.add(sourceFile);
|
/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,
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
svn-create-patch | 203 my $sourceFile; 209 $sourceFile = File::Spec->abs2rel($1, $baseUrl); 215 return ($sourceFile, $sourceRevision); 277 my ($sourceFile, $sourceRevision) = findSourceFileAndRevision($path); 278 $diffFiles->{$path}->{sourceFile} = $sourceFile; 311 my $sourceFile = $fileData->{sourceFile}; 313 print "--- ${file}\t(revision ${sourceRevision})\t(from ${sourceFile}:${sourceRevision})\n"; 320 my $escapedSourceFile = escapeSubversionPath($sourceFile); [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();
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
ClassNode.java | 89 public String sourceFile;
172 sourceFile = file;
242 if (sourceFile != null || sourceDebug != null) {
243 cv.visitSource(sourceFile, sourceDebug);
|
/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;
|