Home
last modified time | relevance | path

Searched refs:SelectorMap (Results 1 – 25 of 65) sorted by relevance

123

/dports/astro/p5-Starlink-AST/Starlink-AST-1.05/ast/
H A Dselectormap.h198 astPROTO_CHECK(SelectorMap) /* Check class membership */
199 astPROTO_ISA(SelectorMap) /* Test class membership */
240 #define astCheckSelectorMap(this) astINVOKE_CHECK(SelectorMap,this,0)
241 #define astVerifySelectorMap(this) astINVOKE_CHECK(SelectorMap,this,1)
244 #define astIsASelectorMap(this) astINVOKE_ISA(SelectorMap,this)
H A Dselectormap.c91 #define astCLASS SelectorMap
141 astMAKE_INITGLOBALS(SelectorMap)
144 #define class_init astGLOBAL(SelectorMap,Class_Init)
145 #define class_vtab astGLOBAL(SelectorMap,Class_Vtab)
1173 astMAKE_ISA(SelectorMap,Mapping) in astMAKE_ISA() argument
1174 astMAKE_CHECK(SelectorMap) in astMAKE_ISA()
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/style/
H A Dselector_map.rs96 pub struct SelectorMap<T: 'static> { struct
109 impl<T: 'static> Default for SelectorMap<T> { argument
119 impl<T: 'static> SelectorMap<T> { impl
122 SelectorMap { in new()
151 impl SelectorMap<Rule> { impl
180 SelectorMap::get_matching_rules( in get_all_matching_rules()
193 SelectorMap::get_matching_rules( in get_all_matching_rules()
205 SelectorMap::get_matching_rules( in get_all_matching_rules()
215 SelectorMap::get_matching_rules( in get_all_matching_rules()
255 impl<T: SelectorMapEntry> SelectorMap<T> { implementation
/dports/www/firefox-esr/firefox-91.8.0/servo/components/style/
H A Dselector_map.rs98 pub struct SelectorMap<T: 'static> { struct
115 impl<T: 'static> Default for SelectorMap<T> { argument
125 impl<T: 'static> SelectorMap<T> { impl
128 SelectorMap { in new()
161 impl SelectorMap<Rule> { implementation
185 SelectorMap::get_matching_rules( in get_all_matching_rules()
197 SelectorMap::get_matching_rules( in get_all_matching_rules()
222 SelectorMap::get_matching_rules( in get_all_matching_rules()
233 SelectorMap::get_matching_rules( in get_all_matching_rules()
243 SelectorMap::get_matching_rules( in get_all_matching_rules()
[all …]
H A Drule_collector.rs11 use crate::selector_map::SelectorMap;
219 SelectorMap::get_matching_rules( in collect_rules_in_list()
230 fn collect_rules_in_map(&mut self, map: &SelectorMap<Rule>, cascade_level: CascadeLevel) { in collect_rules_in_map()
/dports/mail/thunderbird/thunderbird-91.8.0/servo/components/style/
H A Dselector_map.rs98 pub struct SelectorMap<T: 'static> { struct
115 impl<T: 'static> Default for SelectorMap<T> { implementation
125 impl<T: 'static> SelectorMap<T> { impl
128 SelectorMap { in new()
161 impl SelectorMap<Rule> { implementation
185 SelectorMap::get_matching_rules( in get_all_matching_rules()
197 SelectorMap::get_matching_rules( in get_all_matching_rules()
222 SelectorMap::get_matching_rules( in get_all_matching_rules()
233 SelectorMap::get_matching_rules( in get_all_matching_rules()
243 SelectorMap::get_matching_rules( in get_all_matching_rules()
[all …]
H A Drule_collector.rs11 use crate::selector_map::SelectorMap;
219 SelectorMap::get_matching_rules( in collect_rules_in_list()
230 fn collect_rules_in_map(&mut self, map: &SelectorMap<Rule>, cascade_level: CascadeLevel) { in collect_rules_in_map()
/dports/lang/spidermonkey78/firefox-78.9.0/servo/components/style/
H A Dselector_map.rs98 pub struct SelectorMap<T: 'static> { struct
115 impl<T: 'static> Default for SelectorMap<T> { argument
125 impl<T: 'static> SelectorMap<T> { implementation
128 SelectorMap { in new()
161 impl SelectorMap<Rule> { implementation
185 SelectorMap::get_matching_rules( in get_all_matching_rules()
197 SelectorMap::get_matching_rules( in get_all_matching_rules()
222 SelectorMap::get_matching_rules( in get_all_matching_rules()
233 SelectorMap::get_matching_rules( in get_all_matching_rules()
243 SelectorMap::get_matching_rules( in get_all_matching_rules()
[all …]
H A Drule_collector.rs11 use crate::selector_map::SelectorMap;
220 SelectorMap::get_matching_rules( in collect_rules_in_list()
231 fn collect_rules_in_map(&mut self, map: &SelectorMap<Rule>, cascade_level: CascadeLevel) { in collect_rules_in_map()
/dports/www/firefox/firefox-99.0/servo/components/style/
H A Dselector_map.rs97 pub struct SelectorMap<T: 'static> { struct
118 impl<T: 'static> Default for SelectorMap<T> { argument
125 impl<T> SelectorMap<T> { implementation
128 SelectorMap { in new()
181 impl SelectorMap<Rule> { implementation
206 SelectorMap::get_matching_rules( in get_all_matching_rules()
219 SelectorMap::get_matching_rules( in get_all_matching_rules()
262 SelectorMap::get_matching_rules( in get_all_matching_rules()
274 SelectorMap::get_matching_rules( in get_all_matching_rules()
285 SelectorMap::get_matching_rules( in get_all_matching_rules()
[all …]
/dports/security/keybase/client-v5.7.1/shared/stories/
H A Dstorybook.d.ts6 export type SelectorMap = {[K in string]: (arg0: any) => any | Object} alias
20 ...maps: SelectorMap[]
23 ...maps: SelectorMap[]
H A Dstorybook.shared.tsx15 export type SelectorMap = {[K in string]: (arg0: any) => any | Object}
42 * @param {SelectorMap} map an object of the form {DisplayName: Function(ownProps)} with
52 const createPropProvider = (...maps: SelectorMap[]) => {
53 const merged: SelectorMap = maps.reduce((obj, merged) => ({...obj, ...merged}), {})
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/style/invalidation/element/
H A Dinvalidation_map.rs12 use selector_map::{MaybeCaseInsensitiveHashMap, SelectorMap, SelectorMapEntry};
166 pub state_affecting_selectors: SelectorMap<StateDependency>,
170 pub other_attribute_affecting_selectors: SelectorMap<Dependency>,
189 state_affecting_selectors: SelectorMap::new(), in new()
191 other_attribute_affecting_selectors: SelectorMap::new(), in new()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/lib/libRocket/Source/Core/
H A DStyleSheetFactory.h85 typedef std::map< String, StyleSheetNodeSelector* > SelectorMap; typedef
86 SelectorMap selectors;
H A DStyleSheetFactory.cpp86 for (SelectorMap::iterator i = instance->selectors.begin(); i != instance->selectors.end(); ++i) in Shutdown()
181 SelectorMap::iterator i = instance->selectors.find(name.Substring(0, index)); in GetSelector()
/dports/astro/kosmindoormap/kosmindoormap-21.12.3/src/map/style/
H A Dmapcssselector_p.h117 struct SelectorMap { struct
121 std::vector<SelectorMap> m_selectors; argument
/dports/www/firefox-esr/firefox-91.8.0/servo/tests/unit/style/
H A Dstylist.rs15 use style::selector_map::SelectorMap;
171 let mut selector_map = SelectorMap::new(); in test_insert()
/dports/www/firefox/firefox-99.0/servo/tests/unit/style/
H A Dstylist.rs15 use style::selector_map::SelectorMap;
171 let mut selector_map = SelectorMap::new(); in test_insert()
/dports/lang/spidermonkey60/firefox-60.9.0/servo/tests/unit/style/
H A Dstylist.rs15 use style::selector_map::SelectorMap;
171 let mut selector_map = SelectorMap::new(); in test_insert()
/dports/mail/thunderbird/thunderbird-91.8.0/servo/tests/unit/style/
H A Dstylist.rs15 use style::selector_map::SelectorMap;
171 let mut selector_map = SelectorMap::new(); in test_insert()
/dports/lang/spidermonkey78/firefox-78.9.0/servo/tests/unit/style/
H A Dstylist.rs15 use style::selector_map::SelectorMap;
171 let mut selector_map = SelectorMap::new(); in test_insert()
/dports/www/firefox-esr/firefox-91.8.0/servo/components/style/invalidation/element/
H A Dinvalidation_map.rs10 MaybeCaseInsensitiveHashMap, PrecomputedHashMap, SelectorMap, SelectorMapEntry,
197 pub state_affecting_selectors: SelectorMap<StateDependency>,
211 state_affecting_selectors: SelectorMap::new(), in new()
/dports/www/firefox/firefox-99.0/servo/components/style/invalidation/element/
H A Dinvalidation_map.rs10 MaybeCaseInsensitiveHashMap, PrecomputedHashMap, SelectorMap, SelectorMapEntry,
196 pub state_affecting_selectors: SelectorMap<StateDependency>,
210 state_affecting_selectors: SelectorMap::new(), in new()
/dports/mail/thunderbird/thunderbird-91.8.0/servo/components/style/invalidation/element/
H A Dinvalidation_map.rs10 MaybeCaseInsensitiveHashMap, PrecomputedHashMap, SelectorMap, SelectorMapEntry,
197 pub state_affecting_selectors: SelectorMap<StateDependency>,
211 state_affecting_selectors: SelectorMap::new(), in new()
/dports/lang/spidermonkey78/firefox-78.9.0/servo/components/style/invalidation/element/
H A Dinvalidation_map.rs9 use crate::selector_map::{MaybeCaseInsensitiveHashMap, PrecomputedHashMap, SelectorMap, SelectorMap…
195 pub state_affecting_selectors: SelectorMap<StateDependency>,
208 state_affecting_selectors: SelectorMap::new(), in new()

123