Home
last modified time | relevance | path

Searched refs:VCDiffInstructionMap (Results 1 – 5 of 5) sorted by relevance

/external/chromium/sdch/open-vcdiff/src/
Dinstruction_map.cc26 VCDiffInstructionMap* VCDiffInstructionMap::default_instruction_map = NULL;
28 VCDiffInstructionMap* VCDiffInstructionMap::GetDefaultInstructionMap() { in GetDefaultInstructionMap()
30 default_instruction_map = new VCDiffInstructionMap( in GetDefaultInstructionMap()
60 VCDiffInstructionMap::FirstInstructionMap::FirstInstructionMap( in FirstInstructionMap()
73 VCDiffInstructionMap::FirstInstructionMap::~FirstInstructionMap() { in ~FirstInstructionMap()
80 VCDiffInstructionMap::SecondInstructionMap::SecondInstructionMap( in SecondInstructionMap()
89 VCDiffInstructionMap::SecondInstructionMap::~SecondInstructionMap() { in ~SecondInstructionMap()
103 void VCDiffInstructionMap::SecondInstructionMap::Add( in Add()
127 OpcodeOrNone VCDiffInstructionMap::SecondInstructionMap::Lookup( in Lookup()
151 VCDiffInstructionMap::VCDiffInstructionMap( in VCDiffInstructionMap() function in open_vcdiff::VCDiffInstructionMap
Dinstruction_map.h40 class VCDiffInstructionMap {
49 VCDiffInstructionMap(const VCDiffCodeTableData& code_table_data,
52 static VCDiffInstructionMap* GetDefaultInstructionMap();
199 static VCDiffInstructionMap* default_instruction_map;
202 VCDiffInstructionMap(const VCDiffInstructionMap&); // NOLINT
203 void operator=(const VCDiffInstructionMap&);
Dencodetable.h32 class VCDiffInstructionMap; variable
200 const VCDiffInstructionMap* instruction_map_;
Dinstruction_map_test.cc68 static const VCDiffInstructionMap* default_map;
71 static const VCDiffInstructionMap* exercise_map;
77 const VCDiffInstructionMap* InstructionMapTest::default_map = NULL;
78 const VCDiffInstructionMap* InstructionMapTest::exercise_map = NULL;
113 default_map = VCDiffInstructionMap::GetDefaultInstructionMap(); in SetUpTestCase()
114 exercise_map = new VCDiffInstructionMap(*g_exercise_code_table_, in SetUpTestCase()
Dencodetable.cc91 instruction_map_ = VCDiffInstructionMap::GetDefaultInstructionMap(); in Init()
93 instruction_map_ = new VCDiffInstructionMap(*code_table_data_, max_mode_); in Init()