Home
last modified time | relevance | path

Searched refs:sourceFile (Results 1 – 15 of 15) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/code/
DSourcePosition.java32 private final CstUtf8 sourceFile; field in SourcePosition
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) { in SourcePosition() argument
65 this.sourceFile = sourceFile; in SourcePosition()
75 if (sourceFile != null) { in toString()
76 sb.append(sourceFile.toHuman()); in toString()
114 return sourceFile.hashCode() + address + line; in hashCode()
137 ((sourceFile == other.sourceFile) || in sameLineAndFile()
138 ((sourceFile != null) && sourceFile.equals(other.sourceFile))); in sameLineAndFile()
147 return sourceFile; in getSourceFile()
/dalvik/dx/src/com/android/dx/rop/code/
DSourcePosition.java32 private final CstString sourceFile; field in SourcePosition
56 public SourcePosition(CstString sourceFile, int address, int line) { in SourcePosition() argument
65 this.sourceFile = sourceFile; in SourcePosition()
75 if (sourceFile != null) { in toString()
76 sb.append(sourceFile.toHuman()); in toString()
114 return sourceFile.hashCode() + address + line; in hashCode()
137 ((sourceFile == other.sourceFile) || in sameLineAndFile()
138 ((sourceFile != null) && sourceFile.equals(other.sourceFile))); in sameLineAndFile()
147 return sourceFile; in getSourceFile()
/dalvik/dx/src/com/android/dx/cf/attrib/
DAttSourceFile.java29 private final CstString sourceFile; field in AttSourceFile
36 public AttSourceFile(CstString sourceFile) { in AttSourceFile() argument
39 if (sourceFile == null) { in AttSourceFile()
43 this.sourceFile = sourceFile; in AttSourceFile()
57 return sourceFile; in getSourceFile()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DClassDefItem.java64 private final CstUtf8 sourceFile; field in ClassDefItem
91 CstType superclass, TypeList interfaces, CstUtf8 sourceFile) { in ClassDefItem() argument
110 this.sourceFile = sourceFile; in ClassDefItem()
158 if (sourceFile != null) { in addContents()
159 stringIds.intern(sourceFile); in addContents()
182 int sourceFileIdx = (sourceFile == null) ? -1 : in writeTo()
183 file.getStringIds().indexOf(sourceFile); in writeTo()
205 " // " + ((sourceFile == null) ? "<none>" : in writeTo()
206 sourceFile.toHuman())); in writeTo()
270 return sourceFile; in getSourceFile()
[all …]
/dalvik/dx/src/com/android/dx/dex/file/
DClassDefItem.java62 private final CstString sourceFile; field in ClassDefItem
89 CstType superclass, TypeList interfaces, CstString sourceFile) { in ClassDefItem() argument
108 this.sourceFile = sourceFile; in ClassDefItem()
156 if (sourceFile != null) { in addContents()
157 stringIds.intern(sourceFile); in addContents()
180 int sourceFileIdx = (sourceFile == null) ? -1 : in writeTo()
181 file.getStringIds().indexOf(sourceFile); in writeTo()
203 " // " + ((sourceFile == null) ? "<none>" : in writeTo()
204 sourceFile.toHuman())); in writeTo()
268 return sourceFile; in getSourceFile()
[all …]
/dalvik/dx/src/com/android/dx/cf/code/
DConcreteMethod.java47 private final CstString sourceFile; field in ConcreteMethod
78 public ConcreteMethod(Method method, int accessFlags, CstString sourceFile, in ConcreteMethod() argument
82 this.sourceFile = sourceFile; in ConcreteMethod()
254 return new SourcePosition(sourceFile, offset, in makeSourcePosistion()
/dalvik/dx/src/com/android/dx/dex/cf/
DCfTranslator.java121 CstString sourceFile = (cfOptions.positionInfo == PositionList.NONE) ? null : in translate0() local
125 cf.getSuperclass(), cf.getInterfaces(), sourceFile); in translate0()
/dalvik/hit/src/com/android/hit/
DHprofParser.java211 String sourceFile = mStrings.get(readId()); in loadStackFrame() local
216 sourceFile, serial, lineNumber); in loadStackFrame()
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java832 CstString sourceFile = clazz.getSourceFile(); in dumpMethod() local
833 if (sourceFile != null) { in dumpMethod()
834 pw.println(" source file: " + sourceFile.toQuoted()); in dumpMethod()
/dalvik/vm/
DException.cpp1015 const char* sourceFile = dvmGetMethodSourceFile(meth); in dvmFillStackTraceElements() local
1016 StringObject* fileName = (sourceFile != NULL) ? dvmCreateStringFromCstr(sourceFile) : NULL; in dvmFillStackTraceElements()
DDebugger.cpp757 return clazz->sourceFile; in dvmDbgGetSourceFile()
/dalvik/vm/oo/
DObject.h470 const char* sourceFile; member
DObject.cpp734 return meth->clazz->sourceFile; in dvmGetMethodSourceFile()
DClass.cpp1935 newClass->sourceFile = dexGetSourceFile(pDexFile, pClassDef); in loadClassFromDex0()
/dalvik/dx/src/com/android/dx/cf/direct/
DStdAttributeFactory.java108 return sourceFile(cf, offset, length, observer); in parse0()
698 private Attribute sourceFile(DirectClassFile cf, int offset, int length, in sourceFile() method in StdAttributeFactory