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

1 2

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
CommentGenerating.py 31 from Library.DataType import END_OF_LINE
46 TailCommentLines = TailCommentLines.rstrip(END_OF_LINE)
48 (END_OF_LINE + LeadingSpaceNum * TAB_SPACE_SPLIT + TAB_SPACE_SPLIT*2 + TAB_SPECIAL_COMMENT + \
49 TAB_SPACE_SPLIT).join(GetSplitValueList(TailCommentLines, END_OF_LINE))
60 CommentLines = CommentLines.rstrip(END_OF_LINE)
61 CommentStr = TAB_SPECIAL_COMMENT + TAB_SPACE_SPLIT + (END_OF_LINE + TAB_COMMENT_SPLIT + TAB_SPACE_SPLIT).join\
62 (GetSplitValueList(CommentLines, END_OF_LINE)) + END_OF_LINE
80 if CommentLines.endswith(END_OF_LINE):
85 CommentLines.replace(END_OF_LINE, '') + END_OF_LINE
    [all...]
Misc.py 42 from Library.DataType import END_OF_LINE
711 LineList = GetSplitValueList(String, END_OF_LINE)
715 ReturnString += ValueList[0] + END_OF_LINE
717 ReturnString += ValueList[1] + END_OF_LINE
    [all...]
DataType.py 206 END_OF_LINE = '\n'
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfSourceSectionParser.py 59 SectionContent += SrcLineContent + DT.END_OF_LINE
71 SectionContent += SrcLineContent + DT.END_OF_LINE
80 LineCommentContent += Item[0] + DT.END_OF_LINE
120 SectionContent += SrcLineContent + DT.END_OF_LINE
InfDefineSectionParser.py 106 SectionContent += LineContent + DT.END_OF_LINE
118 SectionContent += LineContent + DT.END_OF_LINE
127 LineCommentContent += Item[0] + DT.END_OF_LINE
159 SectionContent += LineContent + DT.END_OF_LINE
InfBinarySectionParser.py 85 AllSectionContent += BinLineContent + DT.END_OF_LINE
96 AllSectionContent += BinLineContent + DT.END_OF_LINE
106 LineCommentContent += Item[0] + DT.END_OF_LINE
140 AllSectionContent += LineContent + DT.END_OF_LINE
InfBuildOptionSectionParser.py 54 SectionContent += LineContent + DT.END_OF_LINE
60 SectionContent += LineContent + DT.END_OF_LINE
107 SectionContent += ValueList[0] + EqualString + ValueList[1] + TailComments + DT.END_OF_LINE
InfPackageSectionParser.py 83 LineCommentContent += Item[0] + DT.END_OF_LINE
InfLibrarySectionParser.py 90 LineCommentContent += Item[0] + DT.END_OF_LINE
InfGuidPpiProtocolSectionParser.py 223 UserExtensionContent += LineContent + DT.END_OF_LINE
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfDepexObject.py 138 DepexString = DepexString + LineContent + DT.END_OF_LINE
141 if DepexString.endswith(DT.END_OF_LINE):
151 HelpString = HelpString + HelpLine + DT.END_OF_LINE
152 if HelpString.endswith(DT.END_OF_LINE):
InfGuidObject.py 132 CommentItemHelpText = DT.END_OF_LINE
158 CommentItemHelpText = PreHelpText + DT.END_OF_LINE + CommentItemHelpText
166 if CommentItemHelpText == '' or CommentItemHelpText.endswith(DT.END_OF_LINE):
167 CommentItemHelpText = CommentItemHelpText.strip(DT.END_OF_LINE)
183 if PreHelpText == '' or PreHelpText.endswith(DT.END_OF_LINE):
184 PreHelpText = PreHelpText.strip(DT.END_OF_LINE)
194 if CommentItemHelpText == '' or CommentItemHelpText.endswith(DT.END_OF_LINE):
195 CommentItemHelpText = CommentItemHelpText.strip(DT.END_OF_LINE)
InfProtocolObject.py 55 CommentItemHelpText = DT.END_OF_LINE
82 CommentItemHelpText = PreHelpText + DT.END_OF_LINE + CommentItemHelpText
105 if PreHelpText == '' or PreHelpText.endswith(DT.END_OF_LINE):
106 PreHelpText += DT.END_OF_LINE
InfPpiObject.py 57 CommentItemHelpText = DT.END_OF_LINE
92 CommentItemHelpText = PreHelpText + DT.END_OF_LINE + CommentItemHelpText
117 if PreHelpText == '' or PreHelpText.endswith(DT.END_OF_LINE):
118 PreHelpText += DT.END_OF_LINE
InfPcdObject.py 91 FFEHelpText = FFEHelpText + DT.END_OF_LINE + CommentItemHelpText
102 CommentItemHelpText = DT.END_OF_LINE
127 CommentItemHelpText = PreHelpText + DT.END_OF_LINE + CommentItemHelpText
147 if PreHelpText == '' or PreHelpText.endswith(DT.END_OF_LINE):
148 PreHelpText += DT.END_OF_LINE
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
MimeBodyPart.java 38 private static final Pattern END_OF_LINE = Pattern.compile("\r?\n");
171 extendedHeader.setHeader(name, END_OF_LINE.matcher(value).replaceAll(""));
MimeMessage.java 86 private static final Pattern END_OF_LINE = Pattern.compile("\r?\n");
472 extendedHeader.setHeader(name, END_OF_LINE.matcher(value).replaceAll(""));
502 for (final String header : END_OF_LINE.split(headers)) {
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeBodyPart.java 42 private static final Pattern END_OF_LINE = Pattern.compile("\r?\n");
177 mExtendedHeader.setHeader(name, END_OF_LINE.matcher(value).replaceAll(""));
MimeMessage.java 87 private static final Pattern END_OF_LINE = Pattern.compile("\r?\n");
462 mExtendedHeader.setHeader(name, END_OF_LINE.matcher(value).replaceAll(""));
492 for (final String header : END_OF_LINE.split(headers)) {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/
GenDecFile.py 35 from Library.DataType import END_OF_LINE
147 Content += END_OF_LINE + END_OF_LINE
148 SectionComment = TAB_COMMENT_SPLIT + END_OF_LINE
149 SectionComment += TAB_COMMENT_SPLIT + TAB_SPACE_SPLIT + TAB_PCD_ERROR_SECTION_COMMENT + END_OF_LINE
150 SectionComment += TAB_COMMENT_SPLIT + END_OF_LINE
162 TAB_SPLIT + TokenSpcCNameItem + TAB_SECTION_END + END_OF_LINE
170 PcdErrorMsg + END_OF_LINE
675 CommentStr += ValidValueRange + END_OF_LINE
684 CommentStr += TAB_COMMA_SPLIT.join(ValidValueList) + END_OF_LINE
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/session/
DefaultSession.java 59 private static final String END_OF_LINE = "\r\n";
219 controlConnectionWriter.write(line + END_OF_LINE);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/session/
DefaultSession.java 59 private static final String END_OF_LINE = "\r\n";
223 controlConnectionWriter.write(line + END_OF_LINE);
  /external/v8/src/regexp/
regexp-ast.cc 206 case RegExpAssertion::END_OF_LINE:
regexp-ast.h 268 END_OF_LINE,
regexp-parser.cc 263 multiline() ? RegExpAssertion::END_OF_LINE
    [all...]

Completed in 242 milliseconds

1 2