Home | History | Annotate | Download | only in aidl

Lines Matching refs:INTERFACE

44                         "interface. */";
101 m->comment += " interface,\n";
250 generate_method(const method_type* method, Class* interface,
271 // == the declaration in the interface ===================================
289 interface->elements.push_back(decl);
297 // interface token validation is the very first thing we do
427 // the interface identifier token: the DESCRIPTOR constant, marshalled as a string
498 // the interface descriptor transaction handler
522 // the interface class
523 Class* interface = new Class;
524 interface->comment = gather_comments(iface->comments_token->extra);
525 interface->modifiers = PUBLIC;
526 interface->what = Class::INTERFACE;
527 interface->type = interfaceType;
528 interface->interfaces.push_back(IINTERFACE_TYPE);
534 interface->elements.push_back(stub);
546 // all the declared methods of the interface
552 generate_method(method_item, interface, stub, proxy, method_item->assigned_id);
558 return interface;