Home
last modified time | relevance | path

Searched refs:PrimaryAddTable (Results 1 – 2 of 2) sorted by relevance

/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/ItemsAndProperties/
H A DLookup.cs174 private Hashtable PrimaryAddTable property in Microsoft.Build.BuildEngine.Lookup
333 if (PrimaryAddTable != null) in MergeScopeIntoNotLastScope()
337 SecondaryAddTable = PrimaryAddTable; in MergeScopeIntoNotLastScope()
341 foreach (DictionaryEntry entry in PrimaryAddTable) in MergeScopeIntoNotLastScope()
414 if (PrimaryAddTable != null) in MergeScopeIntoLastScope()
416 foreach (DictionaryEntry entry in PrimaryAddTable) in MergeScopeIntoLastScope()
692 PrimaryAddTable = Utilities.CreateTableIfNecessary(PrimaryAddTable); in AddNewItems()
693 ImportItemsIntoTable(PrimaryAddTable, group[0].Name, group); in AddNewItems()
716 PrimaryAddTable = Utilities.CreateTableIfNecessary(PrimaryAddTable); in AddNewItem()
717 ImportItemIntoTable(PrimaryAddTable, item); in AddNewItem()
/dports/devel/msbuild/msbuild-0.06/src/Build/BackEnd/Components/RequestBuilder/
H A DLookup.cs144 private ItemDictionary<ProjectItemInstance> PrimaryAddTable property in Microsoft.Build.BackEnd.Lookup
320 if (PrimaryAddTable != null) in MergeScopeIntoNotLastScope()
324 SecondaryAddTable = PrimaryAddTable; in MergeScopeIntoNotLastScope()
328 SecondaryAddTable.ImportItems(PrimaryAddTable); in MergeScopeIntoNotLastScope()
404 if (PrimaryAddTable != null) in MergeScopeIntoLastScope()
407 SecondaryTable.ImportItems(PrimaryAddTable); in MergeScopeIntoLastScope()
679 PrimaryAddTable = PrimaryAddTable ?? new ItemDictionary<ProjectItemInstance>(); in AddNewItemsOfItemType()
694 PrimaryAddTable.ImportItemsOfType(itemType, itemsToAdd); in AddNewItemsOfItemType()
712 PrimaryAddTable = PrimaryAddTable ?? new ItemDictionary<ProjectItemInstance>(); in AddNewItem()
713 PrimaryAddTable.Add(item); in AddNewItem()