Searched defs:sourceFile (Results 1 - 25 of 48) sorted by relevance

12

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/debug/
H A DBuilderSetSourceFile.java43 private final StringReference sourceFile; field in class:BuilderSetSourceFile
45 public BuilderSetSourceFile(@Nullable StringReference sourceFile) { argument
46 this.sourceFile = sourceFile;
52 return sourceFile==null?null:sourceFile.getString();
56 return sourceFile;
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
H A DSetSourceFileMethodItem.java43 @Nullable private final String sourceFile; field in class:SetSourceFileMethodItem
47 this.sourceFile = setSourceFile.getSourceFile();
54 if (sourceFile != null) {
56 StringUtils.writeEscapedString(writer, sourceFile);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
H A DImmutableSetSourceFile.java43 @Nullable protected final String sourceFile; field in class:ImmutableSetSourceFile
46 @Nullable String sourceFile) {
48 this.sourceFile = sourceFile;
61 @Nullable @Override public String getSourceFile() { return sourceFile; }
64 return sourceFile==null?null:new BaseStringReference() {
66 return sourceFile;
45 ImmutableSetSourceFile(int codeAddress, @Nullable String sourceFile) argument
/external/dexmaker/src/dx/java/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...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DValidatorContext.java23 public final SourceFile sourceFile; field in class:ValidatorContext
30 this.sourceFile = SourceFile.builder().buildFromCode(scriptFileName, text);
42 return sourceFile.getCode().substring(
51 sourceFile.getLineOfOffset(offset), sourceFile.getColumnOfOffset(offset));
70 sourceFile.getLine(position.line),
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DAddDelegateTransformer.java50 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { argument
55 super.begin_class(version, access, className, superType, all, sourceFile);
70 super.begin_class(version, access, className, superType, interfaces, sourceFile);
H A DFieldProviderTransformer.java51 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { argument
57 super.begin_class(version, access, className, superType, interfaces, sourceFile);
H A DInterceptFieldTransformer.java47 public void begin_class(int version, int access, String className, Type superType, Type[] interfaces, String sourceFile) { argument
49 super.begin_class(version, access, className, superType, TypeUtils.add(interfaces, ENABLED), sourceFile);
70 super.begin_class(version, access, className, superType, interfaces, sourceFile);
/external/qemu/android/tools/
H A Dgen-hw-config.py55 sourceFile = sys.argv[1] variable
98 for line in open(sourceFile):
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DSecurityPolicyViolationEvent.h41 String sourceFile; member in struct:blink::SecurityPolicyViolationEventInit
66 const String& sourceFile() const { return m_sourceFile; } function in class:blink::FINAL
86 , m_sourceFile(initializer.sourceFile)
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DDexMaker.java219 public void declare(TypeId<?> type, String sourceFile, int flags, argument
233 declaration.sourceFile = sourceFile;
405 private String sourceFile; field in class:DexMaker.TypeDeclaration
429 interfaces.ropTypes, new CstString(sourceFile));
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DClassNode.java89 public String sourceFile; field in class:ClassNode
172 sourceFile = file;
242 if (sourceFile != null || sourceDebug != null) {
243 cv.visitSource(sourceFile, sourceDebug);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DMethodImplementationBuilder.java145 public void addSetSourceFile(@Nullable StringReference sourceFile) { argument
146 currentLocation.addSetSourceFile(sourceFile);
H A DMethodLocation.java244 public void addSetSourceFile(@Nullable StringReference sourceFile) { argument
245 getDebugItems().add(new BuilderSetSourceFile(sourceFile));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableClassDef.java56 @Nullable protected final String sourceFile; field in class:ImmutableClassDef
67 @Nullable String sourceFile,
82 this.sourceFile = sourceFile;
94 @Nullable String sourceFile,
104 this.sourceFile = sourceFile;
116 @Nullable String sourceFile,
126 this.sourceFile = sourceFile;
63 ImmutableClassDef(@onnull String type, int accessFlags, @Nullable String superclass, @Nullable Collection<String> interfaces, @Nullable String sourceFile, @Nullable Collection<? extends Annotation> annotations, @Nullable Iterable<? extends Field> fields, @Nullable Iterable<? extends Method> methods) argument
90 ImmutableClassDef(@onnull String type, int accessFlags, @Nullable String superclass, @Nullable Collection<String> interfaces, @Nullable String sourceFile, @Nullable Collection<? extends Annotation> annotations, @Nullable Iterable<? extends Field> staticFields, @Nullable Iterable<? extends Field> instanceFields, @Nullable Iterable<? extends Method> directMethods, @Nullable Iterable<? extends Method> virtualMethods) argument
112 ImmutableClassDef(@onnull String type, int accessFlags, @Nullable String superclass, @Nullable ImmutableSet<String> interfaces, @Nullable String sourceFile, @Nullable ImmutableSet<? extends ImmutableAnnotation> annotations, @Nullable ImmutableSortedSet<? extends ImmutableField> staticFields, @Nullable ImmutableSortedSet<? extends ImmutableField> instanceFields, @Nullable ImmutableSortedSet<? extends ImmutableMethod> directMethods, @Nullable ImmutableSortedSet<? extends ImmutableMethod> virtualMethods) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDebugWriter.java127 public void writeSetSourceFile(int codeAddress, @Nullable StringKey sourceFile) throws IOException { argument
130 writer.writeUleb128(stringSection.getNullableItemIndex(sourceFile) + 1);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderClassDef.java51 @Nullable final BuilderStringReference sourceFile; field in class:BuilderClassDef
66 @Nullable BuilderStringReference sourceFile,
81 this.sourceFile = sourceFile;
92 @Nullable @Override public String getSourceFile() { return sourceFile==null?null:sourceFile.getString(); }
62 BuilderClassDef(@onnull BuilderTypeReference type, int accessFlags, @Nullable BuilderTypeReference superclass, @Nonnull BuilderTypeList interfaces, @Nullable BuilderStringReference sourceFile, @Nonnull BuilderAnnotationSet annotations, @Nullable Iterable<? extends BuilderField> fields, @Nullable Iterable<? extends BuilderMethod> methods) argument
H A DDexBuilder.java113 @Nullable String sourceFile,
137 context.stringPool.internNullableString(sourceFile),
109 internClassDef(@onnull String type, int accessFlags, @Nullable String superclass, @Nullable List<String> interfaces, @Nullable String sourceFile, @Nonnull Set<? extends Annotation> annotations, @Nullable Iterable<? extends BuilderField> fields, @Nullable Iterable<? extends BuilderMethod> methods) argument
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dmt_rx_tx_test.cc134 FILE* sourceFile; local
137 if ((sourceFile = fopen(inname.c_str(), "rb")) == NULL)
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDefItem.java62 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...]
/external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/
H A DCallstacker.cpp161 bool sourceFile(const char* szFileName) { function
609 if (!sourceFile(szFileNameInput))
/external/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/
H A DCallstacker.cpp161 bool sourceFile(const char* szFileName) { function
609 if (!sourceFile(szFileNameInput))
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliFlexLexer.java2838 private File sourceFile; field in class:smaliFlexLexer
2881 public void setSourceFile(File sourceFile) { argument
2882 this.sourceFile = sourceFile;
2886 if (sourceFile == null) {
2890 return PathUtil.getRelativeFile(new File("."), sourceFile).getPath();
2892 return sourceFile.getAbsolutePath();
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassWriter.java340 private int sourceFile; field in class:ClassWriter
607 sourceFile = newUTF8(file);
729 if (sourceFile != 0) {
802 if (sourceFile != 0) {
803 out.putShort(newUTF8("SourceFile")).putInt(2).putShort(sourceFile);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/
H A Djsdoc-validator.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/chromium/ org/chromium/devtools/ org/chromium/devtools/jsdoc/ ...

Completed in 1751 milliseconds

12