Home
last modified time | relevance | path

Searched refs:fromfile (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Tools/scripts/
Ddiff.py31 fromfile, tofile = args
33 fromdate = time.ctime(os.stat(fromfile).st_mtime)
35 fromlines = open(fromfile, 'U').readlines()
39 diff = difflib.unified_diff(fromlines, tolines, fromfile, tofile, fromdate, todate, n=n)
43 …diff = difflib.HtmlDiff().make_file(fromlines,tolines,fromfile,tofile,context=options.c,numlines=n)
45 diff = difflib.context_diff(fromlines, tolines, fromfile, tofile, fromdate, todate, n=n)
/external/clang/utils/check_cfc/
Dobj_diff.py39 def first_diff(a, b, fromfile, tofile): argument
60 fromfile,
/external/python/cpython2/Doc/tools/extensions/
Dc_annotations.py38 def fromfile(cls, filename): member in Annotations
102 refcounts = Annotations.fromfile(
/external/ltp/testcases/realtime/tools/
Dftqviz.py68 t = fromfile(timefile, dtype=int64, sep='\n')
69 x = fromfile(countfile, dtype=int64, sep='\n')
/external/pdfium/testing/tools/
Dtext_diff.py21 str1, str2, fromfile=filename1, tofile=filename2)
/external/python/cpython2/Doc/library/
Ddifflib.rst139 .. function:: context_diff(a, b[, fromfile][, tofile][, fromfiledate][, tofiledate][, n][, lineterm…
158 times. Any or all of these may be specified using strings for *fromfile*,
165 >>> for line in context_diff(s1, s2, fromfile='before.py', tofile='after.py'):
273 .. function:: unified_diff(a, b[, fromfile][, tofile][, fromfiledate][, tofiledate][, n][, lineterm…
293 times. Any or all of these may be specified using strings for *fromfile*,
300 >>> for line in unified_diff(s1, s2, fromfile='before.py', tofile='after.py'):
734 usage = "usage: %prog [options] fromfile tofile"
752 parser.error("need to specify both a fromfile and tofile")
755 fromfile, tofile = args # as specified in the usage string
758 fromdate = time.ctime(os.stat(fromfile).st_mtime)
[all …]
Darray.rst146 .. method:: array.fromfile(f, n)
164 values (as if it had been read from a file using the :meth:`fromfile` method).
197 Use the :meth:`fromfile` method.
/external/python/cpython2/Lib/test/
Dtest_array.py196 self.assertRaises(TypeError, b.fromfile)
199 b.fromfile,
202 b.fromfile(f, len(self.example))
205 b.fromfile(f, len(self.example))
207 self.assertRaises(EOFError, b.fromfile, f, 1)
220 self.assertRaises(IOError, a.fromfile, f, len(self.example))
233 b.fromfile(f, len(self.example))
236 b.fromfile(f, len(self.example))
Dregrtest.py240 exclude=False, single=False, randomize=False, fromfile=None, argument
307 fromfile = a
376 if single and fromfile:
413 if fromfile:
415 fp = open(os.path.join(test_support.SAVEDCWD, fromfile))
Dtest_pydoc.py283 diffs = difflib.unified_diff(lines1, lines2, n=0, fromfile='expected',
/external/v8/tools/clang/translation_unit/
Dtest_translation_unit.py83 fromfile=os.path.relpath(expected),
/external/curl/lib/
Dcookie.c951 bool fromfile=TRUE; in Curl_cookie_init() local
971 fromfile=FALSE; in Curl_cookie_init()
1006 if(fromfile) in Curl_cookie_init()
1020 if(fromfile && fp) in Curl_cookie_init()
/external/parameter-framework/upstream/test/xml-generator/
Dtest.py82 fromfile="reference.xml",
/external/google-breakpad/src/third_party/libdisasm/swig/
DREADME46 >>> buf.fromfile( tgt, size )
/external/python/cpython2/Lib/
Ddifflib.py1156 def unified_diff(a, b, fromfile='', tofile='', fromfiledate='', argument
1203 yield '--- {}{}{}'.format(fromfile, fromdate, lineterm)
1240 def context_diff(a, b, fromfile='', tofile='', argument
1290 yield '*** {}{}{}'.format(fromfile, fromdate, lineterm)
Dwave.py247 data.fromfile(chunk.file.file, nitems)
/external/v8/tools/clang/scripts/
Dtest_tool.py163 fromfile=os.path.relpath(expected),
/external/v8/gypfiles/
Dlandmines.py142 fromfile='old_landmines', tofile='new_landmines',
/external/pcre/dist2/src/
Dpcre2grep.c2772 compile_pattern(patstr *p, int options, int popts, int fromfile, in compile_pattern() argument
2822 if (fromfile) in compile_pattern()
/external/python/cpython2/Misc/
DNEWS3988 - Issue #15324: Fix regrtest parsing of --fromfile and --randomize options.
5829 - Issue #5395: array.fromfile() would raise a spurious EOFError when an
DHISTORY10549 Carefully check for overflow when allocating the memory for fromfile
15895 methods are renamed to fromfile() and tofile().