Home
last modified time | relevance | path

Searched refs:EncodedValue (Results 1 – 4 of 4) sorted by relevance

/tools/dexter/slicer/export/slicer/
Ddex_ir.h59 struct EncodedValue;
128 struct EncodedValue : public Node { struct
156 std::vector<EncodedValue*> values; argument
258 EncodedValue* value;
375 std::vector<own<EncodedValue>> encoded_values;
456 void Track(EncodedValue* p) { PushOwn(encoded_values, p); } in Track()
Dreader.h85 ir::EncodedValue* ParseEncodedValue(const dex::u1** pptr);
/tools/dexter/slicer/
Dreader.cc468 ir::EncodedValue* Reader::ParseEncodedValue(const dex::u1** pptr) { in ParseEncodedValue()
469 auto ir_encoded_value = dex_ir_->Alloc<ir::EncodedValue>(); in ParseEncodedValue()
Dwriter.cc101 static void WriteEncodedValue(const ir::EncodedValue* ir_value, Section& data) { in WriteEncodedValue()