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

123

/external/webkit/Source/WebCore/inspector/front-end/
H A Dutilities.js157 Element.prototype.removeStyleClass = function(className)
162 Element.prototype.removeMatchingStyleClasses = function(classNameRegex)
169 Element.prototype.addStyleClass = function(className)
174 Element.prototype.hasStyleClass = function(className)
179 Element.prototype.positionAt = function(x, y)
185 Element.prototype.pruneEmptyTextNodes = function()
196 Element.prototype.isScrolledToBottom = function()
231 Element.prototype.query = function(query)
236 Element.prototype.removeChildren = function()
242 Element
155 Element.prototype.removeStyleClass = function(className) class
[all...]
/external/webkit/PerformanceTests/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/chromium/chrome/browser/resources/ntp4/tools/
H A Dexterns.js8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
0 Element.prototype.classList = {}; class
/external/chromium/chrome/browser/resources/touch_ntp/tools/
H A Dexterns.js8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
0 Element.prototype.classList = {}; class
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_node_data.h42 // Element represents a single node.
43 struct Element { struct in struct:BookmarkNodeData
44 Element();
45 explicit Element(const BookmarkNode* node);
46 ~Element();
58 std::vector<Element> children;
66 // For reading/writing this Element.
154 std::vector<Element> elements;
H A Dbookmark_node_data.cc28 BookmarkNodeData::Element::Element() : is_url(false), id_(0) { function in class:BookmarkNodeData::Element
31 BookmarkNodeData::Element::Element(const BookmarkNode* node) function in class:BookmarkNodeData::Element
37 children.push_back(Element(node->GetChild(i)));
40 BookmarkNodeData::Element::~Element() {
43 void BookmarkNodeData::Element::WriteToPickle(Pickle* pickle) const {
50 for (std::vector<Element>::const_iterator i = children.begin();
57 bool BookmarkNodeData::Element
[all...]
/external/chromium/net/base/
H A Dupload_data.cc19 UploadData::Element::Element() function in class:net::UploadData::Element
30 UploadData::Element::~Element() {
35 void UploadData::Element::SetToChunk(const char* bytes,
44 uint64 UploadData::Element::GetContentLength() {
91 FileStream* UploadData::Element::NewFileStreamForReading() {
132 elements_.push_back(Element());
139 elements_.push_back(Element());
147 elements_.push_back(Element());
[all...]
H A Dupload_data.h45 class Element { class in class:net::UploadData
47 Element();
48 ~Element();
51 // Explicitly sets the type of this Element. Used during IPC
170 std::vector<Element>* elements() {
174 void SetElements(const std::vector<Element>& elements);
176 void swap_elements(std::vector<Element>* elements) {
191 std::vector<Element> elements_;
200 inline bool operator==(const UploadData::Element& a,
201 const UploadData::Element
[all...]
/external/skia/include/gpu/
H A DGrClip.h109 struct Element { struct in class:GrClip
115 bool operator ==(const Element& e) const {
129 bool operator !=(const Element& e) const { return !(*this == e); }
138 SkSTArray<kPreAllocElements, Element> fList;
/external/webkit/Source/WebKit/chromium/public/
H A DWebHTTPBody.h50 struct Element { struct in class:WebKit::WebHTTPBody
81 WEBKIT_API bool elementAt(size_t index, Element&) const;
/external/webkit/Source/WebKit/chromium/src/
H A DWebElement.cpp34 #include "Element.h"
47 return constUnwrap<Element>()->isFormControlElement();
52 return constUnwrap<Element>()->isTextFormControl();
57 return constUnwrap<Element>()->tagName();
62 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
68 return constUnwrap<Element>()->hasAttribute(attrName);
73 return constUnwrap<Element>()->getAttribute(attrName);
79 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionCode);
90 return constUnwrap<Element>()->innerText();
95 return adoptRef(static_cast<Node*>(unwrap<Element>()
[all...]
/external/llvm/include/llvm/Support/
H A DRecycler.h107 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) { argument
108 FreeList.push_front(reinterpret_cast<RecyclerStruct *>(Element));
/external/llvm/lib/Target/
H A DTarget.cpp101 unsigned Element) {
103 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
100 LLVMOffsetOfElement(LLVMTargetDataRef TD, LLVMTypeRef StructTy, unsigned Element) argument
/external/openfst/src/include/fst/extensions/pdt/
H A Dcollection.h67 const T &Element() const { return node_.element; } function in class:fst::Collection::SetIterator
/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/v8/src/
H A Dliveobjectlist.h117 struct Element { struct in class:v8::internal::LiveObjectList
130 static int CompareElement(const Element* a, const Element* b);
178 Element* Find(HeapObject* obj);
193 inline static LiveObjectList::Element*
194 FindElementFor(T (*GetValue)(LiveObjectList::Element*), T key);
196 inline static int GetElementId(Element* element);
197 inline static HeapObject* GetElementObj(Element* element);
205 Element* elements_;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-tuple.cpp175 // Element access
179 typedef typename tuple_element<I-1, tuple<Values...> >::type Element; typedef in class:get_impl
180 typedef typename add_reference<Element>::type RJ;
181 typedef typename add_const_reference<Element>::type PJ;
H A Dexample-bind.cpp132 // Element access
136 typedef typename tuple_element<I-1, tuple<Values...> >::type Element; typedef in class:get_impl
137 typedef typename add_reference<Element>::type RJ;
138 typedef typename add_const_reference<Element>::type PJ;
/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/openfst/src/include/fst/
H A Dpartition.h45 struct Element { struct in class:fst::Partition
46 Element() : value(0), next(0), prev(0) {} function in struct:fst::Partition::Element
47 Element(T v) : value(v), next(0), prev(0) {} function in struct:fst::Partition::Element
50 Element* next;
51 Element* prev;
82 elements_[i] = new Element(i);
108 Element* element = elements_[element_id];
125 Element* element = elements_[element_id];
170 Element* split_el = class_split_[class_id];
177 Element* split_e
258 typedef typename Partition<T>::Element Element; typedef in class:fst::PartitionIterator
[all...]
/external/openfst/src/test/
H A Dfst_test.cc61 typedef pair<Label, Weight> Element; typedef in class:fst::CustomCompactor
63 Element Compact(StateId s, const A &arc) const {
67 Arc Expand(StateId s, const Element &p, uint32 f = kArcValueFlags) const {
/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...]
/external/webkit/Source/WebCore/page/
H A DChromeClient.h47 class Element;
167 virtual void missingPluginButtonClicked(Element*) const { }
274 virtual bool supportsFullScreenForElement(const Element*, bool) { return false; } argument
275 virtual void enterFullScreenForElement(Element*) { }
276 virtual void exitFullScreenForElement(Element*) { }
/external/clang/lib/AST/
H A DCXXInheritance.cpp212 CXXBasePathElement Element; local
213 Element.Base = &*BaseSpec;
214 Element.Class = Record;
216 Element.SubobjectNumber = 0;
218 Element.SubobjectNumber = Subobjects.second;
219 ScratchPath.push_back(Element);

Completed in 3271 milliseconds

123