Searched defs:Element (Results 1 - 19 of 19) sorted by relevance

/external/webkit/WebCore/inspector/front-end/
H A Dutilities.js172 Element.prototype.removeStyleClass = function(className)
188 Element.prototype.removeMatchingStyleClasses = function(classNameRegex)
195 Element.prototype.addStyleClass = function(className)
201 Element.prototype.hasStyleClass = function(className)
216 Element.prototype.positionAt = function(x, y)
251 Element.prototype.query = function(query)
256 Element.prototype.removeChildren = function()
261 Element.prototype.isInsertionCaretInside = function()
270 Element.prototype.__defineGetter__("totalOffsetLeft", function()
278 Element
170 Element.prototype.removeStyleClass = function(className) class
[all...]
/external/webkit/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js412 var div = new Element('div');
1521 return Element.extend(element);
1530 results.push(Element.extend(query.snapshotItem(i)));
1558 var element = this.Element;
1559 this.Element = function(tagName, attributes) {
1562 var cache = Element.cache;
1566 return Element.writeAttribute(document.createElement(tagName), attributes);
1568 if (!cache[tagName]) cache[tagName] = Element.extend(document.createElement(tagName));
1569 return Element.writeAttribute(cache[tagName].cloneNode(false), attributes);
1571 Object.extend(this.Element, elemen
[all...]
H A Dmootools-1.2.2-core-nc.js397 if (!win.Element){
398 win.Element = $empty;
400 win.Element.prototype = (Browser.Engine.webkit) ? window["[[DOMElement.prototype]]"] : {};
1294 Script: Element.js
1302 var Element = new Native({
1304 name: 'Element',
1306 legacy: window.Element,
1309 var konstructor = Element.Constructors.get(tag);
1316 Element.Prototype[key] = value;
1331 Element
1329 Element.Prototype = {$family: {name: 'element'}}; class
[all...]
/external/webkit/WebKit/chromium/src/
H A DWebElement.cpp34 #include "Element.h"
41 WebElement::WebElement(const WTF::PassRefPtr<WebCore::Element>& elem)
46 WebElement& WebElement::operator=(const WTF::PassRefPtr<WebCore::Element>& elem)
52 WebElement::operator WTF::PassRefPtr<Element>() const
54 return PassRefPtr<Element>(static_cast<Element*>(m_private));
59 return constUnwrap<Element>()->tagName();
64 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
70 return constUnwrap<Element>()->hasAttribute(attrName);
75 return constUnwrap<Element>()
[all...]
/external/webkit/WebKit/chromium/public/
H A DWebHTTPBody.h50 struct Element { struct in class:WebKit::WebHTTPBody
80 WEBKIT_API bool elementAt(size_t index, Element&) const;
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DElement.java18 An Element has an element type, attributes, and a successor Element
23 public class Element { class
28 private Element theNext; // successor of element
32 Return an Element from a specified ElementType.
37 public Element(ElementType type, boolean defaultAttributes) { method in class:Element
65 public Element next() { return theNext; }
72 public void setNext(Element next) { theNext = next; }
137 public boolean canContain(Element other) {
/external/emma/ant/ant14/com/vladium/emma/report/
H A DReportCfg.java32 * ReportCfg is a container for report type {@link ReportCfg.Element}s that are
53 public static abstract class Element implements IReportEnums, IReportProperties class in class:ReportCfg
113 Element (final Task task, final IProperties settings) method in class:ReportCfg.Element
160 public static class Element_HTML extends Element
179 public static class Element_TXT extends Element
198 public static class Element_LCOV extends Element
216 public static class Element_XML extends Element
285 final Element cfg = (Element) i.next ();
402 protected Element addCfgElemen
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dpartition.h40 struct Element { struct in class:fst::Partition
41 Element() : value(0), next(0), prev(0) {} function in struct:fst::Partition::Element
42 Element(T v) : value(v), next(0), prev(0) {} function in struct:fst::Partition::Element
45 Element* next;
46 Element* prev;
77 elements_[i] = new Element(i);
103 Element* element = elements_[element_id];
120 Element* element = elements_[element_id];
165 Element* split_el = class_split_[class_id];
172 Element* split_e
253 typedef typename Partition<T>::Element Element; typedef in class:fst::PartitionIterator
[all...]
H A Dfactor-weight.h153 struct Element { struct in class:fst::FactorWeightFstImpl
154 Element() {} function in struct:fst::FactorWeightFstImpl::Element
156 Element(StateId s, Weight w) : state(s), weight(w) {} function in struct:fst::FactorWeightFstImpl::Element
182 StateId start = FindState(Element(fst_->Start(), Weight::One()));
190 const Element &e = elements_[s];
231 StateId FindState(const Element &e) {
247 element_map_.insert(pair<const Element, StateId>(e, s));
256 Element e = elements_[s];
265 StateId d = FindState(Element(arc.nextstate, Weight::One()));
270 StateId d = FindState(Element(ar
[all...]
H A Dsynchronize.h58 struct Element { struct in class:fst::SynchronizeFstImpl
59 Element() {} function in struct:fst::SynchronizeFstImpl::Element
61 Element(StateId s, const String *i, const String *o) function in struct:fst::SynchronizeFstImpl::Element
100 StateId start = FindState(Element(fst_->Start(), empty, empty));
108 const Element &e = elements_[s];
193 StateId FindState(const Element &e) {
200 element_map_.insert(pair<const Element, StateId>(e, s));
209 Element e = elements_[s];
219 StateId d = FindState(Element(arc.nextstate, istring, ostring));
225 StateId d = FindState(Element(ar
[all...]
H A Drmepsilon.h78 struct Element { struct in class:fst::RmEpsilonState
83 Element() {} function in struct:fst::RmEpsilonState::Element
85 Element(Label i, Label o, StateId s) function in struct:fst::RmEpsilonState::Element
91 size_t operator()(const Element& e) const {
105 bool operator()(const Element &e1, const Element &e2) const {
112 typedef hash_map<Element, pair<StateId, ssize_t>,
163 Element element(arc.ilabel, arc.olabel, arc.nextstate);
167 pair<Element, pair<StateId, ssize_t> >
H A Ddeterminize.h213 struct Element { struct in class:fst::DeterminizeFsaImpl
214 Element() {} function in struct:fst::DeterminizeFsaImpl::Element
216 Element(StateId s, Weight w) : state_id(s), weight(w) {} function in struct:fst::DeterminizeFsaImpl::Element
221 typedef slist<Element> Subset;
245 Element element(s, Weight::One());
257 Element &element = *siter;
310 Element &src_element = *siter;
315 Element dest_element(arc.nextstate,
336 Element &dest_element = *diter;
342 Element *matching_elemen
[all...]
/external/webkit/WebCore/dom/
H A DElement.h45 class Element : public ContainerNode { class in namespace:WebCore
47 static PassRefPtr<Element> create(const QualifiedName&, Document*);
48 virtual ~Element();
130 Element* offsetParent();
172 PassRefPtr<Element> cloneElementWithChildren();
173 PassRefPtr<Element> cloneElementWithoutChildren();
195 virtual void copyNonAttributeProperties(const Element* /*source*/) { }
242 Element* firstElementChild() const;
243 Element* lastElementChild() const;
244 Element* previousElementSiblin
[all...]
H A DElement.cpp27 #include "Element.h"
64 Element::Element(const QualifiedName& tagName, Document* document, ConstructionType type) function in class:WebCore::Element
70 PassRefPtr<Element> Element::create(const QualifiedName& tagName, Document* document)
72 return adoptRef(new Element(tagName, document, CreateElement));
75 Element::~Element()
81 inline ElementRareData* Element::rareData() const
87 inline ElementRareData* Element
[all...]
/external/dbus/bus/
H A Dconfig-parser.c96 } Element; typedef in typeref:struct:__anon669
107 DBusList *stack; /**< stack of Element */
184 static Element*
188 Element *e;
192 e = dbus_new0 (Element, 1);
208 element_free (Element *e)
219 Element *e;
226 static Element*
229 Element *e;
239 Element *
[all...]
/external/tinyxml/
H A Dtinyxml.h138 A Document can contain: Element (container or leaf)
143 An Element can contain: Element (container or leaf)
441 Element: name of the element
462 Element: name of the element
590 Calls NextSibling and ToElement. Will skip all non-Element
597 Calls NextSibling and ToElement. Will skip all non-Element
804 The set can be changed transparent to the Element and Declaration
987 /// Creates a new Element and returns it - the returned element is a copy.
989 // Print the Element t
1496 TiXmlElement* Element() const { return ( ( node && node->ToElement() ) ? node->ToElement() : 0 ); } function in class:TiXmlHandle
[all...]
/external/v8/src/
H A Dheap.h1614 Element e = elements_[hash];
1655 struct Element { struct in class:v8::internal::TranscendentalCache
1681 Element elements_[kCacheSize];
H A Dparser.cc59 class Element { class in class:v8::internal::PositionStack
61 Element(PositionStack* stack, int value) { function in class:v8::internal::PositionStack::Element
68 Element* previous() { return previous_; }
71 Element* previous_;
84 Element* top() { return top_; }
85 void set_top(Element* value) { top_ = value; }
86 Element* top_;
3120 PositionStack::Element pos(stack, scanner().location().beg_pos);
/external/emma/lib/
H A Demma_ant.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/emma/ com/vladium/emma/ANTMain ...

Completed in 177 milliseconds