Searched refs:LineList (Results 1 – 16 of 16) sorted by relevance
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
D | Dictionary.py | 35 LineList = Line.split(KeySplitCharacter, 1) 36 if len(LineList) >= 2: 37 Key = LineList[0].split() 40 Dictionary[Key[0]] = LineList[1].replace('\\', '/').split(ValueSplitCharacter) 42 Dictionary[Key[0]] = LineList[1].strip().replace('\\', '/')
|
D | EdkIIWorkspace.py | 227 LineList = Line.split(KeySplitCharacter, 1) 228 if len(LineList) >= 2: 229 Key = LineList[0].split() 232 Dictionary[Key[0]] = LineList[1].replace('\\', '/').split(ValueSplitCharacter) 234 Dictionary[Key[0]] = LineList[1].strip().replace('\\', '/') 268 LineList = Line.split(KeySplitCharacter, 1) 269 if len(LineList) >= 2: 270 Key = LineList[0].split()
|
D | String.py | 167 LineList = Lines.splitlines() 168 for Line in LineList: 193 LineList = Lines.splitlines() 194 for Line in LineList: 429 LineList = Lines.split('\n') 430 for Line in LineList: 521 LineList = Line.split(KeySplitCharacter, 1) 522 if len(LineList) >= 2: 523 Key = LineList[0].split() 528 LineList[1] = CleanString(LineList[1], CommentCharacter) [all …]
|
D | TargetTxtClassObject.py | 94 LineList = Line.split(KeySplitCharacter, 1) 95 Key = LineList[0].strip() 96 if len(LineList) == 2: 97 Value = LineList[1].strip()
|
D | DecClassObject.py | 203 …LineList = GetSplitValueList(Line[len(TAB_SECTION_START):len(Line) - len(TAB_SECTION_END)], TAB_CO… 204 for Item in LineList:
|
D | Parsing.py | 550 LineList = Lines.split('\n') 551 for Line in LineList:
|
D | InfClassObject.py | 394 …LineList = GetSplitValueList(Line[len(TAB_SECTION_START):len(Line) - len(TAB_SECTION_END)], TAB_CO… 395 for Item in LineList:
|
D | DscClassObject.py | 1089 …LineList = GetSplitValueList(Line[len(TAB_SECTION_START):len(Line) - len(TAB_SECTION_END)], TAB_CO… 1090 for Item in LineList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
D | String.py | 97 LineList = Lines.splitlines() 98 for Line in LineList: 121 LineList = Lines.splitlines() 122 for Line in LineList: 363 LineList = Lines.split('\n') 364 for Line in LineList: 429 LineList = Line.split(KeySplitCharacter, 1) 430 if len(LineList) >= 2: 431 Key = LineList[0].split() 436 LineList[1] = CleanString(LineList[1], CommentCharacter) [all …]
|
D | Misc.py | 711 LineList = GetSplitValueList(String, END_OF_LINE) 712 for Line in LineList: 841 def ProcessLineExtender(LineList): argument 844 while Count < len(LineList): 845 if LineList[Count].strip().endswith("\\") and Count + 1 < len(LineList): 846 NewList.append(LineList[Count].strip()[:-2] + LineList[Count + 1]) 849 NewList.append(LineList[Count]) 865 def ProcessEdkComment(LineList): argument 872 while(Count < len(LineList)): 873 Line = LineList[Count].strip() [all …]
|
D | Parsing.py | 433 LineList = Lines.split('\n') 434 for Line in LineList: 984 LineList = Statement.split('\n') 986 for Line in LineList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/TargetTool/ |
D | TargetTool.py | 65 LineList = Line.split(KeySplitCharacter,1) 66 if len(LineList) >= 2: 67 Key = LineList[0].strip() 72 self.TargetTxtDictionary[Key] = LineList[1].replace('\\', '/').strip() 75 self.TargetTxtDictionary[Key] = LineList[1].split() 106 LineList = Line.split(KeySplitCharacter,1) 107 if len(LineList) >= 2: 108 Key = LineList[0].strip()
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
D | InfParserLite.py | 129 …LineList = GetSplitValueList(Line[len(TAB_SECTION_START):len(Line) - len(TAB_SECTION_END)], TAB_CO… 130 for Item in LineList:
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/ |
D | FileBuffer.c | 159 IN CONST LIST_ENTRY *LineList in InternalEditorMiscLineAdvance() argument 166 if (CurrentLine == NULL || LineList == NULL) { in InternalEditorMiscLineAdvance() 174 if (Line->Link.ForwardLink == LineList) { in InternalEditorMiscLineAdvance() 198 IN CONST LIST_ENTRY *LineList in InternalEditorMiscLineRetreat() argument 205 if (CurrentLine == NULL || LineList == NULL) { in InternalEditorMiscLineRetreat() 213 if (Line->Link.BackLink == LineList) { in InternalEditorMiscLineRetreat()
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/GenMetaFile/ |
D | GenDecFile.py | 502 LineList = Statement.split('\n') 504 for Line in LineList:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/ |
D | ModuleSurfaceAreaXml.py | 986 LineList = GetSplitValueList(self.AsBuiltFlags, '\n') 989 for Line in LineList:
|