Searched refs:TextFile (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/distutils/tests/ |
D | test_text_file.py | 4 from distutils.text_file import TextFile 62 in_file = TextFile(filename, strip_comments=0, skip_blanks=0, 69 in_file = TextFile(filename, strip_comments=1, skip_blanks=0, 76 in_file = TextFile(filename, strip_comments=0, skip_blanks=1, 83 in_file = TextFile(filename) 89 in_file = TextFile(filename, strip_comments=1, skip_blanks=1, 96 in_file = TextFile(filename, strip_comments=1, skip_blanks=1,
|
/third_party/icu/icu4c/source/test/intltest/ |
D | textfile.cpp | 23 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) : in TextFile() function in TextFile 69 TextFile::~TextFile() { in ~TextFile() 78 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) { in readLine() 113 UBool TextFile::readLineSkippingComments(UnicodeString& line, UErrorCode& ec, in readLineSkippingComments() 134 UBool TextFile::setBuffer(int32_t index, char c, UErrorCode& ec) { in setBuffer() 151 UBool TextFile::ensureCapacity(int32_t mincapacity) { in ensureCapacity()
|
D | textfile.h | 23 class TextFile { 30 TextFile(const char* name, const char* encoding, UErrorCode& ec); 32 virtual ~TextFile(); 70 inline int32_t TextFile::getLineNumber() const { in getLineNumber()
|
D | tokiter.h | 18 class TextFile; variable 36 TokenIterator(TextFile* r); 65 TextFile* reader; // alias
|
D | tokiter.cpp | 19 TokenIterator::TokenIterator(TextFile* r) { in TokenIterator()
|
D | thcoll.cpp | 87 TextFile names("TestNames_Thai.txt", "UTF16LE", ec); in TestNamesList() 134 TextFile riwords("riwords.txt", "UTF8", ec); in TestDictionary()
|
D | numfmtst.cpp | 2601 TextFile reader("NumberFormatTestCases.txt", "UTF8", ec); in TestCases()
|
/third_party/python/Lib/distutils/ |
D | extension.py | 147 from distutils.text_file import TextFile 155 file = TextFile(filename,
|
D | sysconfig.py | 83 from distutils.text_file import TextFile 84 fp = TextFile(fn, strip_comments=1, skip_blanks=1, join_lines=1, errors="surrogateescape")
|
D | text_file.py | 10 class TextFile: class
|
/third_party/python/Lib/distutils/command/ |
D | sdist.py | 14 from distutils.text_file import TextFile 331 template = TextFile(self.template, strip_comments=1, skip_blanks=1,
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 1567 :mod:`distutils.text_file` --- The TextFile class 1571 :synopsis: Provides the TextFile class, a simple interface to text files 1574 This module provides the :class:`TextFile` class, which gives an interface to 1579 .. class:: TextFile([filename=None, file=None, **options]) 1593 :class:`TextFile` instances are create with either *filename*, *file*, or both. 1597 *filename*, so that :class:`TextFile` can include it in warning messages. If 1598 *file* is not supplied, :class:`TextFile` creates its own using the 1657 .. method:: TextFile.open(filename) 1663 .. method:: TextFile.close() 1669 .. method:: TextFile.warn(msg[,line=None]) [all …]
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 1118 # but without the parsing capabilities of distutils.text_file.TextFile.
|