Lines Matching defs:oo

1537   options_p oo;
1541 for (oo = d->opt; oo; oo = oo->next)
1542 if (strcmp (oo->name, "length") == 0)
1543 length = oo->info;
1544 else if (strcmp (oo->name, "maybe_undef") == 0)
1546 else if (strncmp (oo->name, "use_param", 9) == 0
1547 && (oo->name[9] == '\0' || ISDIGIT (oo->name[9])))
1548 use_param_num = oo->name[9] == '\0' ? 0 : oo->name[9] - '0';
1549 else if (strcmp (oo->name, "use_params") == 0)
1551 else if (strcmp (oo->name, "desc") == 0)
1552 desc = oo->info;
1553 else if (strcmp (oo->name, "nested_ptr") == 0)
1554 nested_ptr_d = (const struct nested_ptr_data *) oo->info;
1555 else if (strcmp (oo->name, "dot") == 0)
1557 else if (strcmp (oo->name, "tag") == 0)
1559 else if (strcmp (oo->name, "special") == 0)
1561 else if (strcmp (oo->name, "skip") == 0)
1563 else if (strcmp (oo->name, "default") == 0)
1565 else if (strcmp (oo->name, "descbits") == 0)
1567 else if (strcmp (oo->name, "param_is") == 0)
1569 else if (strncmp (oo->name, "param", 5) == 0
1570 && ISDIGIT (oo->name[5])
1571 && strcmp (oo->name + 6, "_is") == 0)
1573 else if (strcmp (oo->name, "chain_next") == 0)
1575 else if (strcmp (oo->name, "chain_prev") == 0)
1577 else if (strcmp (oo->name, "reorder") == 0)
1580 error_at_line (d->line, "unknown option `%s'\n", oo->name);
1815 options_p oo;
1824 for (oo = f->opt; oo; oo = oo->next)
1825 if (strcmp (oo->name, "dot") == 0)
1826 dot = oo->info;
1827 else if (strcmp (oo->name, "tag") == 0)
1828 tagid = oo->info;
1829 else if (strcmp (oo->name, "skip") == 0)
1831 else if (strcmp (oo->name, "default") == 0)
1833 else if (strcmp (oo->name, "reorder") == 0)
1834 d->reorder_fn = oo->info;
1835 else if (strncmp (oo->name, "use_param", 9) == 0
1836 && (oo->name[9] == '\0' || ISDIGIT (oo->name[9])))
2609 options_p oo;
2611 for (oo = ufld->opt; oo; oo = oo->next)
2612 if (strcmp (oo->name, "tag") == 0)
2613 tag = oo->info;