Lines Matching defs:cp

309         const char* cp = argv[0] +1;
311 while (*cp != '\0') {
312 switch (*cp) {
522 if (strcmp(cp, "-debug-mode") == 0) {
524 } else if (strcmp(cp, "-min-sdk-version") == 0) {
533 } else if (strcmp(cp, "-target-sdk-version") == 0) {
542 } else if (strcmp(cp, "-max-sdk-version") == 0) {
551 } else if (strcmp(cp, "-max-res-version") == 0) {
560 } else if (strcmp(cp, "-version-code") == 0) {
569 } else if (strcmp(cp, "-version-name") == 0) {
578 } else if (strcmp(cp, "-replace-version") == 0) {
580 } else if (strcmp(cp, "-values") == 0) {
582 } else if (strcmp(cp, "-include-meta-data") == 0) {
584 } else if (strcmp(cp, "-custom-package") == 0) {
593 } else if (strcmp(cp, "-extra-packages") == 0) {
602 } else if (strcmp(cp, "-generate-dependencies") == 0) {
604 } else if (strcmp(cp, "-utf16") == 0) {
606 } else if (strcmp(cp, "-preferred-density") == 0) {
615 } else if (strcmp(cp, "-split") == 0) {
624 } else if (strcmp(cp, "-feature-of") == 0) {
633 } else if (strcmp(cp, "-feature-after") == 0) {
642 } else if (strcmp(cp, "-rename-manifest-package") == 0) {
651 } else if (strcmp(cp, "-rename-instrumentation-target-package") == 0) {
660 } else if (strcmp(cp, "-auto-add-overlay") == 0) {
662 } else if (strcmp(cp, "-error-on-failed-insert") == 0) {
664 } else if (strcmp(cp, "-error-on-missing-config-entry") == 0) {
666 } else if (strcmp(cp, "-output-text-symbols") == 0) {
675 } else if (strcmp(cp, "-product") == 0) {
684 } else if (strcmp(cp, "-non-constant-id") == 0) {
686 } else if (strcmp(cp, "-skip-symbols-without-default-localization") == 0) {
688 } else if (strcmp(cp, "-shared-lib") == 0) {
691 } else if (strcmp(cp, "-app-as-shared-lib") == 0) {
694 } else if (strcmp(cp, "-no-crunch") == 0) {
696 } else if (strcmp(cp, "-ignore-assets") == 0) {
705 } else if (strcmp(cp, "-pseudo-localize") == 0) {
707 } else if (strcmp(cp, "-no-version-vectors") == 0) {
709 } else if (strcmp(cp, "-no-version-transitions") == 0) {
711 } else if (strcmp(cp, "-private-symbols") == 0) {
722 fprintf(stderr, "ERROR: Unknown option '-%s'\n", cp);
726 cp += strlen(cp) - 1;
729 fprintf(stderr, "ERROR: Unknown flag '-%c'\n", *cp);
734 cp++;