Lines Matching refs:type

178         Type* t = NAMES.Search(arg->type.type.data);
180 v->dimension = arg->type.dimension;
188 if (arg->type.dimension == 0) {
189 block->Add(new Assignment(v, new NewExpression(v->type)));
191 else if (arg->type.dimension == 1) {
192 generate_new_array(v->type, block, v, this->requestData);
210 Type* returnType = NAMES.Search(method->type.type.data);
222 method->type.dimension);
241 Type* t = NAMES.Search(arg->type.type.data);
307 this->type = interfaceType;
332 ctor->name = class_name_leaf(this->type->Name());
379 this->type = new Type(iface->package ? iface->package : "",
399 Variable* listener = new Variable(this->_listener->type, "listener");
402 ctor->name = class_name_leaf(this->type->Name());
432 this->type = new Type(iface->package ? iface->package : "",
462 this->type = new Type(iface->package ? iface->package : "",
483 ctor->name = class_name_leaf(this->type->Name());
520 this->type = new Type("_ResultDispatcher", Type::GENERATED, false, false, false);
545 ctor->name = class_name_leaf(this->type->Name());
644 resultsClass->type = resultsInterfaceType;
652 if (0 != strcmp("void", method->type.type.data)) {
653 resultMethod->parameters.push_back(new Variable(NAMES.Search(method->type.type.data),
654 "_result", method->type.dimension));
660 NAMES.Search(arg->type.type.data), arg->name.data,
661 arg->type.dimension));
699 Type* t = NAMES.Search(arg->type.type.data);
700 Variable* v = new Variable(t, arg->name.data, arg->type.dimension);
719 resultParameter = new NewExpression(resultsDispatcherClass->type, 2,
760 Type* t = NAMES.Search(method->type.type.data);
775 Type* t = NAMES.Search(arg->type.type.data);
819 decl->returnType = NAMES.Search(method->type.type.data);
820 decl->returnTypeDimension = method->type.dimension;
825 NAMES.Search(arg->type.type.data), arg->name.data,
826 arg->type.dimension));
864 Type* t = NAMES.Search(arg->type.type.data);
865 Variable* v = new Variable(t, arg->name.data, arg->type.dimension);
893 NAMES.Search(arg->type.type.data), arg->name.data,
894 arg->type.dimension));
964 EventListenerClass* presenter = new EventListenerClass(iface, listener->type);
978 if (NAMES.Search(((method_type*)item)->type.type.data) == EVENT_FAKE_TYPE) {
997 generate_listener_methods(proxy, presenter->type, listener->type);