Home
last modified time | relevance | path

Searched refs:AttrValue (Results 1 – 25 of 430) sorted by last modified time

12345678910>>...18

/dports/net/py-impacket/impacket-0.9.17/examples/
H A Dntfs-read.py368 self.AttrValue = data[self.ResidentHeader['ValueOffset']:][:self.ResidentHeader['ValueLen']]
377 return self.AttrValue
381 return self.AttrValue[offset:][:length]
384 return len(self.AttrValue)
391 …self.AttrValue = data[self.NonResidentHeader['DataRunsOffset']:][:self.NonResidentHeader['Allocate…
406 value = self.AttrValue
542 self.StandardInfo = NTFS_STANDARD_INFORMATION(self.Attribute.AttrValue)
560 self.FileNameRecord = NTFS_FILE_NAME_ATTR(self.Attribute.AttrValue)
598 self.IndexRootRecord = NTFS_INDEX_ROOT(attribute.AttrValue)
603 data = self.Attribute.AttrValue[len(self.IndexRootRecord):]
/dports/games/vavoom/vavoom-1.33/libs/core/
H A Dxml.cpp304 VStr AttrValue; in Parse() local
305 if (!ParseAttribute(AttrName, AttrValue)) in Parse()
313 if (AttrValue != "1.0" && AttrValue != "1.1") in Parse()
318 while (ParseAttribute(AttrName, AttrValue)) in Parse()
322 if (AttrValue.ToUpper() != "UTF-8") in Parse()
329 if (AttrValue.ToLower() != "yes") in Parse()
491 bool VXmlDocument::ParseAttribute(VStr& AttrName, VStr& AttrValue) in ParseAttribute() argument
513 AttrValue = ParseAttrValue(Buf[CurPos - 1]); in ParseAttribute()
545 VStr AttrValue; in ParseNode() local
546 while (ParseAttribute(AttrName, AttrValue)) in ParseNode()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/servo/components/style/
H A Ddom.rs19 use crate::selector_parser::{AttrValue, Lang, PseudoElement, SelectorImpl};
923 fn lang_attr(&self) -> Option<AttrValue>; in lang_attr() argument
930 fn match_element_lang(&self, override_lang: Option<Option<AttrValue>>, value: &Lang) -> bool; in match_element_lang() argument
H A Dselector_parser.rs20 pub type AttrValue = <SelectorImpl as ::selectors::SelectorImpl>::AttrValue; typedef
H A Dattr.rs39 pub enum AttrValue { enum
160 impl AttrValue { impl
171 AttrValue::TokenList(tokens, atoms) in from_serialized_tokenlist()
200 AttrValue::UInt(string, result) in from_u32()
205 AttrValue::Int(string, result) in from_i32()
226 AttrValue::Int(string, result) in from_limited_i32()
238 AttrValue::UInt(string, result) in from_limited_u32()
243 AttrValue::Atom(value) in from_atomic()
253 AttrValue::Color(string, parsed) in from_legacy_color()
366 impl ::std::ops::Deref for AttrValue { implementation
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/servo/components/style/gecko/
H A Dwrapper.rs66 use crate::selector_parser::{AttrValue, HorizontalDirection, Lang};
1652 fn lang_attr(&self) -> Option<AttrValue> { in lang_attr() argument
1661 fn match_element_lang(&self, override_lang: Option<Option<AttrValue>>, value: &Lang) -> bool { in match_element_lang() argument
1938 operation: &AttrSelectorOperation<&AttrValue>, in attr_matches() argument
H A Dsnapshot.rs17 use crate::selector_parser::AttrValue;
92 operation: &AttrSelectorOperation<&AttrValue>, in attr_matches() argument
H A Dselector_parser.rs240 type AttrValue = AtomString; typedef
/dports/mail/thunderbird/thunderbird-91.8.0/servo/components/selectors/
H A Dattr.rs18 pub operation: ParsedAttrSelectorOperation<Impl::AttrValue>,
40 pub enum ParsedAttrSelectorOperation<AttrValue> {
45 expected_value: AttrValue,
50 pub enum AttrSelectorOperation<AttrValue> {
55 expected_value: AttrValue,
59 impl<AttrValue> AttrSelectorOperation<AttrValue> {
62 AttrValue: AsRef<str>, in eval_str()
H A Dparser.rs198 type AttrValue: $($InSelector)*;
1040 value: Impl::AttrValue,
2602 type AttrValue = DummyAttrValue; typedef
H A Dtree.rs77 operation: &AttrSelectorOperation<&<Self::Impl as SelectorImpl>::AttrValue>, in attr_matches() argument
/dports/mail/thunderbird/thunderbird-91.8.0/servo/components/style/invalidation/element/
H A Delement_wrapper.rs10 use crate::selector_parser::{AttrValue, NonTSPseudoClass, PseudoElement, SelectorImpl};
76 fn lang_attr(&self) -> Option<AttrValue>; in lang_attr() argument
138 fn get_lang(&self) -> Option<AttrValue> { in get_lang() argument
345 operation: &AttrSelectorOperation<&AttrValue>, in attr_matches() argument
/dports/mail/thunderbird/thunderbird-91.8.0/servo/components/style/servo/
H A Dselector_parser.rs9 use crate::attr::{AttrIdentifier, AttrValue};
16 use crate::selector_parser::AttrValue as SelectorAttrValue;
405 type AttrValue = String; typedef
622 pub attrs: Option<Vec<(AttrIdentifier, AttrValue)>>,
654 fn get_attr(&self, namespace: &Namespace, name: &LocalName) -> Option<&AttrValue> { in get_attr() argument
676 F: FnMut(&AttrValue) -> bool, in any_attr_ignore_ns()
/dports/mail/thunderbird/thunderbird-91.8.0/servo/tests/unit/style/
H A Dattr.rs6 use style::attr::{AttrValue, LengthPercentageOrAuto, parse_length};
24 match AttrValue::from_double(value, 0.0) { in test_parse_double()
25 AttrValue::Double(_, num) => assert_eq!(num, 43250f64), in test_parse_double()
33 match AttrValue::from_double(value, 0.0) { in test_parse_double_negative_prefix()
34 AttrValue::Double(_, num) => assert_eq!(num, -5.6f64), in test_parse_double_negative_prefix()
42 match AttrValue::from_double(value, 0.0) { in test_parse_double_positive_prefix()
43 AttrValue::Double(_, num) => assert_eq!(num, 5.6f64), in test_parse_double_positive_prefix()
51 match AttrValue::from_limited_i32(value, 0) { in test_from_limited_i32_should_be_default_when_less_than_0()
52 AttrValue::Int(_, 0) => (), in test_from_limited_i32_should_be_default_when_less_than_0()
60 AttrValue::Int(_, 1) => (), in test_from_limited_i32_should_parse_a_uint_when_value_is_0_or_greater()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/accessible/windows/uia/
H A DuiaRawElmProvider.cpp171 attribIter.AttrValue(attribValue); in GetPropertyValue()
/dports/mail/thunderbird/thunderbird-91.8.0/accessible/base/
H A DARIAMap.cpp1513 void AttrIterator::AttrValue(nsAString& aAttrValue) const { in AttrValue() function in AttrIterator
H A DARIAMap.h295 void AttrValue(nsAString& aAttrValue) const;
/dports/mail/thunderbird/thunderbird-91.8.0/accessible/generic/
H A DLocalAccessible.cpp989 attribIter.AttrValue(value); in Attributes()
H A DDocAccessible.cpp275 attribIter.AttrValue(value); in Attributes()
/dports/www/firefox/firefox-99.0/servo/components/selectors/
H A Dparser.rs198 type AttrValue: $($InSelector)*;
1035 value: Impl::AttrValue,
2594 type AttrValue = DummyAttrValue; typedef
/dports/www/firefox/firefox-99.0/servo/components/style/
H A Dselector_parser.rs20 pub type AttrValue = <SelectorImpl as ::selectors::SelectorImpl>::AttrValue; typedef
H A Dattr.rs39 pub enum AttrValue { enum
160 impl AttrValue { impl
171 AttrValue::TokenList(tokens, atoms) in from_serialized_tokenlist()
200 AttrValue::UInt(string, result) in from_u32()
205 AttrValue::Int(string, result) in from_i32()
226 AttrValue::Int(string, result) in from_limited_i32()
238 AttrValue::UInt(string, result) in from_limited_u32()
243 AttrValue::Atom(value) in from_atomic()
253 AttrValue::Color(string, parsed) in from_legacy_color()
366 impl ::std::ops::Deref for AttrValue { implementation
[all …]
/dports/www/firefox/firefox-99.0/servo/components/style/invalidation/element/
H A Delement_wrapper.rs10 use crate::selector_parser::{AttrValue, NonTSPseudoClass, PseudoElement, SelectorImpl};
76 fn lang_attr(&self) -> Option<AttrValue>; in lang_attr() argument
138 fn get_lang(&self) -> Option<AttrValue> { in get_lang() argument
323 operation: &AttrSelectorOperation<&AttrValue>, in attr_matches() argument
/dports/www/firefox/firefox-99.0/servo/components/style/gecko/
H A Dselector_parser.rs248 type AttrValue = AtomString; typedef
H A Dwrapper.rs64 use crate::selector_parser::{AttrValue, Lang};
1666 fn lang_attr(&self) -> Option<AttrValue> { in lang_attr() argument
1675 fn match_element_lang(&self, override_lang: Option<Option<AttrValue>>, value: &Lang) -> bool { in match_element_lang() argument
1974 operation: &AttrSelectorOperation<&AttrValue>, in attr_matches() argument

12345678910>>...18