/dalvik/dx/src/com/android/dx/cf/attrib/ |
H A D | AttSourceFile.java | 29 private final CstString sourceFile; field in class:AttSourceFile 34 * @param sourceFile {@code non-null;} the name of the source file 36 public AttSourceFile(CstString sourceFile) { argument 39 if (sourceFile == null) { 40 throw new NullPointerException("sourceFile == null"); 43 this.sourceFile = sourceFile; 57 return sourceFile;
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
H A D | SourcePosition.java | 32 private final CstUtf8 sourceFile; field in class:SourcePosition 49 * @param sourceFile {@code null-ok;} name of the file of origin or 56 public SourcePosition(CstUtf8 sourceFile, int address, int line) { argument 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/ |
H A D | SourcePosition.java | 32 private final CstString sourceFile; field in class:SourcePosition 49 * @param sourceFile {@code null-ok;} name of the file of origin or 56 public SourcePosition(CstString sourceFile, int address, int line) { argument 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/dexgen/src/com/android/dexgen/dex/file/ |
H A D | ClassDefItem.java | 64 private final CstUtf8 sourceFile; field in class:ClassDefItem 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 90 ClassDefItem(CstType thisClass, int accessFlags, CstType superclass, TypeList interfaces, CstUtf8 sourceFile) argument [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
H A D | ClassDefItem.java | 62 private final CstString sourceFile; field in class:ClassDefItem 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 88 ClassDefItem(CstType thisClass, int accessFlags, CstType superclass, TypeList interfaces, CstString sourceFile) argument [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
H A D | ConcreteMethod.java | 47 private final CstString sourceFile; field in class:ConcreteMethod 78 public ConcreteMethod(Method method, int accessFlags, CstString sourceFile, argument 82 this.sourceFile = sourceFile; 254 return new SourcePosition(sourceFile, offset,
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
H A D | CfTranslator.java | 121 CstString sourceFile = (cfOptions.positionInfo == PositionList.NONE) ? null : 125 cf.getSuperclass(), cf.getInterfaces(), sourceFile);
|
/dalvik/hit/src/com/android/hit/ |
H A D | HprofParser.java | 211 String sourceFile = mStrings.get(readId()); 216 sourceFile, serial, lineNumber);
|
/dalvik/vm/oo/ |
H A D | Object.h | 470 const char* sourceFile; member in struct:ClassObject
|
H A D | Object.cpp | 734 return meth->clazz->sourceFile;
|
H A D | Class.cpp | 1935 newClass->sourceFile = dexGetSourceFile(pDexFile, pClassDef);
|
/dalvik/dx/src/com/android/dx/command/dexer/ |
H A D | Main.java | 836 CstString sourceFile = clazz.getSourceFile(); 837 if (sourceFile != null) { 838 pw.println(" source file: " + sourceFile.toQuoted());
|
/dalvik/vm/ |
H A D | Exception.cpp | 1015 const char* sourceFile = dvmGetMethodSourceFile(meth); local 1016 StringObject* fileName = (sourceFile != NULL) ? dvmCreateStringFromCstr(sourceFile) : NULL;
|
H A D | Debugger.cpp | 757 return clazz->sourceFile;
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
H A D | StdAttributeFactory.java | 108 return sourceFile(cf, offset, length, observer); 698 private Attribute sourceFile(DirectClassFile cf, int offset, int length, method in class:StdAttributeFactory
|