Home
last modified time | relevance | path

Searched refs:Set_Iterator (Results 1 – 13 of 13) sorted by last modified time

/dports/games/warzone2100/warzone2100/3rdparty/quickjs/
H A Dquickjs-atom.h232 DEF(Set_Iterator, "Set Iterator")
/dports/lang/quickjs/quickjs-2021-03-27/
H A Dquickjs-atom.h232 DEF(Set_Iterator, "Set Iterator")
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/quickjs/
H A Dquickjs-atom.h228 DEF(Set_Iterator, "Set Iterator")
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/quickjs/
H A Dquickjs-atom.h228 DEF(Set_Iterator, "Set Iterator")
/dports/devel/adabooch/bc-20160321/src/
H A Dbc-containers-sets.ads115 type Set_Iterator is abstract new Iterator with record type
H A Dbc-containers-sets-unmanaged.ads139 type Unmanaged_Set_Iterator is new Set_Iterator with null record;
H A Dbc-containers-sets-unbounded.ads143 type Unbounded_Set_Iterator is new Set_Iterator with null record;
H A Dbc-containers-sets-dynamic.ads153 type Dynamic_Set_Iterator is new Set_Iterator with null record;
H A Dbc-containers-sets-bounded.ads120 type Bounded_Set_Iterator is new Set_Iterator with null record;
/dports/devel/matreshka/matreshka-0.7.0/tools/ayacc/src/
H A Dlr0_machine.adb563 Iterator : Item_Set_Pack.Set_Iterator;
H A Dlr0_machine.ads77 subtype Parse_State_Iterator is Parse_State_Set_Pack.Set_Iterator;
78 subtype Item_Iterator is Item_Set_Pack.Set_Iterator;
79 subtype Transition_Iterator is Transition_Set_Pack.Set_Iterator;
80 subtype Grammar_Symbol_Iterator is Grammar_Symbol_Set_Pack.Set_Iterator;
H A Dset_pack.adb326 procedure Initialize (Iterator : in out Set_Iterator; Using : in Set) is
328 Iterator := Set_Iterator(Using.Head);
331 function More (Iterator: Set_Iterator) return Boolean is
336 procedure Next (Iterator: in out Set_Iterator; Element: out Universe) is
339 Iterator := Set_Iterator(Iterator.Next);
H A Dset_pack.ads71 type Set_Iterator is limited private; type
73 procedure Initialize (Iterator : in out Set_Iterator; Using : in Set);
74 function More (Iterator: Set_Iterator) return Boolean;
75 procedure Next (Iterator: in out Set_Iterator; Element: out Universe);
95 type Set_Iterator is new Link; type