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

  /frameworks/base/tools/aidl/
aidl_language.h 43 METHOD_TYPE
51 typedef struct method_type { struct
63 } method_type; typedef in typeref:struct:method_type
100 method_type* method;
aidl_language_y.y 169 method_type *method = (method_type*)malloc(sizeof(method_type));
170 method->interface_item.item_type = METHOD_TYPE;
184 method_type *method = (method_type*)malloc(sizeof(method_type));
185 method->interface_item.item_type = METHOD_TYPE;
aidl.cpp 37 if (q->item_type == METHOD_TYPE) {
38 method_type *m = (method_type*)q;
384 check_method(const char* filename, method_type* m)
502 map<string,method_type*> methodNames;
507 if (member->item_type == METHOD_TYPE) {
508 method_type* m = (method_type*)member;
518 method_type* old = methodNames[m->name.data];
generate_java.cpp 313 generate_method(const method_type* method, Class* interface,
613 if (item->item_type == METHOD_TYPE) {
614 generate_method((method_type*)item, interface, stub, proxy, index);

Completed in 189 milliseconds