Searched refs:fun_type (Results 1 – 3 of 3) sorted by relevance
24 typedef void (fun_type)(); typedef26 fun_type &&make_fun();54 fun_type &&fun_ref = fun; // works because functions are special in f()55 fun_type &&fun_ref2 = make_fun(); // same in f()56 fun_type &fun_lref = make_fun(); // also special in f()
234 typedef void fun_type(void); typedef238 void mangle_no_backref2(fun_type, ptr_to_fun_type) {} in mangle_no_backref2() argument250 void mangle_yes_backref2(fun_type *const[], ptr_to_fun_type const[]) {} in mangle_yes_backref2()
926 Type::FunctionType* fun_type = computed_type_->AsFunction(); in VisitCall() local927 Type* result_type = fun_type->Result(); in VisitCall()929 if (fun_type->Arity() != args->length()) { in VisitCall()935 arg, fun_type->Parameter(i), in VisitCall()990 Type::FunctionType* fun_type = computed_type_->AsFunction(); in VisitCallNew() local992 if (fun_type->Arity() != args->length()) in VisitCallNew()997 arg, fun_type->Parameter(i), in VisitCallNew()1000 IntersectResult(expr, fun_type->Result()); in VisitCallNew()