Home
last modified time | relevance | path

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

/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fo/flow/
H A DRetrieveTableMarker.java92 protected int findAncestor(int ancestorID) { in findAncestor() argument
97 && (ancestorID == FO_TABLE_HEADER || ancestorID == FO_TABLE_FOOTER)) { in findAncestor()
102 if (temp.getNameId() == ancestorID) { in findAncestor()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/service/commit/
H A Disancestor.go27 func (s *server) commitIsAncestorName(ctx context.Context, repo *gitalypb.Repository, ancestorID, c… argument
29 "ancestorSha": ancestorID,
35 Flags: []git.Option{git.Flag{Name: "--is-ancestor"}}, Args: []string{ancestorID, childID},
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/service/commit/
H A Disancestor.go27 func (s *server) commitIsAncestorName(ctx context.Context, repo *gitalypb.Repository, ancestorID, c… argument
29 "ancestorSha": ancestorID,
34 Flags: []git.Option{git.Flag{Name: "--is-ancestor"}}, Args: []string{ancestorID, childID}})
/dports/textproc/gitlab-elasticsearch-indexer/gitlab-elasticsearch-indexer-ef1440548effec15831eda2d246dacc43233cefb/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/service/commit/
H A Disancestor.go27 func (s *server) commitIsAncestorName(ctx context.Context, repo *gitalypb.Repository, ancestorID, c… argument
29 "ancestorSha": ancestorID,
35 Flags: []git.Option{git.Flag{Name: "--is-ancestor"}}, Args: []string{ancestorID, childID},
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/cmd/imagec/
H A Dmain.go296 func writeArchiveFile(archiveProxy proxy.VicArchiveProxy, store, ancestorStore, layerID, ancestorID argument
299 op := optrace.NewOperation(context.Background(), "export layer %s:%s", layerID, ancestorID)
301 …ar, err := archiveProxy.ArchiveExportReader(op, store, ancestorStore, layerID, ancestorID, true, f…
306 log.Infof("Obtain archive reader for layer %s, parent %s", layerID, ancestorID)
/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Marshall/
H A DClassMarshaller.cs22 int ancestorID = reader.ReadInt(); in ReadSpec()
26 return new RawClassSpec(className, ancestorID, numFields); in ReadSpec()
/dports/security/keybase/client-v5.7.1/go/teams/
H A Dloader.go1503 func (l *TeamLoader) isImplicitAdminOf(ctx context.Context, teamID keybase1.TeamID, ancestorID *key…
1523 return false, fmt.Errorf("stuck in a loop while checking for implicit admin: %v", ancestorID)
1528 teamID: *ancestorID,
1552 ancestorID = ancestorChain.GetParentID()
1557 for ancestorID := range checkAgain {
1559 teamID: ancestorID,
1879 ancestorID *keybase1.TeamID,
1900 return fmt.Errorf("stuck in a loop while mapping over team parents: %v", ancestorID)
1904 teamID: *ancestorID,
1943 ancestorID = ancestorChain.GetParentID()
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/fo/
H A DFObj.java590 protected int findAncestor(int ancestorID) { in findAncestor() argument
594 if (temp.getNameId() == ancestorID) { in findAncestor()
/dports/games/scummvm/scummvm-2.5.1/engines/saga2/
H A Dobjects.cpp1364 ObjectID ancestorID = _data.parentID; in deleteObjectRecursive() local
1367 while (ancestorID > ImportantLimbo) { in deleteObjectRecursive()
1368 GameObject *ancestor = objectAddress(ancestorID); in deleteObjectRecursive()
1381 ancestorID = ancestor->_data.parentID; in deleteObjectRecursive()
/dports/biology/bbmap/bbmap/current/tax/
H A DTaxTree.java1068 public boolean descendsFrom2(int taxID, final int ancestorID) { in descendsFrom2() argument
1071 if(tn.id==ancestorID){return true;} in descendsFrom2()