HomeSort by relevance Sort by last modified time
    Searched full:sourcefile (Results 1 - 25 of 232) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/compile/slang/lit-tests/
rs-filecheck-wrapper.sh 8 SOURCEFILE=$3
10 FILECHECK_INPUTFILE=`basename $SOURCEFILE | sed 's/\.rs\$/.ll/'`
12 $FILECHECK -input-file $OUTDIR/$FILECHECK_INPUTFILE $SOURCEFILE
  /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...]
  /external/webkit/Source/WebCore/inspector/front-end/
DebuggerPresentationModel.js 72 sourceFile: function(sourceFileId)
100 var sourceFile = this._sourceFiles[sourceFileId];
101 if (sourceFile) {
102 sourceFile.addScript(script);
106 function contentChanged(sourceFile)
111 sourceFile = new WebInspector.SourceFile(sourceFileId, script, contentChanged.bind(this));
113 sourceFile = new WebInspector.FormattedSourceFile(sourceFileId, script, contentChanged.bind(this), this._formatter());
114 this._sourceFiles[sourceFileId] = sourceFile;
116 this._restoreBreakpoints(sourceFile);
    [all...]
  /dalvik/dx/tests/012-class-attrib-SourceFile/
expected.txt 13 0005: utf8{"SourceFile"}
25 name: SourceFile
small-class.txt 17 01 000a "SourceFile" # 0005: utf8["SourceFile"]
info.txt 6 class-level SourceFile attribute, which is syntactically valid.
  /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...]
  /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;
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...]
RenderScriptProcessor.java 130 IFile sourceFile = sourceFolder.getFile(relative);
131 SourceFileData data = processor.getFileData(sourceFile);
133 addFileToCompile(sourceFile);
213 for (IFile sourceFile : sources) {
215 String name = sourceFile.getName();
216 IPath sourceFolderPath = getSourceFolderFor(sourceFile);
219 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath);
226 builder.removeMarkersFromResource(sourceFile, AdtConstants.MARKER_RENDERSCRIPT);
227 SourceFileData data = getFileData(sourceFile);
235 IPath sourcePath = sourceFile.getLocation()
    [all...]
  /external/javassist/src/main/javassist/bytecode/
SourceFileAttribute.java 27 * The name of this attribute <code>"SourceFile"</code>.
29 public static final String tag = "SourceFile";
38 * Constructs a SourceFile attribute.
  /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...]
  /prebuilts/tools/common/proguard/proguard4.7/examples/ant/
midlets.xml 16 renamesourcefileattribute="SourceFile">
33 <keepattribute name="SourceFile">
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java 54 File sourceFile = new File(archiveFilePath);
58 sourceFile, archiveFilePath, metrics, 0);
68 public static PackageParser.Package getPackageInfo(File sourceFile) {
69 final String archiveFilePath = sourceFile.getAbsolutePath();
73 PackageParser.Package pkg = packageParser.parsePackage(sourceFile,
157 Activity pContext, ApplicationInfo appInfo, File sourceFile) {
158 final String archiveFilePath = sourceFile.getAbsolutePath();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/.settings/
org.eclipse.jdt.core.prefs 9 org.eclipse.jdt.core.compiler.debug.sourceFile=generate
  /sdk/apps/SdkController/.settings/
org.eclipse.jdt.core.prefs 9 org.eclipse.jdt.core.compiler.debug.sourceFile=generate
  /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;
  /prebuilts/tools/common/proguard/proguard4.7/examples/
midlets.pro 45 #-renamesourcefileattribute SourceFile
46 #-keepattributes SourceFile,LineNumberTable
  /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/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDefItem.java 47 private @Nullable StringIdItem sourceFile;
67 * @param sourceFile The main source file that this class is defined in, or null if not available
77 @Nullable TypeListItem implementedInterfaces, @Nullable StringIdItem sourceFile,
86 this.sourceFile = sourceFile;
100 * @param sourceFile The main source file that this class is defined in, or null if not available
112 @Nullable StringIdItem sourceFile, @Nullable AnnotationDirectoryItem annotations,
123 sourceFile, annotations, classData, encodedArrayItem);
134 sourceFile = dexFile.StringIdsSection.getOptionalItemByIndex(in.readInt());
155 out.annotate(4, "source_file: " + (sourceFile==null?"":sourceFile.getStringValue()))
    [all...]
  /external/webkit/Tools/Scripts/
update-sources-list.py 86 sourcefile = open(outfile, "w")
87 sourcefile.write(makefileString)
88 sourcefile.close()

Completed in 4801 milliseconds

1 2 3 4 5 6 7 8 910