Home | History | Annotate | Download | only in tools

Lines Matching defs:suffix

103   const char* suffix;
111 char* modified_path; /* Storage for path with appended / cut suffix */
170 /* Partial comparison. On Windows there could be ".exe" suffix. */
362 fprintf(stderr, "suffix already set\n");
366 params->suffix = argv[i];
500 suffix", arg, key_len) == 0) {
502 fprintf(stderr, "suffix already set\n");
506 params->suffix = value;
525 if (strchr(params->suffix, '/') || strchr(params->suffix, '\\')) {
576 " -S SUF, --suffix=SUF output file suffix (default:'%s')\n",
725 /* If output is not specified, input path suffix should match. */
727 size_t suffix_len = strlen(context->suffix);
738 if (strcmp(context->suffix, name_suffix) != 0) {
739 fprintf(stderr, "input file [%s] suffix mismatch\n",
747 strcpy(context->modified_path + arg_len, context->suffix);
1046 context.suffix = DEFAULT_SUFFIX;
1069 context.longest_path_len + strlen(context.suffix) + 1;