HomeSort by relevance Sort by last modified time
    Searched full:textfile (Results 1 - 25 of 49) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
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,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
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,
  /external/icu/icu4c/source/test/intltest/
textfile.h 21 class TextFile {
25 * ICU testdata directory. See textfile.cpp to determine if the
28 TextFile(const char* name, const char* encoding, UErrorCode& ec);
30 virtual ~TextFile();
68 inline int32_t TextFile::getLineNumber() const {
textfile.cpp 11 #include "textfile.h"
21 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) :
67 TextFile::~TextFile() {
76 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) {
111 UBool TextFile::readLineSkippingComments(UnicodeString& line, UErrorCode& ec,
132 UBool TextFile::setBuffer(int32_t index, char c, UErrorCode& ec) {
149 UBool TextFile::ensureCapacity(int32_t mincapacity) {
tokiter.h 16 class TextFile;
30 * TextFile, ignoring blank lines and comment lines (first
34 TokenIterator(TextFile* r);
63 TextFile* reader; // alias
tokiter.cpp 12 #include "textfile.h"
17 TokenIterator::TokenIterator(TextFile* r) {
thcoll.cpp 24 #include "textfile.h"
84 TextFile names("TestNames_Thai.txt", "UTF16LE", ec);
131 TextFile riwords("riwords.txt", "UTF8", ec);
Makefile.in 57 incaltst.o calcasts.o v32test.o uvectest.o textfile.o tokiter.o utxttest.o \
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
textView.py 69 textFile = codecs.open(filename, 'r')
71 textFile = open(filename, 'r')
78 return view_text(parent, title, textFile.read(), modal)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
textView.py 69 textFile = codecs.open(filename, 'r')
71 textFile = open(filename, 'r')
78 return view_text(parent, title, textFile.read(), modal)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
textView.py 69 textFile = codecs.open(filename, 'r')
71 textFile = open(filename, 'r')
78 return view_text(parent, title, textFile.read(), modal)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
textView.py 69 textFile = codecs.open(filename, 'r')
71 textFile = open(filename, 'r')
78 return view_text(parent, title, textFile.read(), modal)
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
ImageFactory.java 23 TEXTFILE = getImage("textfile24.png");
64 public ImageIcon TEXTFILE ;
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
text_file.py 3 provides the TextFile class, which gives an interface to text files
12 class TextFile:
29 TextFile (filename=None, file=None, **options)
34 recommended that you supply at least 'filename', so that TextFile
36 TextFile creates its own using the 'open()' builtin.
79 """Construct a new TextFile object. At least one of 'filename'
100 raise KeyError, "invalid TextFile option '%s'" % opt
extension.py 142 from distutils.text_file import TextFile
150 file = TextFile(filename,
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
text_file.py 3 provides the TextFile class, which gives an interface to text files
12 class TextFile:
29 TextFile (filename=None, file=None, **options)
34 recommended that you supply at least 'filename', so that TextFile
36 TextFile creates its own using the 'open()' builtin.
79 """Construct a new TextFile object. At least one of 'filename'
100 raise KeyError, "invalid TextFile option '%s'" % opt
extension.py 142 from distutils.text_file import TextFile
150 file = TextFile(filename,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
text_file.py 3 provides the TextFile class, which gives an interface to text files
12 class TextFile:
29 TextFile (filename=None, file=None, **options)
34 recommended that you supply at least 'filename', so that TextFile
36 TextFile creates its own using the 'open()' builtin.
79 """Construct a new TextFile object. At least one of 'filename'
100 raise KeyError, "invalid TextFile option '%s'" % opt
extension.py 142 from distutils.text_file import TextFile
150 file = TextFile(filename,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
text_file.py 3 provides the TextFile class, which gives an interface to text files
12 class TextFile:
29 TextFile (filename=None, file=None, **options)
34 recommended that you supply at least 'filename', so that TextFile
36 TextFile creates its own using the 'open()' builtin.
79 """Construct a new TextFile object. At least one of 'filename'
100 raise KeyError, "invalid TextFile option '%s'" % opt
extension.py 142 from distutils.text_file import TextFile
150 file = TextFile(filename,
  /external/tinyxml/
xmltest.cpp 811 FILE* textfile = fopen( "textfile.txt", "w" ); local
812 if ( textfile )
814 psg->Print( textfile, 0 );
815 fclose( textfile );
817 textfile = fopen( "textfile.txt", "r" );
818 assert( textfile );
819 if ( textfile )
822 fgets( buf, 1024, textfile );
833 FILE* textfile = fopen( "test5.xml", "w" ); local
846 FILE* textfile = fopen( "test6.xml", "w" ); local
    [all...]
  /external/ceres-solver/internal/ceres/
trust_region_strategy.h 90 dump_format_type(TEXTFILE) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
binhex.py 83 # Quick check for textfile
256 # XXXX Do textfile translation on non-mac systems
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
sdist.py 15 from distutils.text_file import TextFile
307 template = TextFile(self.template,

Completed in 3247 milliseconds

1 2