Home | History | Annotate | Download | only in build

Lines Matching full:replace

82 This script also has the ability to replace certain substrings in the input.
84 argument "--replace=<(foo)=bar" then all instances of "<(foo)" in strings in
89 "--replace=<(foo)=bar"],
138 return values.replace(search_for, replace_with)
157 parser.add_option("-r", "--replace", action="append",
165 if options.replace:
167 for replace in options.replace:
168 split = replace.split('=')
169 # Allow "foo=" to replace with nothing.