Lines Matching refs:Arch

30     SqlCommand = """select Value1, Value2, BelongsToItem, StartLine, Arch from %s
60 SqlCommand = """select Value1, Value2, BelongsToItem, StartLine, Arch from %s
74 # and Arch = '%s')""" % \ *
105 # @param Arch: The Arch of item of section [Defines]
109 def QueryDefinesItem(Table, Name, Arch, BelongsToFile):
113 and Arch = '%s'
115 and Enabled > -1""" % (Table.Table, MODEL_META_DATA_HEADER, ConvertToSqlString2(Name), ConvertToSqlString2(Arch), BelongsToFile)
121 and Arch = '%s'
149 # @param Arch: The Arch of item of section [Defines]
153 def QueryDefinesItem2(Table, Arch, BelongsToFile):
156 and Arch = '%s'
158 and Enabled > -1""" % (Table.Table, MODEL_META_DATA_HEADER, ConvertToSqlString2(Arch), BelongsToFile)
163 and Arch = '%s'
180 SqlCommand = """select Value1, Arch, StartLine, ID, Value2 from %s
197 SqlCommand = """select Value1, Arch, StartLine, ID, Value2 from %s
213 SqlCommand = """select Value1, Arch, StartLine, ID, Value2 from %s
795 def ParseDefine(LineValue, StartLine, Table, FileID, Filename, SectionName, SectionModel, Arch):
798 Table.Insert(MODEL_META_DATA_DEFINE, Define[0], Define[1], '', '', '', Arch, SectionModel, FileID, StartLine, -1, StartLine, -1, 0)
807 Arch = ArchList[Index]
809 if Arch == '':
810 Arch = TAB_ARCH_COMMON
824 Records.append([LineValue, Arch, StartLine, ID, Third, Comment])
847 Arch = ArchList[Index]
849 if Arch == '':
850 Arch = TAB_ARCH_COMMON
862 ParseDefine(LineValue, StartLine, Table, FileID, Filename, CurrentSection, Model, Arch)
868 ID = Table.Insert(Model, LineValue, Third, Third, '', '', Arch, -1, FileID, StartLine, -1, StartLine, -1, 0)
869 Records.append([LineValue, Arch, StartLine, ID, Third])