HomeSort by relevance Sort by last modified time
    Searched defs:sourceFile (Results 1 - 21 of 21) sorted by null

  /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 CstUtf8 sourceFile;
34 * @param sourceFile {@code non-null;} the name of the source file
36 public AttSourceFile(CstUtf8 sourceFile) {
39 if (sourceFile == null) {
40 throw new NullPointerException("sourceFile == null");
43 this.sourceFile = sourceFile;
57 return sourceFile;
    [all...]
  /dalvik/dx/src/com/android/dx/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/vm/hprof/
HprofStackFrame.c 70 const char* sourceFile = dvmGetMethodSourceFile(method);
71 if (sourceFile) {
72 hprofLookupStringId(sourceFile);
192 const char *sourceFile;
203 sourceFile = dvmGetMethodSourceFile(method);
204 if (sourceFile == NULL) {
205 sourceFile = "<unknown>";
233 hprofAddIdToRecord(rec, hprofLookupStringId(sourceFile));
  /external/qemu/android/tools/
gen-hw-config.py 55 sourceFile = sys.argv[1]
83 for line in open(sourceFile):
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 45 * {@code null-ok;} the class's {@code SourceFile} attribute value,
48 private final CstUtf8 sourceFile;
79 this.sourceFile = cf.getSourceFile();
251 return new SourcePosition(sourceFile, offset,
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java 60 File sourceFile = new File(archiveFilePath);
63 PackageParser.Package pkg = packageParser.parsePackage(sourceFile, archiveFilePath, metrics, 0);
76 File sourceFile = new File(archiveFilePath);
79 PackageParser.Package pkg = packageParser.parsePackage(sourceFile,
  /dalvik/dx/src/com/android/dx/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/cf/direct/
StdAttributeFactory.java 109 return sourceFile(cf, offset, length, observer);
697 * Parses a {@code SourceFile} attribute.
699 private Attribute sourceFile(DirectClassFile cf, int offset, int length,
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 118 CstUtf8 sourceFile = (args.positionInfo == PositionList.NONE) ? null :
122 cf.getSuperclass(), cf.getInterfaces(), sourceFile);
  /dalvik/vm/
Exception.c     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PreCompilerDeltaVisitor.java 313 IFile sourceFile = findFile(sourceFolder, segments, 2, aidlFileName);
315 if (sourceFile != null) {
317 mAidlToCompile.add(new AidlData(sourceFolder, sourceFile));
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 689 CstUtf8 sourceFile = clazz.getSourceFile();
690 if (sourceFile != null) {
691 pw.println(" source file: " + sourceFile.toQuoted());
    [all...]
  /dalvik/hit/src/com/android/hit/
HprofParser.java 211 String sourceFile = mStrings.get(readId());
216 sourceFile, serial, lineNumber);
  /dalvik/vm/oo/
Object.h 509 const char* sourceFile;
  /frameworks/base/core/java/android/content/pm/
PackageManager.java     [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 263 File sourceFile = new File(archiveFilePath);
266 PackageParser.Package pkg = packageParser.parsePackage(sourceFile, archiveFilePath, metrics, 0);
    [all...]
  /frameworks/base/services/java/com/android/server/
PackageManagerService.java     [all...]
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 479 milliseconds