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

/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttSourceFile.java29 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 DSourcePosition.java32 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 DSourcePosition.java32 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 DClassDefItem.java64 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 DClassDefItem.java61 private final CstString sourceFile; field in class:ClassDefItem
84 * @param sourceFile {@code null-ok;} source file name or
88 CstType superclass, TypeList interfaces, CstString sourceFile) {
107 this.sourceFile = sourceFile;
155 if (sourceFile != null) {
156 stringIds.intern(sourceFile);
179 int sourceFileIdx = (sourceFile == null) ? -1 :
180 file.getStringIds().indexOf(sourceFile);
202 " // " + ((sourceFile
87 ClassDefItem(CstType thisClass, int accessFlags, CstType superclass, TypeList interfaces, CstString sourceFile) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DConcreteMethod.java47 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 DCfTranslator.java123 CstString sourceFile = (cfOptions.positionInfo == PositionList.NONE) ? null :
127 cf.getSuperclass(), cf.getInterfaces(), sourceFile);
/dalvik/hit/src/com/android/hit/
H A DHprofParser.java211 String sourceFile = mStrings.get(readId());
216 sourceFile, serial, lineNumber);
/dalvik/vm/oo/
H A DObject.h468 const char* sourceFile; member in struct:ClassObject
H A DObject.cpp734 return meth->clazz->sourceFile;
H A DClass.cpp1938 newClass->sourceFile = dexGetSourceFile(pDexFile, pClassDef);
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java1017 CstString sourceFile = clazz.getSourceFile();
1018 if (sourceFile != null) {
1019 pw.println(" source file: " + sourceFile.toQuoted());
/dalvik/vm/
H A DException.cpp1015 const char* sourceFile = dvmGetMethodSourceFile(meth); local
1016 StringObject* fileName = (sourceFile != NULL) ? dvmCreateStringFromCstr(sourceFile) : NULL;
H A DDebugger.cpp757 return clazz->sourceFile;
/dalvik/dx/src/com/android/dx/cf/direct/
H A DStdAttributeFactory.java107 return sourceFile(cf, offset, length, observer);
697 private Attribute sourceFile(DirectClassFile cf, int offset, int length, method in class:StdAttributeFactory

Completed in 9766 milliseconds