HomeSort by relevance Sort by last modified time
    Searched refs:FindTypeOf (Results 1 - 5 of 5) sorted by null

  /art/compiler/sea_ir/types/
type_data_test.cc 30 EXPECT_TRUE(NULL == td.FindTypeOf(first_instruction_id));
34 EXPECT_TRUE(int_type == td.FindTypeOf(first_instruction_id));
35 EXPECT_TRUE(NULL == td.FindTypeOf(second_instruction_id));
37 EXPECT_TRUE(int_type == td.FindTypeOf(first_instruction_id));
38 EXPECT_TRUE(byte_type == td.FindTypeOf(second_instruction_id));
types.h 38 const Type* FindTypeOf(int instruction_id) {
type_inference_visitor.cc 77 const Type* source_type = type_data_->FindTypeOf((*cit)->Id());
type_inference.cc 173 const Type* old_type = type_data_.FindTypeOf((*instruction_it)->Id());
  /art/compiler/sea_ir/code_gen/
code_gen.cc 69 const Type* param_type = graph->ti_->type_data_.FindTypeOf((*param_iterator)->Id());
76 const Type* return_type = graph->ti_->type_data_.FindTypeOf(-1);

Completed in 265 milliseconds