OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:stringsection
(Results
1 - 13
of
13
) sorted by null
/external/llvm/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
41
DataExtractor
StringSection
;
44
DWARFAcceleratorTable(DataExtractor AccelSection, DataExtractor
StringSection
,
46
: AccelSection(AccelSection),
StringSection
(
StringSection
), Relocs(Relocs) {}
DWARFUnit.h
111
StringRef
StringSection
;
152
StringRef getStringSection() const { return
StringSection
; }
171
return DataExtractor(
StringSection
, false, 0);
DWARFContext.h
226
StringRef
StringSection
;
261
StringRef getStringSection() override { return
StringSection
; }
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DebugWriter.java
42
@Nonnull private final
StringSection
<StringKey, ?>
stringSection
;
48
DebugWriter(@Nonnull
StringSection
<StringKey, ?>
stringSection
,
51
this.
stringSection
=
stringSection
;
65
int nameIndex =
stringSection
.getNullableItemIndex(name);
67
int signatureIndex =
stringSection
.getNullableItemIndex(signature);
130
writer.writeUleb128(
stringSection
.getNullableItemIndex(sourceFile) + 1);
EncodedValueWriter.java
45
@Nonnull private final
StringSection
<StringKey, ?>
stringSection
;
53
@Nonnull
StringSection
<StringKey, ?>
stringSection
,
59
this.
stringSection
=
stringSection
;
74
writer.writeUleb128(
stringSection
.getItemIndex(annotationSection.getElementName(element)));
136
writer.writeEncodedUint(ValueType.STRING,
stringSection
.getItemIndex(value));
InstructionWriter.java
51
@Nonnull private final
StringSection
<?, StringRef>
stringSection
;
60
@Nonnull
StringSection
<?, StringRef>
stringSection
,
65
writer,
stringSection
, typeSection, fieldSection, methodSection);
69
@Nonnull
StringSection
<?, StringRef>
stringSection
,
74
this.
stringSection
=
stringSection
;
424
return
stringSection
.getItemIndex((StringRef)referenceInstruction.getReference())
[
all
...]
DexWriter.java
124
protected final
StringSection
<StringKey, StringRef>
stringSection
;
137
StringSection
<StringKey, StringRef>
stringSection
,
149
this.
stringSection
=
stringSection
;
181
super(writer,
stringSection
, typeSection, fieldSection, methodSection, annotationSection);
191
stringSection
.getItems().size() * StringIdItem.ITEM_SIZE +
290
List<Entry<? extends StringKey, Integer>> stringEntries = Lists.newArrayList(
stringSection
.getItems());
312
writer.writeInt(
stringSection
.getItemIndex(typeSection.getString(entry.getKey())))
[
all
...]
StringSection.java
38
public interface
StringSection
<StringKey, StringRef extends StringReference> extends NullableIndexSection<StringKey> {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
StringPool.java
35
import org.jf.dexlib2.writer.
StringSection
;
41
public class StringPool extends StringTypeBasePool implements
StringSection
<CharSequence, StringReference> {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderStringPool.java
36
import org.jf.dexlib2.writer.
StringSection
;
44
class BuilderStringPool implements
StringSection
<BuilderStringReference, BuilderStringReference> {
/external/llvm/lib/DebugInfo/DWARF/
DWARFAcceleratorTable.cpp
113
StringSection
.getCStr(&StringOffset));
DWARFContext.cpp
63
const DWARFSection& Section, StringRef
StringSection
,
66
DataExtractor StrData(
StringSection
, LittleEndian, 0);
583
.Case("debug_str", &
StringSection
)
DWARFUnit.cpp
38
StringSection
(SS), StringOffsetSection(SOS), AddrOffsetSection(AOS),
Completed in 501 milliseconds