Lines Matching refs:in_file

361 def ReadUCDLines(in_file, want_ranges=True, want_other=False,
367 for line in in_file:
450 def ParsePropertyAliases(in_file):
460 for data in ReadUCDLines(in_file, want_ranges=False,
568 def ParsePropertyValueAliases(in_file):
570 for data in ReadUCDLines(in_file, want_ranges=False,
631 def ParseBlocks(in_file):
632 for data in ReadUCDLines(in_file, want_missing=True):
654 def ParseUnicodeData(in_file):
658 for data in ReadUCDLines(in_file, want_missing=True):
773 def ParseNamesList(in_file):
775 for line in in_file:
800 def ParseNamedProperties(in_file):
805 for data in ReadUCDLines(in_file, want_missing=True):
816 def ParseOneProperty(in_file, pname):
820 for data in ReadUCDLines(in_file, want_missing=True):
828 def ParseBidiMirroring(in_file): ParseOneProperty(in_file, "bmg")
829 def ParseDerivedAge(in_file): ParseOneProperty(in_file, "age")
830 def ParseDerivedBidiClass(in_file): ParseOneProperty(in_file, "bc")
831 def ParseDerivedJoiningGroup(in_file): ParseOneProperty(in_file, "jg")
832 def ParseDerivedJoiningType(in_file): ParseOneProperty(in_file, "jt")
833 def ParseEastAsianWidth(in_file): ParseOneProperty(in_file, "ea")
834 def ParseGraphemeBreakProperty(in_file): ParseOneProperty(in_file, "GCB")
835 def ParseIndicPositionalCategory(in_file): ParseOneProperty(in_file, "InPC")
836 def ParseIndicSyllabicCategory(in_file): ParseOneProperty(in_file, "InSC")
837 def ParseLineBreak(in_file): ParseOneProperty(in_file, "lb")
838 def ParseScripts(in_file): ParseOneProperty(in_file, "sc")
839 def ParseScriptExtensions(in_file): ParseOneProperty(in_file, "scx")
840 def ParseSentenceBreak(in_file): ParseOneProperty(in_file, "SB")
841 def ParseVerticalOrientation(in_file): ParseOneProperty(in_file, "vo")
842 def ParseWordBreak(in_file): ParseOneProperty(in_file, "WB")
852 def ParseNameAliases(in_file):
865 for data in ReadUCDLines(in_file):
897 def ParseDerivedNumericValues(in_file):
906 for data in ReadUCDLines(in_file):
912 def ParseCaseFolding(in_file):
913 for data in ReadUCDLines(in_file, want_missing=True):
942 def ParseSpecialCasing(in_file):
943 for data in ReadUCDLines(in_file, want_missing=True):
964 def ParseBidiBrackets(in_file):
965 for data in ReadUCDLines(in_file, want_missing=True):
1474 with open(s, "r") as in_file:
1477 for line in in_file:
1533 with open(s, "r") as in_file, open(t, "w") as out_file:
1537 for line in in_file:
2210 in_file = codecs.open(path, "r", charset)
2211 with in_file:
2212 parser(in_file)