Lines Matching full:option
26 # use the "--bootstrap" option to do this.
92 # A raw "--" signals the end of option processing.
97 # Parse the option into components.
101 # Option has the form "--option=value".
102 option="${optionBeforeValue}"
106 option=`expr -- "${origOption}" : '--\(.*\)'`
108 # Not an option.
111 # Option has the form "--option".
117 # Interpret the option
118 if [ "${option}" = 'build-dir' -a "${hasValue}" = 'yes' ]; then
120 elif [ "${option}" = 'dexopt' -a "${hasValue}" = 'yes' ]; then
122 elif [ "${option}" = 'boot-dir' -a "${hasValue}" = 'yes' ]; then
124 elif [ "${option}" = 'product-dir' -a "${hasValue}" = 'yes' ]; then
126 elif [ "${option}" = 'boot-jars' -a "${hasValue}" = 'yes' ]; then
128 elif [ "${option}" = 'bootstrap' -a "${hasValue}" = 'no' ]; then
130 elif [ "${option}" = 'verify' -a "${hasValue}" = 'yes' ]; then
132 elif [ "${option}" = 'optimize' -a "${hasValue}" = 'yes' ]; then
134 elif [ "${option}" = 'no-register-maps' -a "${hasValue}" = 'no' ]; then
136 elif [ "${option}" = 'uniprocessor' -a "${hasValue}" = 'no' ]; then
139 echo "unknown option: ${origOption}" 1>&2
179 # Sanity-check and expand the verify option.
191 # Sanity-check and expand the optimize option.
220 # There was an error during option processing.