Home | History | Annotate | Download | only in aapt

Lines Matching refs:cp

272         const char* cp = argv[0] +1;
274 while (*cp != '\0') {
275 switch (*cp) {
474 if (strcmp(cp, "-debug-mode") == 0) {
476 } else if (strcmp(cp, "-min-sdk-version") == 0) {
485 } else if (strcmp(cp, "-target-sdk-version") == 0) {
494 } else if (strcmp(cp, "-max-sdk-version") == 0) {
503 } else if (strcmp(cp, "-max-res-version") == 0) {
512 } else if (strcmp(cp, "-version-code") == 0) {
521 } else if (strcmp(cp, "-version-name") == 0) {
530 } else if (strcmp(cp, "-values") == 0) {
532 } else if (strcmp(cp, "-custom-package") == 0) {
541 } else if (strcmp(cp, "-extra-packages") == 0) {
550 } else if (strcmp(cp, "-generate-dependencies") == 0) {
552 } else if (strcmp(cp, "-utf16") == 0) {
554 } else if (strcmp(cp, "-preferred-configurations") == 0) {
563 } else if (strcmp(cp, "-rename-manifest-package") == 0) {
572 } else if (strcmp(cp, "-rename-instrumentation-target-package") == 0) {
581 } else if (strcmp(cp, "-auto-add-overlay") == 0) {
583 } else if (strcmp(cp, "-error-on-failed-insert") == 0) {
585 } else if (strcmp(cp, "-output-text-symbols") == 0) {
594 } else if (strcmp(cp, "-product") == 0) {
603 } else if (strcmp(cp, "-non-constant-id") == 0) {
605 } else if (strcmp(cp, "-no-crunch") == 0) {
607 } else if (strcmp(cp, "-ignore-assets") == 0) {
617 fprintf(stderr, "ERROR: Unknown option '-%s'\n", cp);
621 cp += strlen(cp) - 1;
624 fprintf(stderr, "ERROR: Unknown flag '-%c'\n", *cp);
629 cp++;