Home
last modified time | relevance | path

Searched refs:DictItem (Results 1 – 25 of 37) sorted by relevance

12

/dports/graphics/opendx/dx-4.4.4/src/uipp/dxl/
H A Ddict.c94 static void DeleteDictItem(DictItem *di) in DeleteDictItem()
104 static DictItem *NewDictItem(const char *key, const void *def, in NewDictItem()
107 DictItem *di = (DictItem*)MALLOC(sizeof(DictItem)); in NewDictItem()
123 DictItem *di = d->harr[i]; in DeleteDictionary()
125 DictItem *next; in DeleteDictionary()
143 if (!(dict->harr = (DictItem**)MALLOC(HASH_SIZE*sizeof(DictItem*)))) in NewDictionary()
148 dict->harr[i] = (DictItem*)NULL; in NewDictionary()
157 DictItem *dlist=NULL,*next=NULL;
177 dlist->nexti=(DictItem*)0;
197 DictItem *dlist;
[all …]
H A Ddict.h14 typedef struct _dictitem_t DictItem; typedef
16 DictItem **harr;
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/src/adt/
H A Ddict.c102 { DictItem di = cell->value; in renumberDict()
117 DictItem
120 { DictItem di = obj; in getMemberDict()
167 { DictItem di; in deleteDict()
226 { DictItem a; in insertAfterDict()
252 DictItem
254 { DictItem di; in getFindIndexDict()
266 DictItem
275 { DictItem di = cell->value; in getFindPrefixDict()
338 DictItem di2; in insertDict()
[all …]
H A Ddictitem.c40 initialiseDictItem(DictItem di, Any key, CharArray lbl, Any obj, Name style) in initialiseDictItem()
56 unlinkDictItem(DictItem di) in unlinkDictItem()
64 static DictItem
71 labelDictItem(DictItem di, CharArray str) in labelDictItem()
82 getLabelDictItem(DictItem di) in getLabelDictItem()
100 keyDictItem(DictItem di, Any key) in keyDictItem()
116 styleDictItem(DictItem di, Name style) in styleDictItem()
127 dictDictItem(DictItem di, Dict d) in dictDictItem()
141 getImageDictItem(DictItem di) in getImageDictItem()
154 getPositionDictItem(DictItem di) in getPositionDictItem()
[all …]
H A Dproto.h93 COMMON(DictItem) getMemberDict(Dict dict, Any obj);
95 COMMON(status) appendDict(Dict dict, DictItem di);
96 COMMON(DictItem) getFindIndexDict(Dict dict, Int ln);
97 COMMON(DictItem) getFindPrefixDict(Dict dict, StringObj str, Int from, BoolObj ign_case);
102 COMMON(CharArray) getLabelDictItem(DictItem di);
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/prolog/demo/
H A Dpce_demo.pl90 get(Browser, selection, DictItem),
91 ( ( DictItem == @nil
92 ; get(DictItem, style, title)
95 ; get(DictItem, key, Name),
113 get(Browser, selection, DictItem),
114 ( DictItem == @nil
116 ; get(DictItem, key, Name),
/dports/japanese/ibus-anthy/ibus-anthy-1.5.11/setup/python2/
H A Dprefs.py36 class DictItem(): class
181 dict_item = DictItem(*item)
185 value = DictItem(*value)
254 dict_item = DictItem(*v)
257 DictItem.serialize(values)))
261 DictItem.serialize(dict_item)))
263 array.append(GLib.Variant.new_variant(DictItem.serialize(values)))
293 dict_item = DictItem(*v)
298 DictItem.serialize(dict_item)))
/dports/japanese/ibus-anthy/ibus-anthy-1.5.11/setup/python3/
H A Dprefs.py36 class DictItem(): class
181 dict_item = DictItem(*item)
185 value = DictItem(*value)
254 dict_item = DictItem(*v)
257 DictItem.serialize(values)))
261 DictItem.serialize(dict_item)))
263 array.append(GLib.Variant.new_variant(DictItem.serialize(values)))
293 dict_item = DictItem(*v)
298 DictItem.serialize(dict_item)))
/dports/sysutils/py-salt/salt-3004.1/salt/config/schemas/
H A Dssh.py16 DictItem,
89 minion_opts = DictItem(
100 roster_entries = DictItem(pattern_properties={r"^([^:]+)$": RosterEntryConfig()})(
H A Desxcluster.py18 DictItem,
196 licenses = DictItem(
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/src/gra/
H A Dlistbrowser.c440 { DictItem di = (DictItem) current_cell->value; in compute_current()
608 DictItem di; in rewind_list_browser()
700 { DictItem di = cell->value; in getExtendPrefixDict()
757 { DictItem di; in extendToCurrentListBrowser()
772 { DictItem di; in cancelSearchListBrowser()
789 { DictItem di; in executeSearchListBrowser()
899 { DictItem di; in enterListBrowser()
923 DictItem
1052 { DictItem di2 = cell->value; in changeSelectionListBrowser()
1312 DictItem di = NULL; in nextLineListBrowser()
[all …]
H A Dproto.h239 COMMON(DictItem) getDictItemListBrowser(ListBrowser lb, EventObj ev);
242 COMMON(status) selectedListBrowser(ListBrowser lb, DictItem di);
246 COMMON(status) normaliseListBrowser(ListBrowser lb, DictItem di);
248 COMMON(DictItem) getMemberListBrowser(ListBrowser lb, Any key);
/dports/www/py-scrapy/Scrapy-2.5.1/scrapy/
H A Ditem.py40 if issubclass(cls, BaseItem) and not issubclass(cls, (Item, DictItem)):
77 class DictItem(MutableMapping, BaseItem): class
82 if issubclass(cls, DictItem) and not issubclass(cls, Item):
138 class Item(DictItem, metaclass=ItemMeta):
/dports/editors/libreoffice/libreoffice-7.2.6.2/lingucomponent/source/spellcheck/spell/
H A Dsspellimp.hxx57 struct DictItem struct in SpellChecker
64 DictItem(OUString i_DName, Locale i_DLoc, rtl_TextEncoding i_DEnc);
67 std::vector<DictItem> m_DictItems;
H A Dsspellimp.cxx85 SpellChecker::DictItem::DictItem(OUString i_DName, Locale i_DLoc, rtl_TextEncoding i_DEnc) in DictItem() function in SpellChecker::DictItem
/dports/editors/libreoffice6/libreoffice-6.4.7.2/lingucomponent/source/spellcheck/spell/
H A Dsspellimp.hxx57 struct DictItem struct in SpellChecker
64 DictItem(OUString i_DName, Locale i_DLoc, rtl_TextEncoding i_DEnc);
67 std::vector<DictItem> m_DictItems;
H A Dsspellimp.cxx84 SpellChecker::DictItem::DictItem(OUString i_DName, Locale i_DLoc, rtl_TextEncoding i_DEnc) in DictItem() function in SpellChecker::DictItem
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/prolog/lib/emacs/
H A Dshell.pl86 get(@emacs_buffers, member, Name, DictItem),
87 get(DictItem, object, Buffer),
114 get(@emacs_buffers, member, Name, DictItem),
115 send(DictItem, label, string('%s\t%s', Name, Indicator)),
H A Dbuffer_menu.pl88 get(Browser, member, Name, DictItem),
89 send(Browser, insert_after, DictItem, @nil), % move to top
90 send(Browser, selection, DictItem)
H A Dbuffer.pl249 get(@emacs_buffers, member, OldName, DictItem)
250 -> send(DictItem, key, BufName)
261 get(@emacs_buffers, member, Name, DictItem),
262 get(DictItem, object, Buffer)
569 -> get(@emacs_buffers, member, Name, DictItem),
571 -> send(DictItem, label, string('%s\t**', Name)),
573 ; send(DictItem, label, Name),
/dports/sysutils/py-salt/salt-3004.1/tests/unit/utils/
H A Dtest_schema.py1608 item = schema.DictItem(
1623 item = schema.DictItem(
1642 item = schema.DictItem(
1661 item = schema.DictItem(
1684 item = schema.DictItem(
1708 item = schema.DictItem(
1730 item = schema.DictItem(
1764 item = schema.DictItem(
1784 item = schema.DictItem(
1809 item = schema.DictItem(
[all …]
/dports/www/py-scrapy/Scrapy-2.5.1/tests/
H A Dtest_item.py6 from scrapy.item import ABCMeta, _BaseItem, BaseItem, DictItem, Field, Item, ItemMeta
310 DictItem()
314 class SubclassedDictItem(DictItem):
/dports/sysutils/py-salt/salt-3004.1/tests/unit/config/schemas/
H A Dtest_ssh.py102 "minion_opts": ssh_schemas.DictItem(
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/src/evt/
H A Dbrowserselgesture.c118 DictItem di; in selectBrowserSelectGesture()
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/src/win/
H A Dbrowser.c151 static DictItem

12