Home
last modified time | relevance | path

Searched refs:pgSub (Results 1 – 10 of 10) sorted by relevance

/dports/security/keepass/KeePass-2.49-Source/KeePassLib/Collections/
H A DPwObjectPool.cs129 foreach(PwGroup pgSub in pg.Groups) in AddGroupRec()
131 Debug.Assert(!m_dUuidToId.ContainsKey(pgSub.Uuid)); in AddGroupRec()
132 Debug.Assert(!m_dIdToItem.ContainsValue(pgSub)); in AddGroupRec()
134 m_dUuidToId[pgSub.Uuid] = uId; in AddGroupRec()
135 m_dIdToItem[uId] = pgSub; in AddGroupRec()
140 foreach(PwGroup pgSub in pg.Groups) in AddGroupRec()
142 AddGroupRec(pgSub, ref uId); in AddGroupRec()
/dports/security/keepass/KeePass-2.49-Source/KeePass/Util/
H A DEntryTemplates.cs198 foreach(PwGroup pgSub in pg.Groups) in CreateGroupItems()
200 string strText = StrUtil.EncodeMenuText(pgSub.Name); in CreateGroupItems()
202 tsmi.Image = GetImage(pgSub.IconId, pgSub.CustomIconUuid); in CreateGroupItems()
203 tsmi.Tag = pgSub; in CreateGroupItems()
208 PwGroup pgSubCur = pgSub; // Copy the ref., as pgSub changes in CreateGroupItems()
/dports/security/keepass/KeePass-2.49-Source/KeePassLib/
H A DPwGroup.cs451 foreach(PwGroup pgSub in m_listGroups) in CloneStructure()
1209 foreach(PwGroup pgSub in m_listGroups) in GetHeight()
1211 h = Math.Max(h, pgSub.GetHeight()); in GetHeight()
1261 foreach(PwGroup pgSub in m_listGroups) in GetGroups()
1263 list.Add(pgSub.GetGroups(true)); in GetGroups()
1361 internal bool CanAddGroup(PwGroup pgSub) in CanAddGroup() argument
1371 if(!CanAddGroup(pgSub)) in CheckCanAddGroup()
1419 foreach(PwGroup pgSub in m_listGroups) in SortSubGroups()
1420 pgSub.SortSubGroups(true); in SortSubGroups()
1464 foreach(PwGroup pgSub in m_listGroups) in GetTopSearchSkippedGroupsRec()
[all …]
H A DPwDatabase.cs1225 foreach(PwGroup pgSub in pg.Groups) in ReorderObjects()
1227 ReorderObjects(pgSub, ppOrg, ppSrc); in ReorderObjects()
1444 GroupHandler gh = delegate(PwGroup pgSub) in MergeInLocationChanged()
1448 if(GetBestPool<PwGroup>(pgSub, ppOrg, ppSrc, out dt, in MergeInLocationChanged()
1451 pgSub.LocationChanged = dt; in MergeInLocationChanged()
1452 pgSub.PreviousParentGroup = puPrevParent; in MergeInLocationChanged()
/dports/security/keepass/KeePass-2.49-Source/KeePass/DataExchange/Formats/
H A DMozillaBookmarksHtml100.cs158 PwGroup pgSub = pg; in ImportGroup()
197 if(strGroup.Length == 0) { Debug.Assert(false); pgSub = pg; } in ImportGroup()
200 pgSub = new PwGroup(true, true, strGroup, PwIcon.Folder); in ImportGroup()
201 pg.AddGroup(pgSub, true); in ImportGroup()
205 ImportGroup(xmlChild, pwStorage, pgSub); in ImportGroup()
304 foreach(PwGroup pgSub in pg.Groups) in ExportGroup()
306 ExportGroup(sb, pgSub, uIndent + 1, pd); in ExportGroup()
H A DWinFavorites10.cs150 foreach(PwGroup pgSub in pg.Groups) in ExportGroup()
152 string strGroup = UrlUtil.FilterFileName(pgSub.Name); in ExportGroup()
156 ExportGroup(pgSub, strSub, slLogger, uTotalEntries, in ExportGroup()
/dports/security/keepass/KeePass-2.49-Source/KeePass/DataExchange/
H A DExportUtil.cs268 foreach(PwGroup pgSub in pg.Groups) in FilterCloneGroup()
270 if(dUuids.ContainsKey(pgSub.Uuid)) in FilterCloneGroup()
271 pgNew.AddGroup(FilterCloneGroup(pgSub, dUuids), true, false); in FilterCloneGroup()
/dports/security/keepass/KeePass-2.49-Source/KeePass/Ecas/
H A DEcasDefaultActionProvider.cs511 PwGroup pgSub = pg.FindCreateSubTree(strGroup.Substring(1), in ExportDatabaseFile()
513 pg = (pgSub ?? (new PwGroup(true, true, KPRes.Group, PwIcon.Folder))); in ExportDatabaseFile()
521 GroupHandler gh = delegate(PwGroup pgSub) in ExportDatabaseFile()
523 PwObjectList<PwEntry> l = pgSub.Entries; in ExportDatabaseFile()
/dports/security/keepass/KeePass-2.49-Source/KeePass/Forms/
H A DPrintForm.cs891 foreach(PwGroup pgSub in pg.Groups) in SortGroupEntriesRecursive()
893 SortGroupEntriesRecursive(pgSub, strFieldName); in SortGroupEntriesRecursive()
H A DMainForm_Functions.cs1294 foreach(PwGroup pgSub in pg.Groups) in GuiAddGroupRec()
1295 GuiAddGroupRec(tn.Nodes, pgSub, pgFind1, ref tnFound1, in GuiAddGroupRec()