Home
last modified time | relevance | path

Searched refs:debugInfo (Results 1 – 11 of 11) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexCode.java39 private DexDebugInfo debugInfo; field in DexCode
48 DexDebugInfo debugInfo, in DexCode() argument
56 this.debugInfo = debugInfo; in DexCode()
72 return debugInfo; in getDebugInfo()
75 public void setDebugInfo(DexDebugInfo debugInfo) { in setDebugInfo() argument
76 this.debugInfo = debugInfo; in setDebugInfo()
80 if (debugInfo == null) { in debugInfoWithAdditionalFirstParameter()
83 DexString[] parameters = debugInfo.parameters; in debugInfoWithAdditionalFirstParameter()
87 return new DexDebugInfo(debugInfo.startLine, newParameters, debugInfo.events); in debugInfoWithAdditionalFirstParameter()
101 + ((debugInfo == null) ? 0 : debugInfo.hashCode()) * 11 in computeHashCode()
[all …]
/external/r8/src/test/java/com/android/tools/r8/dex/
DDebugByteCodeWriterTest.java40 DexDebugInfo debugInfo = new DexDebugInfo(1, new DexString[]{}, new DexDebugEvent[]{}); in testEmptyDebugInfo() local
41 DebugBytecodeWriter writer = new DebugBytecodeWriter(debugInfo, emptyObjectTObjectMapping()); in testEmptyDebugInfo()
/external/smali/baksmali/src/main/java/org/jf/baksmali/
DDisassembleCommand.java70 private boolean debugInfo = true; field in DisassembleCommand
246 options.debugInfo = debugInfo; in getOptions()
DBaksmaliOptions.java55 public boolean debugInfo = true; field in BaksmaliOptions
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
DsimpleKenny.c46 debugStruct debugInfo; variable
448 ((double)debugInfo.lbBytes * 8. * (sampFreqKHz)) / (double)totalsmpls; in main()
450 ((double)debugInfo.ubBytes * 8. * (sampFreqKHz)) / (double)totalsmpls; in main()
/external/r8/src/main/java/com/android/tools/r8/ir/code/
DValue.java76 public Value(int number, MoveType type, DebugInfo debugInfo) { in Value() argument
79 this.debugData = debugInfo == null ? null : new DebugData(debugInfo); in Value()
DIRCode.java370 public Value createValue(MoveType moveType, Value.DebugInfo debugInfo) { in createValue() argument
371 return new Value(valueNumberGenerator.next(), moveType, debugInfo); in createValue()
/external/r8/src/main/java/com/android/tools/r8/dex/
DFileWriter.java475 private void writeDebugItem(DexDebugInfo debugInfo) { in writeDebugItem() argument
476 mixedSectionOffsets.setOffsetFor(debugInfo, dest.position()); in writeDebugItem()
477 dest.putBytes(new DebugBytecodeWriter(debugInfo, mapping).generate()); in writeDebugItem()
1115 public boolean add(DexDebugInfo debugInfo) { in add() argument
1116 return add(debugInfos, debugInfosList, debugInfo); in add()
1221 public int getOffsetFor(DexDebugInfo debugInfo) { in getOffsetFor() argument
1222 return lookup(debugInfo, debugInfos); in getOffsetFor()
1263 void setOffsetFor(DexDebugInfo debugInfo, int offset) { in setOffsetFor() argument
1264 setOffsetFor(debugInfo, offset, debugInfos); in setOffsetFor()
DDexFileReader.java791 DexDebugInfo debugInfo = debugInfoAt(debugInfoOff);
803 debugInfo,
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DMethodDefinition.java323 if ((options.debugInfo && parameterName != null) || annotations.size() != 0) { in writeParameters()
327 if (parameterName != null && options.debugInfo) { in writeParameters()
377 if (classDef.options.debugInfo) { in getMethodItems()
/external/python/cpython2/Misc/
DNEWS9561 - Issue #3395: fix reference in test_multiprocessing to old debugInfo method