Lines Matching defs:cp

294         const char* cp = argv[0] +1;
296 while (*cp != '\0') {
297 switch (*cp) {
496 if (strcmp(cp, "-debug-mode") == 0) {
498 } else if (strcmp(cp, "-min-sdk-version") == 0) {
507 } else if (strcmp(cp, "-target-sdk-version") == 0) {
516 } else if (strcmp(cp, "-max-sdk-version") == 0) {
525 } else if (strcmp(cp, "-max-res-version") == 0) {
534 } else if (strcmp(cp, "-version-code") == 0) {
543 } else if (strcmp(cp, "-version-name") == 0) {
552 } else if (strcmp(cp, "-replace-version") == 0) {
554 } else if (strcmp(cp, "-values") == 0) {
556 } else if (strcmp(cp, "-include-meta-data") == 0) {
558 } else if (strcmp(cp, "-custom-package") == 0) {
567 } else if (strcmp(cp, "-extra-packages") == 0) {
576 } else if (strcmp(cp, "-generate-dependencies") == 0) {
578 } else if (strcmp(cp, "-utf16") == 0) {
580 } else if (strcmp(cp, "-preferred-density") == 0) {
589 } else if (strcmp(cp, "-split") == 0) {
598 } else if (strcmp(cp, "-feature-of") == 0) {
607 } else if (strcmp(cp, "-feature-after") == 0) {
616 } else if (strcmp(cp, "-rename-manifest-package") == 0) {
625 } else if (strcmp(cp, "-rename-instrumentation-target-package") == 0) {
634 } else if (strcmp(cp, "-auto-add-overlay") == 0) {
636 } else if (strcmp(cp, "-error-on-failed-insert") == 0) {
638 } else if (strcmp(cp, "-error-on-missing-config-entry") == 0) {
640 } else if (strcmp(cp, "-output-text-symbols") == 0) {
649 } else if (strcmp(cp, "-product") == 0) {
658 } else if (strcmp(cp, "-non-constant-id") == 0) {
660 } else if (strcmp(cp, "-shared-lib") == 0) {
663 } else if (strcmp(cp, "-no-crunch") == 0) {
665 } else if (strcmp(cp, "-ignore-assets") == 0) {
674 } else if (strcmp(cp, "-pseudo-localize") == 0) {
677 fprintf(stderr, "ERROR: Unknown option '-%s'\n", cp);
681 cp += strlen(cp) - 1;
684 fprintf(stderr, "ERROR: Unknown flag '-%c'\n", *cp);
689 cp++;