HomeSort by relevance Sort by last modified time
    Searched full:overwrite (Results 201 - 225 of 2017) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium-trace/catapult/third_party/typ/typ/
arg_parser.py 155 self.add_argument('--overwrite', action='store_true',
158 self.add_argument('--no-overwrite', action='store_false',
159 dest='overwrite', default=None,
206 if rargs.overwrite is None:
207 rargs.overwrite = self._host.stdout.isatty() and not rargs.verbose
  /external/emma/core/java12/com/vladium/util/
Files.java 246 * 'target' exists and 'overwrite' is false, the method is a no-op. No exceptions are
254 * if 'overwrite' is true]
255 * @param overwrite if 'true', forces an existing target to be deleted
260 public static boolean renameFile (final File source, final File target, final boolean overwrite)
268 if (! (targetExists = target.exists ()) || overwrite)
  /external/lz4/programs/
lz4cli.c 157 DISPLAY( " -f : overwrite output without prompting \n");
186 DISPLAY( " -y : overwrite output without prompting \n");
222 DISPLAY( "2 : compress 'filename' in high compression mode, overwrite output if exists\n");
310 if (*argument=='y') { LZ4IO_setOverwrite(1); continue; } /* -y (answer 'yes' to overwrite permission) */
349 /* Overwrite */
lz4io.c 128 static int overwrite = 1; variable
167 /* Default setting : overwrite = 1; return : overwrite mode (0/1) */
170 overwrite = (yes!=0);
171 return overwrite;
254 if (!overwrite)
258 DISPLAYLEVEL(2, "Overwrite ? (Y/N) : ");
  /external/zopfli/src/zopflipng/
zopflipng_bin.cc 118 "Optimize a file and overwrite if smaller: zopflipng infile.png"
145 bool always_zopflify = false; // overwrite file even if we have bigger result
146 bool yes = false; // do not ask to overwrite files
347 // In that case, do not overwrite it. This behaviour can be removed by
364 printf("File %s exists, overwrite? (y/N) ", out_filename.c_str());
  /prebuilts/go/darwin-x86/src/archive/tar/
writer.go 179 // keep a reference to the filename to allow to overwrite it later if we detect that we can use ustar longnames instead of pax
206 // keep a reference to the prefix to allow to overwrite it later if we detect that we can use ustar longnames instead of pax
361 overwrite := false
364 overwrite = true
368 if err == nil && overwrite {
  /prebuilts/go/linux-x86/src/archive/tar/
writer.go 179 // keep a reference to the filename to allow to overwrite it later if we detect that we can use ustar longnames instead of pax
206 // keep a reference to the prefix to allow to overwrite it later if we detect that we can use ustar longnames instead of pax
361 overwrite := false
364 overwrite = true
368 if err == nil && overwrite {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 399 * parameters). This option will overwrite the property if receiver
401 * properties will be applied and _will_ overwrite properties in
409 * overwrite an existing property in the receiver. If true
411 * be applied and will overwrite an existing property in
441 * in the supplier will be used unless it would overwrite an existing
443 * parameter, all properties will be applied and will overwrite an
461 * will overwrite those in earlier objects.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/dynamodb2/
test_highlevel.py 128 # Additionally, test the overwrite behavior.
152 # ...overwrite the data with what's in memory.
156 # ... so we force an overwrite.
157 self.assertTrue(client_2_jane.save(overwrite=True))
170 self.assertTrue(jane.save(overwrite=True))
184 # No ``overwrite`` needed due to new data.
203 self.assertTrue(jane.save(overwrite=True))
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 40 // Overwrite terminator
93 // Overwrite the terminating '\0' and hit unallocated memory.
113 // Overwrite the terminating '\0' and hit unallocated memory.
135 // Overwrite the terminating '\0' character and hit unallocated memory.
171 // Overwrite terminator in from
200 // Overwrite the terminator and hit not allocated memory.
216 // Overwrite the terminator and hit not allocated memory.
  /external/icu/icu4c/source/common/
utrie.cpp 262 uint32_t value, uint32_t initialValue, UBool overwrite) {
267 if(overwrite) {
282 utrie_setRange32(UNewTrie *trie, UChar32 start, UChar32 limit, uint32_t value, UBool overwrite) {
286 * fill around existing values if any, if(overwrite)
314 value, initialValue, overwrite);
318 value, initialValue, overwrite);
340 utrie_fillBlock(trie->data+block, 0, UTRIE_DATA_BLOCK_LENGTH, value, initialValue, overwrite);
341 } else if(trie->data[-block]!=value && (block==0 || overwrite)) {
368 utrie_fillBlock(trie->data+block, 0, rest, value, initialValue, overwrite);
    [all...]
  /external/autotest/client/common_lib/
global_config.py 247 # overwrite whats in config with whats in override_config
269 # overwrite the value in global config.
278 # this will overwrite anything that is found in the
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessor.java 166 // for non-overwrite modes output directory must not overlap
262 protected File m_outDir; // required to be non-null for run(), unless output mode is 'overwrite'
282 public static final OutMode OUT_MODE_OVERWRITE = new OutMode ("overwrite");
  /external/icu/icu4c/source/test/cintltst/
trie2test.c 32 UBool overwrite; member in struct:SetRange
685 /* overwrite the storage that is not supposed to be needed */
804 UBool overwrite; local
832 overwrite=setRanges[i].overwrite;
833 if((limit-start)==1 && overwrite) {
836 utrie2_setRange32(trie, start, limit-1, value, overwrite, &errorCode);
1291 UBool overwrite, ok; local
    [all...]
  /external/libxml2/doc/
xmlcatalog.1 71 option will not overwrite
116 option will not overwrite
180 option will not overwrite
xmlcatalog_man.xml 131 used. The <option>--add</option> option will not overwrite
177 option will not overwrite <replaceable>CATALOGFILE</replaceable>,
272 used. The <option>--add</option> option will not overwrite
  /external/skia/platform_tools/android/gyp_gen/
makefile_writer.py 21 append: Whether to append to the variable or overwrite it.
45 append: Whether to append to each makefile variable or overwrite it.
53 # the makefile and not overwrite them.
  /frameworks/support/compat/java/android/support/v4/widget/
TextViewCompat.java 193 * Calling this method will overwrite any Drawables previously set using
213 * Calling this method will overwrite any Drawables previously set using
233 * Calling this method will overwrite any Drawables previously set using
  /bionic/linker/
Android.mk 30 # -shared is used to overwrite the -Bstatic and -static
  /cts/hostsidetests/theme/
README 42 reference images are saved in assets/<api>/<dpi>.zip and will overwrite
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstInteger.java 61 * of guarantee about ==, and it's okay to overwrite existing
  /dalvik/dx/src/com/android/dx/rop/cst/
CstInteger.java 61 * of guarantee about ==, and it's okay to overwrite existing
  /external/c-ares/
README 40 will overwrite the distributed ares_build.h file with one that is suitable
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
dynamodb_load 22 items present in the data files will overwrite the table's contents.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
test_encryption.py 78 # now overwrite that same key with encrypted data

Completed in 1804 milliseconds

1 2 3 4 5 6 7 891011>>