• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/cups-372.4/cups/cups/

Lines Matching defs:marked

23  *   ppdFindMarkedChoice() - Return the marked choice for the specified option.
25 * ppdIsMarked() - Check to see if an option is marked.
32 * ppd_debug_marked() - Output the marked array to stdout...
398 * 'ppdFindMarkedChoice()' - Return the marked choice for the specified option.
406 *marked; /* Marked choice */
417 marked = (ppd_choice_t *)cupsArrayFind(ppd->marked, &key);
419 DEBUG_printf(("3ppdFindMarkedChoice: Returning %p(%s)...", marked,
420 marked ? marked->choice : "NULL"));
422 return (marked);
478 * 'ppdIsMarked()' - Check to see if an option is marked.
481 int /* O - Non-zero if option is marked */
496 if ((c = (ppd_choice_t *)cupsArrayFind(ppd->marked, &key)) == NULL)
519 * Clean out the marked array...
522 for (c = (ppd_choice_t *)cupsArrayFirst(ppd->marked);
524 c = (ppd_choice_t *)cupsArrayNext(ppd->marked))
526 cupsArrayRemove(ppd->marked, c);
527 c->marked = 0;
697 * 'ppd_debug_marked()' - Output the marked array to stdout...
709 for (c = (ppd_choice_t *)cupsArrayFirst(ppd->marked);
711 c = (ppd_choice_t *)cupsArrayNext(ppd->marked))
798 if ((oldc = (ppd_choice_t *)cupsArrayFind(ppd->marked, &key)) != NULL)
800 oldc->marked = 0;
801 cupsArrayRemove(ppd->marked, oldc);
902 * Make sure that we keep the option marked below...
1000 if ((oldc = (ppd_choice_t *)cupsArrayFind(ppd->marked, c)) != NULL)
1002 oldc->marked = 0;
1003 cupsArrayRemove(ppd->marked, oldc);
1013 ppd->sizes[j].marked = !_cups_strcasecmp(ppd->sizes[j].name,
1028 if ((oldc = (ppd_choice_t *)cupsArrayFind(ppd->marked, &key)) != NULL)
1030 oldc->marked = 0;
1031 cupsArrayRemove(ppd->marked, oldc);
1040 if ((oldc = (ppd_choice_t *)cupsArrayFind(ppd->marked, &key)) != NULL)
1042 oldc->marked = 0;
1043 cupsArrayRemove(ppd->marked, oldc);
1061 if ((oldc = (ppd_choice_t *)cupsArrayFind(ppd->marked, &key)) != NULL)
1063 oldc->marked = 0;
1064 cupsArrayRemove(ppd->marked, oldc);
1082 if ((oldc = (ppd_choice_t *)cupsArrayFind(ppd->marked, &key)) != NULL)
1084 oldc->marked = 0;
1085 cupsArrayRemove(ppd->marked, oldc);
1093 c->marked = 1;
1095 cupsArrayAdd(ppd->marked, c);