Home
last modified time | relevance | path

Searched defs:DOMString (Results 1 – 25 of 257) sorted by relevance

1234567891011

/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/
H A Dtestbindingproxy.rs19 fn SupportedPropertyNames(&self) -> Vec<DOMString> { vec![] } in SupportedPropertyNames()
21 fn SetNamedItem(&self, _: DOMString, _: DOMString) {} in SetNamedItem()
22 fn GetItem(&self, _: u32) -> DOMString { DOMString::new() } in GetItem()
23 fn SetItem(&self, _: u32, _: DOMString) {} in SetItem()
24 fn RemoveItem(&self, _: DOMString) {} in RemoveItem()
25 fn Stringifier(&self) -> DOMString { DOMString::new() } in Stringifier()
26 fn IndexedGetter(&self, _: u32) -> Option<DOMString> { None } in IndexedGetter()
27 fn NamedDeleter(&self, _: DOMString) {} in NamedDeleter()
28 fn IndexedSetter(&self, _: u32, _: DOMString) {} in IndexedSetter()
29 fn NamedSetter(&self, _: DOMString, _: DOMString) {} in NamedSetter()
[all …]
H A Ddocumenttype.rs27 fn new_inherited(name: DOMString, in new_inherited()
28 public_id: Option<DOMString>, in new_inherited()
40 pub fn new(name: DOMString, in new()
41 public_id: Option<DOMString>, in new()
42 system_id: Option<DOMString>, in new()
51 pub fn name(&self) -> &DOMString { in name()
56 pub fn public_id(&self) -> &DOMString { in public_id()
61 pub fn system_id(&self) -> &DOMString { in system_id()
68 fn Name(&self) -> DOMString { in Name()
73 fn PublicId(&self) -> DOMString { in PublicId()
[all …]
H A Dstorageevent.rs31 pub fn new_inherited(key: Option<DOMString>, in new_inherited()
34 url: DOMString, in new_inherited()
57 key: Option<DOMString>, in new()
58 oldValue: Option<DOMString>, in new()
59 newValue: Option<DOMString>, in new()
60 url: DOMString, in new()
75 type_: DOMString, in Constructor()
94 fn GetKey(&self) -> Option<DOMString> { in GetKey()
99 fn GetOldValue(&self) -> Option<DOMString> { in GetOldValue()
104 fn GetNewValue(&self) -> Option<DOMString> { in GetNewValue()
[all …]
H A Dconsole.rs16 fn send_to_devtools(global: &GlobalScope, level: LogLevel, message: DOMString) { in send_to_devtools()
44 pub fn Log(global: &GlobalScope, messages: Vec<DOMString>) { in Log()
54 pub fn Debug(global: &GlobalScope, messages: Vec<DOMString>) { in Debug()
64 pub fn Info(global: &GlobalScope, messages: Vec<DOMString>) { in Info()
74 pub fn Warn(global: &GlobalScope, messages: Vec<DOMString>) { in Warn()
84 pub fn Error(global: &GlobalScope, messages: Vec<DOMString>) { in Error()
94 pub fn Assert(global: &GlobalScope, condition: bool, message: Option<DOMString>) { in Assert()
105 pub fn Time(global: &GlobalScope, label: DOMString) { in Time()
116 pub fn TimeEnd(global: &GlobalScope, label: DOMString) { in TimeEnd()
H A Dworkernavigator.rs39 fn Product(&self) -> DOMString { in Product()
49 fn AppName(&self) -> DOMString { in AppName()
54 fn AppCodeName(&self) -> DOMString { in AppCodeName()
59 fn Platform(&self) -> DOMString { in Platform()
64 fn UserAgent(&self) -> DOMString { in UserAgent()
69 fn AppVersion(&self) -> DOMString { in AppVersion()
74 fn Language(&self) -> DOMString { in Language()
H A Dprocessinginstruction.rs22 …fn new_inherited(target: DOMString, data: DOMString, document: &Document) -> ProcessingInstruction… in new_inherited()
29 …pub fn new(target: DOMString, data: DOMString, document: &Document) -> DomRoot<ProcessingInstructi… in new()
37 pub fn target(&self) -> &DOMString { in target()
44 fn Target(&self) -> DOMString { in Target()
H A Dperformanceentry.rs24 pub fn new_inherited(name: DOMString, in new_inherited()
25 entry_type: DOMString, in new_inherited()
39 name: DOMString, in new()
40 entry_type: DOMString, in new()
47 pub fn entry_type(&self) -> &DOMString { in entry_type()
51 pub fn name(&self) -> &DOMString { in name()
62 fn Name(&self) -> DOMString { in Name()
67 fn EntryType(&self) -> DOMString { in EntryType()
H A Dstylesheet.rs25 pub fn new_inherited(type_: DOMString, in new_inherited()
26 href: Option<DOMString>, in new_inherited()
37 pub fn new(window: &Window, type_: DOMString, in new()
38 href: Option<DOMString>, in new()
49 fn Type_(&self) -> DOMString { in Type_()
54 fn GetHref(&self) -> Option<DOMString> { in GetHref()
59 fn GetTitle(&self) -> Option<DOMString> { in GetTitle()
H A Dcssstyledeclaration.rs211 fn get_computed_style(&self, property: PropertyId) -> DOMString { in get_computed_style()
228 fn get_property_value(&self, id: PropertyId) -> DOMString { in get_property_value()
309 fn Item(&self, index: u32) -> DOMString { in Item()
314 fn GetPropertyValue(&self, property: DOMString) -> DOMString { in GetPropertyValue()
325 fn GetPropertyPriority(&self, property: DOMString) -> DOMString { in GetPropertyPriority()
345 property: DOMString, in SetProperty()
346 value: DOMString, in SetProperty()
393 fn RemoveProperty(&self, property: DOMString) -> Fallible<DOMString> { in RemoveProperty()
417 fn CssFloat(&self) -> DOMString { in CssFloat()
427 fn IndexedGetter(&self, index: u32) -> Option<DOMString> { in IndexedGetter()
[all …]
H A Dcssstylesheet.rs34 type_: DOMString, in new_inherited()
35 href: Option<DOMString>, in new_inherited()
36 title: Option<DOMString>, in new_inherited()
50 type_: DOMString, in new()
51 href: Option<DOMString>, in new()
52 title: Option<DOMString>, in new()
103 fn InsertRule(&self, rule: DOMString, index: u32) -> Fallible<u32> { in InsertRule()
H A Dstorage.rs62 fn Key(&self, index: u32) -> Option<DOMString> { in Key()
72 fn GetItem(&self, name: DOMString) -> Option<DOMString> { in GetItem()
82 fn SetItem(&self, name: DOMString, value: DOMString) -> ErrorResult { in SetItem()
101 fn RemoveItem(&self, name: DOMString) { in RemoveItem()
123 fn SupportedPropertyNames(&self) -> Vec<DOMString> { in SupportedPropertyNames()
135 fn NamedGetter(&self, name: DOMString) -> Option<DOMString> { in NamedGetter()
139 fn NamedSetter(&self, name: DOMString, value: DOMString) -> ErrorResult { in NamedSetter()
143 fn NamedDeleter(&self, name: DOMString) { in NamedDeleter()
H A Dnavigator.rs59 fn Product(&self) -> DOMString { in Product()
69 fn AppName(&self) -> DOMString { in AppName()
74 fn AppCodeName(&self) -> DOMString { in AppCodeName()
79 fn Platform(&self) -> DOMString { in Platform()
84 fn UserAgent(&self) -> DOMString { in UserAgent()
89 fn AppVersion(&self) -> DOMString { in AppVersion()
99 fn Language(&self) -> DOMString { in Language()
H A Ddomtokenlist.rs65 fn Item(&self, index: u32) -> Option<DOMString> { in Item()
108 fn Toggle(&self, token: DOMString, force: Option<bool>) -> Fallible<bool> { in Toggle()
132 fn Value(&self) -> DOMString { in Value()
137 fn SetValue(&self, value: DOMString) { in SetValue()
142 fn Replace(&self, token: DOMString, new_token: DOMString) -> ErrorResult { in Replace()
168 fn Stringifier(&self) -> DOMString { in Stringifier()
173 fn IndexedGetter(&self, index: u32) -> Option<DOMString> { in IndexedGetter()
H A Ddomstringmap.rs40 fn NamedDeleter(&self, name: DOMString) { in NamedDeleter()
45 fn NamedSetter(&self, name: DOMString, value: DOMString) -> ErrorResult { in NamedSetter()
50 fn NamedGetter(&self, name: DOMString) -> Option<DOMString> { in NamedGetter()
55 fn SupportedPropertyNames(&self) -> Vec<DOMString> { in SupportedPropertyNames()
H A Dmimetype.rs19 fn Type(&self) -> DOMString { in Type()
24 fn Description(&self) -> DOMString { in Description()
29 fn Suffixes(&self) -> DOMString { in Suffixes()
H A Dplugin.rs19 fn Name(&self) -> DOMString { in Name()
24 fn Description(&self) -> DOMString { in Description()
29 fn Filename(&self) -> DOMString { in Filename()
59 fn SupportedPropertyNames(&self) -> Vec<DOMString> { in SupportedPropertyNames()
H A Dattr.rs99 fn LocalName(&self) -> DOMString { in LocalName()
105 fn Value(&self) -> DOMString { in Value()
111 fn SetValue(&self, value: DOMString) { in SetValue()
123 fn TextContent(&self) -> DOMString { in TextContent()
128 fn SetTextContent(&self, value: DOMString) { in SetTextContent()
133 fn NodeValue(&self) -> DOMString { in NodeValue()
138 fn SetNodeValue(&self, value: DOMString) { in SetNodeValue()
143 fn Name(&self) -> DOMString { in Name()
149 fn NodeName(&self) -> DOMString { in NodeName()
154 fn GetNamespaceURI(&self) -> Option<DOMString> { in GetNamespaceURI()
[all …]
H A Dmutationrecord.rs72 attribute_name: Option<DOMString>, in new_inherited()
73 attribute_namespace: Option<DOMString>, in new_inherited()
74 old_value: Option<DOMString>, in new_inherited()
96 fn Type(&self) -> DOMString { in Type()
106 fn GetAttributeName(&self) -> Option<DOMString> { in GetAttributeName()
111 fn GetAttributeNamespace(&self) -> Option<DOMString> { in GetAttributeNamespace()
116 fn GetOldValue(&self) -> Option<DOMString> { in GetOldValue()
H A Dfile.rs29 fn new_inherited(blob_impl: BlobImpl, name: DOMString, in new_inherited()
47 name: DOMString, modified: Option<i64>, typeString: &str) -> DomRoot<File> { in new()
64 filename: DOMString, in Constructor()
86 pub fn name(&self) -> &DOMString { in name()
93 fn Name(&self) -> DOMString { in Name()
H A Dperformance.rs66 … pub fn get_entries_by_name_and_type(&self, name: Option<DOMString>, entry_type: Option<DOMString>) in get_entries_by_name_and_type()
76 pub fn clear_entries_by_name_and_type(&mut self, name: Option<DOMString>, in clear_entries_by_name_and_type()
77 entry_type: Option<DOMString>) { in clear_entries_by_name_and_type()
84 fn get_last_entry_start_time_with_name_and_type(&self, name: DOMString, in get_last_entry_start_time_with_name_and_type()
155 entry_types: Vec<DOMString>, in add_observer()
285 fn GetEntriesByName(&self, name: DOMString, entry_type: Option<DOMString>) in GetEntriesByName()
312 fn ClearMarks(&self, mark_name: Option<DOMString>) { in ClearMarks()
319 measure_name: DOMString, in Measure()
320 start_mark: Option<DOMString>, in Measure()
353 fn ClearMeasures(&self, measure_name: Option<DOMString>) { in ClearMeasures()
/dports/www/kf5-khtml/khtml-5.89.0/src/editing/
H A Djsediting.cpp198 static bool execBold(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execBold()
204 static bool execCopy(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execCopy()
210 static bool execCut(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execCut()
216 static bool execDelete(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execDelete()
254 static bool execIndent(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execIndent()
290 static bool execItalic(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execItalic()
316 static bool execOutdent(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execOutdent()
324 static bool execPaste(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execPaste()
332 static bool execPrint(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execPrint()
338 static bool execRedo(KHTMLPart *part, bool /*userInterface*/, const DOMString &/*value*/) in execRedo()
[all …]
/dports/www/kf5-khtml/khtml-5.89.0/src/dom/
H A Dhtml_base.h40 class DOMString; variable
157 class DOMString; variable
305 class DOMString; variable
536 class DOMString; variable
579 class DOMString; variable
H A Dhtml_block.h42 class DOMString; variable
85 class DOMString; variable
129 class DOMString; variable
215 class DOMString; variable
258 class DOMString; variable
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/bindings/
H A Dstr.rs160 impl DOMString { implementation
337 impl Borrow<str> for DOMString { implementation
344 impl Default for DOMString { implementation
350 impl Deref for DOMString { implementation
359 impl DerefMut for DOMString { implementation
366 impl AsRef<str> for DOMString { implementation
372 impl fmt::Display for DOMString { implementation
379 impl PartialEq<str> for DOMString { implementation
391 impl From<String> for DOMString { implementation
436 impl Into<Vec<u8>> for DOMString { implementation
[all …]
/dports/www/kf5-khtml/khtml-5.89.0/src/css/
H A Dcss_svgvalueimpl.cpp91 void SVGColorImpl::setRGBColorICCColor(const DOMString & /* rgbColor */, const DOMString & /* iccCo… in setRGBColorICCColor()
96 void SVGColorImpl::setColor(unsigned short colorType, const DOMString & /* rgbColor */, const DOMSt… in setColor()
137 SVGPaintImpl::SVGPaintImpl(SVGPaintType paintType, const DOMString &uri, const DOMString &rgbPaint,… in SVGPaintImpl()
183 void SVGPaintImpl::setPaint(SVGPaintType paintType, const DOMString &uri, const DOMString &rgbPaint… in setPaint()

1234567891011