Lines Matching refs:cp
273 const char* cp = argv[0] +1;
275 while (*cp != '\0') {
276 switch (*cp) {
475 if (strcmp(cp, "-debug-mode") == 0) {
477 } else if (strcmp(cp, "-min-sdk-version") == 0) {
486 } else if (strcmp(cp, "-target-sdk-version") == 0) {
495 } else if (strcmp(cp, "-max-sdk-version") == 0) {
504 } else if (strcmp(cp, "-max-res-version") == 0) {
513 } else if (strcmp(cp, "-version-code") == 0) {
522 } else if (strcmp(cp, "-version-name") == 0) {
531 } else if (strcmp(cp, "-values") == 0) {
533 } else if (strcmp(cp, "-custom-package") == 0) {
542 } else if (strcmp(cp, "-extra-packages") == 0) {
551 } else if (strcmp(cp, "-generate-dependencies") == 0) {
553 } else if (strcmp(cp, "-utf16") == 0) {
555 } else if (strcmp(cp, "-preferred-configurations") == 0) {
564 } else if (strcmp(cp, "-rename-manifest-package") == 0) {
573 } else if (strcmp(cp, "-rename-instrumentation-target-package") == 0) {
582 } else if (strcmp(cp, "-auto-add-overlay") == 0) {
584 } else if (strcmp(cp, "-error-on-failed-insert") == 0) {
586 } else if (strcmp(cp, "-output-text-symbols") == 0) {
595 } else if (strcmp(cp, "-product") == 0) {
604 } else if (strcmp(cp, "-non-constant-id") == 0) {
606 } else if (strcmp(cp, "-no-crunch") == 0) {
608 } else if (strcmp(cp, "-ignore-assets") == 0) {
618 fprintf(stderr, "ERROR: Unknown option '-%s'\n", cp);
622 cp += strlen(cp) - 1;
625 fprintf(stderr, "ERROR: Unknown flag '-%c'\n", *cp);
630 cp++;