Searched refs:EndLine (Results 1 - 23 of 23) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Table/
H A DTableFunction.py43 # @param EndLine: EndLine of a Function
59 EndLine INTEGER NOT NULL,
80 # @param EndLine: EndLine of a Function
88 def Insert(self, Header, Modifier, Name, ReturnStatement, StartLine, StartColumn, EndLine, EndColumn, BodyStartLine, BodyStartColumn, BelongsToFile, FunNameStartLine, FunNameStartColumn):
92 % (self.Table, self.ID, Header, Modifier, Name, ReturnStatement, StartLine, StartColumn, EndLine, EndColumn, BodyStartLine, BodyStartColumn, BelongsToFile, FunNameStartLine, FunNameStartColumn)
H A DTableIdentifier.py47 # @param EndLine: EndLine of a Identifier
61 EndLine INTEGER NOT NULL,
80 # @param EndLine: EndLine of a Identifier
83 def Insert(self, Modifier, Type, Name, Value, Model, BelongsToFile, BelongsToFunction, StartLine, StartColumn, EndLine, EndColumn):
87 % (self.Table, self.ID, Modifier, Type, Name, Value, Model, BelongsToFile, BelongsToFunction, StartLine, StartColumn, EndLine, EndColumn)
H A DTablePcd.py47 # @param EndLine: EndLine of a Pcd
61 EndLine INTEGER NOT NULL,
80 # @param EndLine: EndLine of a Pcd
83 def Insert(self, CName, TokenSpaceGuidCName, Token, DatumType, Model, BelongsToFile, BelongsToFunction, StartLine, StartColumn, EndLine, EndColumn):
87 % (self.Table, self.ID, CName, TokenSpaceGuidCName, Token, DatumType, Model, BelongsToFile, BelongsToFunction, StartLine, StartColumn, EndLine, EndColumn)
H A DTableDec.py48 # @param EndLine: EndLine of a Dec item
63 EndLine INTEGER NOT NULL,
83 # @param EndLine: EndLine of a Dec item
87 def Insert(self, Model, Value1, Value2, Value3, Value4, Value5, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
91 % (self.Table, self.ID, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
H A DTableDsc.py48 # @param EndLine: EndLine of a Dsc item
63 EndLine INTEGER NOT NULL,
83 # @param EndLine: EndLine of a Dsc item
87 def Insert(self, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
91 % (self.Table, self.ID, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
H A DTableFdf.py48 # @param EndLine: EndLine of a Fdf item
64 EndLine INTEGER NOT NULL,
84 # @param EndLine: EndLine of a Fdf item
88 def Insert(self, Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
92 % (self.Table, self.ID, Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
H A DTableInf.py50 # @param EndLine: EndLine of a Inf item
67 EndLine INTEGER NOT NULL,
89 # @param EndLine: EndLine of a Inf item
93 def Insert(self, Model, Value1, Value2, Value3, Value4, Value5, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
97 % (self.Table, self.ID, Model, Value1, Value2, Value3, Value4, Value5, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/CommonDataClass/
H A DDataClass.py184 # @param EndLine: EndLine of a Function
199 # @var EndLine: EndLine of a Function
209 StartLine = -1, StartColumn = -1, EndLine = -1, EndColumn = -1, \
220 self.EndLine = EndLine
245 # @param EndLine: EndLine of a Identifier
258 # @var EndLine
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DDatabase.py184 Function.StartLine, Function.StartColumn, Function.EndLine, Function.EndColumn, \
192 FileID, FunctionID, Identifier.StartLine, Identifier.StartColumn, Identifier.EndLine, Identifier.EndColumn)
198 FileID, FunctionID, Pcd.StartLine, Pcd.StartColumn, Pcd.EndLine, Pcd.EndColumn)
204 FileID, -1, Identifier.StartLine, Identifier.StartColumn, Identifier.EndLine, Identifier.EndColumn)
210 FileID, -1, Pcd.StartLine, Pcd.StartColumn, Pcd.EndLine, Pcd.EndColumn)
222 SqlCommand = """select ID, BelongsToFile, StartLine, EndLine, Model from Identifier"""
230 EndLine = Record[3]
238 where StartLine < %s and EndLine > %s
239 and BelongsToFile = %s""" % (StartLine, EndLine, BelongsToFile)
255 and BelongsToFile = %s""" % (EndLine, BelongsToFil
[all...]
H A DC.g72 def StorePredicateExpression(self, StartLine, StartOffset, EndLine, EndOffset, Text):
73 PredExp = CodeFragment.PredicateExpression(Text, (StartLine, StartOffset), (EndLine, EndOffset))
76 def StoreEnumerationDefinition(self, StartLine, StartOffset, EndLine, EndOffset, Text):
77 EnumDef = CodeFragment.EnumerationDefinition(Text, (StartLine, StartOffset), (EndLine, EndOffset))
80 def StoreStructUnionDefinition(self, StartLine, StartOffset, EndLine, EndOffset, Text):
81 SUDef = CodeFragment.StructUnionDefinition(Text, (StartLine, StartOffset), (EndLine, EndOffset))
84 def StoreTypedefDefinition(self, StartLine, StartOffset, EndLine, EndOffset, FromText, ToText):
85 Tdef = CodeFragment.TypedefDefinition(FromText, ToText, (StartLine, StartOffset), (EndLine, EndOffset))
88 def StoreFunctionDefinition(self, StartLine, StartOffset, EndLine, EndOffset, ModifierText, DeclText, LeftBraceLine, LeftBraceOffset, DeclLine, DeclOffset):
89 FuncDef = CodeFragment.FunctionDefinition(ModifierText, DeclText, (StartLine, StartOffset), (EndLine, EndOffse
[all...]
H A Dc.py1259 SqlStatement = """ select Modifier, ID, StartLine, StartColumn, EndLine, Value
1645 SqlStatement = """ select Name, StartLine, EndLine, ID, Value
1662 SqlStatement = """ select Modifier, Name, Value, StartLine, EndLine, ID
1746 SqlStatement = """ select Modifier, Name, Value, StartLine, EndLine, ID
1910 SqlStatement = """ select BodyStartLine, EndLine, Header, Modifier, ID
1989 SqlStatement = """ select BodyStartLine, EndLine, Header, Modifier, ID
2068 SqlStatement = """ select BodyStartLine, EndLine, Header, Modifier, ID
2171 SqlStatement = """ select Value, EndLine
2173 where EndLine < %d
2183 where StartLine > (select max(EndLine) fro
[all...]
H A DCParser.py114 def StorePredicateExpression(self, StartLine, StartOffset, EndLine, EndOffset, Text):
115 PredExp = CodeFragment.PredicateExpression(Text, (StartLine, StartOffset), (EndLine, EndOffset))
118 def StoreEnumerationDefinition(self, StartLine, StartOffset, EndLine, EndOffset, Text):
119 EnumDef = CodeFragment.EnumerationDefinition(Text, (StartLine, StartOffset), (EndLine, EndOffset))
122 def StoreStructUnionDefinition(self, StartLine, StartOffset, EndLine, EndOffset, Text):
123 SUDef = CodeFragment.StructUnionDefinition(Text, (StartLine, StartOffset), (EndLine, EndOffset))
126 def StoreTypedefDefinition(self, StartLine, StartOffset, EndLine, EndOffset, FromText, ToText):
127 Tdef = CodeFragment.TypedefDefinition(FromText, ToText, (StartLine, StartOffset), (EndLine, EndOffset))
130 def StoreFunctionDefinition(self, StartLine, StartOffset, EndLine, EndOffset, ModifierText, DeclText, LeftBraceLine, LeftBraceOffset, DeclLine, DeclOffset):
131 FuncDef = CodeFragment.FunctionDefinition(ModifierText, DeclText, (StartLine, StartOffset), (EndLine, EndOffse
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DFdfClassObject.py89 (Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled) = \
100 self.TblFdf.Insert(Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
108 self.TblFdf.Insert(Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
H A DParsing.py814 BelongsToItem, EndLine, EndColumn = -1, -1, -1
815 LineValue, StartLine, EndLine, Comment = SectionItem[0], SectionItem[1], SectionItem[1], SectionItem[2]
854 BelongsToItem, EndLine, EndColumn = -1, -1, -1
855 LineValue, StartLine, EndLine = SectionItem[0], SectionItem[1], SectionItem[1]
H A DDscClassObject.py960 # @param EndLine: The end line no
963 def InsertConditionalStatement(self, Filename, FileID, BelongsToItem, IfDefList, EndLine, ArchList):
986 self.TblDsc.Insert(Model, Value1, Value2, Value3, ArchList, BelongsToItem, self.FileID, PreviousIf[1], StartColumn, EndLine, EndColumn, Enabled)
1001 self.TblDsc.Insert(Model, Value1, Value2, Value3, ArchList, BelongsToItem, self.FileID, PreviousIf[1], StartColumn, EndLine, EndColumn, Enabled)
1008 self.TblDsc.Insert(Model, Value1, Value2, Value3, ArchList, BelongsToItem, self.FileID, PreviousIf[1], StartColumn, EndLine, EndColumn, Enabled)
1146 SqlCommand = """select A.StartLine, A.EndLine from %s as A
1164 SqlCommand = """Update %s set Enabled = -1 where StartLine >= %s and EndLine <= %s""" % (self.TblDsc.Table, Record[0], Record[1])
1170 SqlCommand = """select A.StartLine, A.EndLine from %s as A
1188 SqlCommand = """Update %s set Enabled = -1 where StartLine >= %s and EndLine <= %s""" % (self.TblDsc.Table, Record[0], Record[1])
1195 SqlCommand = """select A.Model, A.Value1, A.Value2, A.Value3, A.StartLine, A.EndLine,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
H A DMetaFileTable.py60 EndLine INTEGER NOT NULL,
82 # @param EndLine: EndLine of a Inf item
87 BelongsToItem=-1, BelongsToFile = -1, StartLine=-1, StartColumn=-1, EndLine=-1, EndColumn=-1, Enabled=0):
101 EndLine,
140 EndLine INTEGER NOT NULL,
164 # @param EndLine: EndLine of a Dec item
169 BelongsToItem=-1, BelongsToFile = -1, StartLine=-1, StartColumn=-1, EndLine=-1, EndColumn=-1, Enabled=0):
183 EndLine,
[all...]
H A DMetaFileParser.py1824 (Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled) = \
1835 self.TblFdf.Insert(Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
1843 self.TblFdf.Insert(Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Workspace/
H A DMetaFileTable.py84 EndLine INTEGER NOT NULL,
106 # @param EndLine: EndLine of a Inf item
111 BelongsToItem=-1, StartLine=-1, StartColumn=-1, EndLine=-1, EndColumn=-1, Enabled=0):
124 EndLine,
162 EndLine INTEGER NOT NULL,
186 # @param EndLine: EndLine of a Dec item
191 BelongsToItem=-1, StartLine=-1, StartColumn=-1, EndLine=-1, EndColumn=-1, Enabled=0):
204 EndLine,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/
H A DDatabase.py184 Function.StartLine, Function.StartColumn, Function.EndLine, Function.EndColumn, \
191 FileID, FunctionID, Identifier.StartLine, Identifier.StartColumn, Identifier.EndLine, Identifier.EndColumn)
195 FileID, -1, Identifier.StartLine, Identifier.StartColumn, Identifier.EndLine, Identifier.EndColumn)
208 SqlCommand = """select ID, BelongsToFile, StartLine, EndLine from Function"""
216 EndLine = Record[3]
218 SqlCommand = """Update Identifier%s set BelongsToFunction = %s where BelongsToFile = %s and StartLine > %s and EndLine < %s""" % \
219 (BelongsToFile, FunctionID, BelongsToFile, StartLine, EndLine)
222 SqlCommand = """Update Identifier%s set BelongsToFunction = %s, Model = %s where BelongsToFile = %s and Model = %s and EndLine = %s""" % \
H A DParser.py359 # @param EndLine: End line of search scope
363 def SearchBelongsToFunction(BelongsToFile, StartLine, EndLine):
364 SqlCommand = """select ID, Name from Function where BelongsToFile = %s and StartLine <= %s and EndLine >= %s""" %(BelongsToFile, StartLine, EndLine)
383 SqlCommand = """select Value, Name, BelongsToFile, StartLine, EndLine from %s
391 BelongsToFile, StartLine, EndLine = Record[2], Record[3], Record[4]
392 BelongsToFunctionID, BelongsToFunction = SearchBelongsToFunction(BelongsToFile, StartLine, EndLine)
422 SqlCommand = """select Value, Name, BelongsToFile, StartLine, EndLine from %s
429 SqlCommand = """select Value, Name, BelongsToFile, StartLine, EndLine from %s
439 BelongsToFile, StartLine, EndLine
[all...]
H A DCParser.py114 def StorePredicateExpression(self, StartLine, StartOffset, EndLine, EndOffset, Text):
115 PredExp = CodeFragment.PredicateExpression(Text, (StartLine, StartOffset), (EndLine, EndOffset))
118 def StoreEnumerationDefinition(self, StartLine, StartOffset, EndLine, EndOffset, Text):
119 EnumDef = CodeFragment.EnumerationDefinition(Text, (StartLine, StartOffset), (EndLine, EndOffset))
122 def StoreStructUnionDefinition(self, StartLine, StartOffset, EndLine, EndOffset, Text):
123 SUDef = CodeFragment.StructUnionDefinition(Text, (StartLine, StartOffset), (EndLine, EndOffset))
126 def StoreTypedefDefinition(self, StartLine, StartOffset, EndLine, EndOffset, FromText, ToText):
127 Tdef = CodeFragment.TypedefDefinition(FromText, ToText, (StartLine, StartOffset), (EndLine, EndOffset))
130 def StoreFunctionDefinition(self, StartLine, StartOffset, EndLine, EndOffset, ModifierText, DeclText, LeftBraceLine, LeftBraceOffset, DeclLine, DeclOffset):
131 FuncDef = CodeFragment.FunctionDefinition(ModifierText, DeclText, (StartLine, StartOffset), (EndLine, EndOffse
[all...]
/vbox/src/libs/xpcom18a4/xpcom/obsolete/component/
H A DnsFileSpecImpl.cpp713 NS_IMETHODIMP nsFileSpecImpl::EndLine() function in class:nsFileSpecImpl
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpecImpl.cpp735 NS_IMETHODIMP nsFileSpecImpl::EndLine() function in class:nsFileSpecImpl

Completed in 994 milliseconds