HomeSort by relevance Sort by last modified time
    Searched refs:inplace (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/
vc98_swap.py 13 for l in fileinput.input(sp, inplace = 1) :
25 for l in fileinput.input(sp, inplace = 1) :
  /external/chromium_org/v8/tools/
disasm.py 56 def GetDisasmLines(filename, offset, size, arch, inplace, arch_flags=""):
58 if not inplace:
ll_prof.py 195 inplace = False
198 inplace = True
204 inplace)
    [all...]
  /external/v8/tools/
disasm.py 56 def GetDisasmLines(filename, offset, size, arch, inplace):
58 if not inplace:
ll_prof.py 179 inplace = False
182 inplace = True
188 inplace)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fileinput.py 56 Optional in-place filtering: if the keyword argument inplace=1 is
91 def input(files=None, inplace=0, backup="", bufsize=0,
93 """input([files[, inplace[, backup[, mode[, openhook]]]]])
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]])
197 def __init__(self, files=None, inplace=0, backup="", bufsize=0,
209 self._inplace = inplace
227 if inplace and openhook:
228 raise ValueError("FileInput cannot use an opening hook in inplace mode")
399 inplace =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fileinput.py 56 Optional in-place filtering: if the keyword argument inplace=1 is
91 def input(files=None, inplace=0, backup="", bufsize=0,
93 """input([files[, inplace[, backup[, mode[, openhook]]]]])
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
185 """class FileInput([files[, inplace[, backup[, mode[, openhook]]]]])
197 def __init__(self, files=None, inplace=0, backup="", bufsize=0,
209 self._inplace = inplace
227 if inplace and openhook:
228 raise ValueError("FileInput cannot use an opening hook in inplace mode")
399 inplace =
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
deps.py 55 # inplace=1 creates a backup file and re-directs stdout to the file
56 for line in fileinput.FileInput(self._path, inplace=1):
  /external/clang/www/
builtins.py 153 for line in fileinput.input(inplace=1):
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
DexFile.java 153 private boolean inplace = false; field in class:DexFile
500 * If both SortAllItems and Inplace are true, Inplace takes precedence
514 * If both SortAllItems and Inplace are true, Inplace takes precedence
554 * If both SortAllItems and Inplace are true, Inplace takes precedence
559 return this.inplace;
593 * If both SortAllItems and Inplace are true, Inplace takes precedenc
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_ext.py 286 # returns wrong result with --inplace
297 cmd.inplace = 1
308 cmd.inplace = 0
317 # inplace = 0, cmd.package = 'bar'
325 # inplace = 1, cmd.package = 'bar'
326 cmd.inplace = 1
343 cmd.inplace = 1
351 # building lxml.etree not inplace
352 cmd.inplace = 0
358 # building twisted.runner.portmap not inplace
    [all...]
setuptools_build_ext.py 46 """Build extensions in build directory, then copy if --inplace"""
47 old_inplace, self.inplace = self.inplace, 0
49 self.inplace = old_inplace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_ext.py 286 # returns wrong result with --inplace
297 cmd.inplace = 1
308 cmd.inplace = 0
317 # inplace = 0, cmd.package = 'bar'
325 # inplace = 1, cmd.package = 'bar'
326 cmd.inplace = 1
343 cmd.inplace = 1
351 # building lxml.etree not inplace
352 cmd.inplace = 0
358 # building twisted.runner.portmap not inplace
    [all...]
setuptools_build_ext.py 46 """Build extensions in build directory, then copy if --inplace"""
47 old_inplace, self.inplace = self.inplace, 0
49 self.inplace = old_inplace
  /external/eigen/unsupported/Eigen/src/FFT/
ei_fftw_impl.h 241 bool inplace = (dst==src); local
243 int64_t key = ( (nfft<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1;
250 bool inplace = (dst==src); local
252 int64_t key = ( ( (((int64_t)n0) << 30)|(n1<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1 ) + 1;
  /external/harfbuzz/src/
harfbuzz-buffer-private.h 67 HB_Bool inplace );
harfbuzz-buffer.c 43 * - replace_glyph() is called with inplace=TRUE
49 * As soon an add_output_glyph[s]() or replace_glyph() with inplace=FALSE is
354 HB_Bool inplace )
359 if ( inplace )
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer-private.h 67 HB_Bool inplace );
harfbuzz-buffer.c 43 * - replace_glyph() is called with inplace=TRUE
49 * As soon an add_output_glyph[s]() or replace_glyph() with inplace=FALSE is
354 HB_Bool inplace )
359 if ( inplace )
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fileinput.py 102 print '%s. Inplace (bs=%s)' % (start+5, bs)
105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs)
202 # cannot use openhook and inplace mode
203 fi = FileInput(inplace=1, openhook=lambda f,m: None)
204 self.fail("FileInput should raise if both inplace "
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fileinput.py 102 print '%s. Inplace (bs=%s)' % (start+5, bs)
105 fi = FileInput(files=(t1, t2, t3, t4), inplace=1, bufsize=bs)
202 # cannot use openhook and inplace mode
203 fi = FileInput(inplace=1, openhook=lambda f,m: None)
204 self.fail("FileInput should raise if both inplace "
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/110/1/.cp/ant_tasks/
publisher-ant.jar 
  /external/opencv/cv/src/
cvmorph.cpp 832 bool inplace; local
    [all...]
  /external/opencv/cxcore/src/
cxcopy.cpp 959 int inplace = src->data.ptr == dst->data.ptr; local
968 if( flip_mode < 0 && !inplace )
976 if( flip_mode < 0 && inplace )
    [all...]
  /external/openssh/
ssh-keygen.c 976 int c, skip = 0, inplace = 0, num = 0, invalid = 0, has_unhashed = 0; local
1008 inplace = 1;
1029 if (inplace)
1133 if (inplace) {
1142 if (inplace) {
    [all...]

Completed in 789 milliseconds

1 2