/external/ltp/pan/ |
D | splitstr.c | 61 const char **splitstr(const char *str, const char *separator, int *argcount) in splitstr() argument 72 if (argcount != NULL) in splitstr() 73 *argcount = 0; in splitstr() 83 if (argcount != NULL) in splitstr() 84 *argcount = 0; in splitstr() 94 if (argcount != NULL) in splitstr() 95 *argcount = 0; in splitstr() 136 if (argcount != NULL) in splitstr() 137 *argcount = num_toks; in splitstr()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_printf.c | 45 int argcount, in lp_build_print_args() argument 55 assert(argcount > 0); in lp_build_print_args() 59 for (i = 1; i < argcount; i++) { in lp_build_print_args() 70 return LLVMBuildCall(builder, func_printf, args, argcount, ""); in lp_build_print_args() 180 int argcount; in lp_build_printf() local 183 argcount = lp_get_printf_arg_count(fmt); in lp_build_printf() 184 assert(Elements(params) >= argcount + 1); in lp_build_printf() 187 for (i = 1; i <= argcount; i++) { in lp_build_printf() 193 return lp_build_print_args(gallivm, argcount + 1, params); in lp_build_printf()
|
/external/fmtlib/support/ |
D | docopt.py | 62 if type(e) is Argument or type(e) is Option and e.argcount: 67 if type(e) is Command or type(e) is Option and e.argcount == 0: 182 def __init__(self, short=None, long=None, argcount=0, value=False): argument 183 assert argcount in (0, 1) 184 self.short, self.long, self.argcount = short, long, argcount 185 self.value = None if value is False and argcount else value 189 short, long, argcount, value = None, None, 0, False 198 argcount = 1 199 if argcount: 202 return class_(short, long, argcount, value) [all …]
|
/external/libvterm/src/ |
D | pen.c | 67 static int lookup_colour(const VTermState *state, int palette, const long args[], int argcount, VTe… in lookup_colour() argument 71 if(argcount < 3) in lookup_colour() 72 return argcount; in lookup_colour() 84 lookup_colour_palette(state, argcount ? CSI_ARG_OR(args[0], -1) : -1, col); in lookup_colour() 86 return argcount ? 1 : 0; in lookup_colour() 210 INTERNAL void vterm_state_setpen(VTermState *state, const long args[], int argcount) in vterm_state_setpen() argument 217 while(argi < argcount) { in vterm_state_setpen() 313 if(argcount - argi < 1) in vterm_state_setpen() 315 …argi += 1 + lookup_colour(state, CSI_ARG(args[argi+1]), args+argi+2, argcount-argi-2, &state->pen.… in vterm_state_setpen() 334 if(argcount - argi < 1) in vterm_state_setpen() [all …]
|
D | parser.c | 36 int argcount = 1; // Always at least 1 arg in do_string_csi() local 40 argcount++; in do_string_csi() 44 if(argcount > CSI_ARGS_MAX) in do_string_csi() 45 argcount = CSI_ARGS_MAX; in do_string_csi() 48 for(argi = 0; argi < argcount; argi++) in do_string_csi() 52 for(i = leaderlen; i < arglen && argi < argcount; i++) { in do_string_csi() 100 …if((*vt->parser_callbacks->csi)(leaderlen ? leader : NULL, csi_args, argcount, intermedlen ? inter… in do_string_csi()
|
D | vterm_internal.h | 189 void vterm_state_setpen(VTermState *state, const long args[], int argcount); 190 int vterm_state_getpen(VTermState *state, long args[], int argcount);
|
D | state.c | 899 static int on_csi(const char *leader, const long args[], int argcount, const char *intermed, char c… in on_csi() argument 1011 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]); in on_csi() 1212 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]); in on_csi() 1278 vterm_state_setpen(state, args, argcount); in on_csi() 1359 … state->scrollregion_bottom = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? -1 : CSI_ARG(args[1]); in on_csi() 1373 state->scrollregion_right = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? -1 : CSI_ARG(args[1]); in on_csi()
|
/external/libvterm/include/ |
D | vterm.h | 171 …int (*csi)(const char *leader, const long args[], int argcount, const char *intermed, char command…
|
/external/guice/extensions/struts2/lib/ |
D | freemarker-2.3.16.jar | META-INF/
META-INF/MANIFEST.MF
freemarker/
freemarker/cache/
freemarker/ ... |