Lines Matching defs:bot
1036 cxscope(Cx_t* top, Cx_t* bot, Cxflags_t flags, Cxflags_t test, Cxdisc_t* disc)
1050 if (bot)
1053 * scope top on bot
1063 dtview(top->callouts, bot->callouts);
1065 top->callouts = bot->callouts;
1067 dtview(top->constraints, bot->constraints);
1069 top->constraints = bot->constraints;
1071 dtview(top->edits, bot->edits);
1073 top->edits = bot->edits;
1075 dtview(top->fields, bot->fields);
1077 top->fields = bot->fields;
1079 dtview(top->maps, bot->maps);
1081 top->maps = bot->maps;
1083 dtview(top->queries, bot->queries);
1085 top->queries = bot->queries;
1087 dtview(top->recodes, bot->recodes);
1089 top->recodes = bot->recodes;
1091 dtview(top->types, bot->types);
1093 top->types = bot->types;
1095 dtview(top->variables, bot->variables);
1097 top->variables = bot->variables;
1098 bot->scoped++;
1099 top->scope = bot;
1100 bot = top;
1102 else if (bot = top->scope)
1127 bot->scoped--;
1130 bot = top;
1131 return bot;