HomeSort by relevance Sort by last modified time
    Searched refs:element (Results 151 - 175 of 3048) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGImageLoader.h 31 static PassOwnPtrWillBeRawPtr<SVGImageLoader> create(SVGImageElement* element)
33 return adoptPtrWillBeNoop(new SVGImageLoader(element));
SVGPathSegLinetoHorizontal.h 30 SVGPathSegLinetoHorizontal(SVGPathElement* element, SVGPathSegRole role, float x)
31 : SVGPathSegWithContext(element, role)
SVGPathSegLinetoVertical.h 30 SVGPathSegLinetoVertical(SVGPathElement* element, SVGPathSegRole role, float y)
31 : SVGPathSegWithContext(element, role)
SVGAltGlyphElement.cpp 75 Element* element = targetElementFromIRIString(getAttribute(XLinkNames::hrefAttr), treeScope(), &target); local
76 if (!element)
79 if (isSVGGlyphElement(*element)) {
84 if (isSVGAltGlyphDefElement(*element) && toSVGAltGlyphDefElement(*element).hasValidGlyphElements(glyphNames))
SVGFEMergeElement.cpp 44 for (SVGFEMergeNodeElement* element = Traversal<SVGFEMergeNodeElement>::firstChild(*this); element; element = Traversal<SVGFEMergeNodeElement>::nextSibling(*element)) {
45 FilterEffect* mergeEffect = filterBuilder->getEffectById(AtomicString(element->in1()->currentValue()->value()));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DatabaseTableView.js 37 this.element.classList.add("storage-view");
38 this.element.classList.add("table");
52 return [this.refreshButton.element];
72 this.element.removeChildren();
77 this._emptyView.show(this.element);
80 dataGrid.show(this.element);
87 this.element.removeChildren();
92 this.element.appendChild(errorMsgElement);
  /external/chromium_org/third_party/WebKit/public/web/
WebInputElement.h 44 // Provides readonly access to some properties of a DOM input element node.
48 WebInputElement(const WebInputElement& element) : WebFormControlElement(element) { }
50 WebInputElement& operator=(const WebInputElement& element)
52 WebFormControlElement::assign(element);
55 void assign(const WebInputElement& element) { WebFormControlElement::assign(element); }
86 // If true, forces the text of the element to be visible.
98 inline const WebInputElement* toWebInputElement(const WebElement* element)
100 return toWebInputElement(const_cast<WebElement*>(element));
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
discoitemsquerytask.cc 42 XmlElement* element = new XmlElement(QN_DISCO_ITEMS_QUERY, true); local
44 element->AddAttr(QN_NODE, node);
46 return element;
67 bool DiscoItemsQueryTask::ParseItem(const XmlElement* element,
69 if (element->HasAttr(QN_JID)) {
73 item->jid = element->Attr(QN_JID);
74 item->name = element->Attr(QN_NAME);
75 item->node = element->Attr(QN_NODE);
  /external/chromium_org/v8/test/mjsunit/
array-shift2.js 8 get: function() { return "element 1"; },
15 assertEquals(["element 1",2], test(["0",,2]));
16 assertEquals(["element 1",{}], test([{},,{}]));
18 assertEquals(["element 1",0], test([{},,0]));
array-shift3.js 7 Array.prototype[1] = "element 1";
12 assertEquals(["element 1",{}], test([0,,{}]));
13 assertEquals(["element 1",10], test([9,,10]));
15 assertEquals(["element 1",10], test([9,,10]));
  /external/droiddriver/src/com/google/android/droiddriver/validators/
Validator.java 29 * Returns true if this {@link Validator} applies to {@code element} on this
32 boolean isApplicable(UiElement element, Action action);
35 * Returns {@code null} if {@code element} is valid on this {@code action},
38 String validate(UiElement element, Action action);
  /external/guava/guava/src/com/google/common/collect/
Multiset.java 35 * element equivalence", below) are referred to as <i>occurrences</i> of the
36 * same single element. The total number of occurrences of an element in a
37 * multiset is called the <i>count</i> of that element (the terms "frequency"
39 * of an element is represented as an {@code int}, a multiset may never contain
40 * more than {@link Integer#MAX_VALUE} occurrences of any one element.
44 * #count}, which returns the count of an element. There are five new
46 * or remove multiple occurrences of an element at once, or to set the count of
47 * an element to a specific value. These modification operations are optional,
53 * Multiset.Entry} instances, each providing both a distinct element and th
    [all...]
ForwardingList.java 65 public void add(int index, E element) {
66 delegate().add(index, element);
80 public int indexOf(Object element) {
81 return delegate().indexOf(element);
85 public int lastIndexOf(Object element) {
86 return delegate().lastIndexOf(element);
105 public E set(int index, E element) {
106 return delegate().set(index, element);
130 @Beta protected boolean standardAdd(E element){
131 add(size(), element); local
    [all...]
  /frameworks/rs/cpu_ref/linkloader/utils/
traits.h 27 Type element; member in struct:TypeTraits::AlignmentTest
32 enum { align = offsetof(AlignmentTest, element) };
  /frameworks/rs/driver/
rsdElement.cpp 25 bool rsdElementInit(const Context *, const Element *e) {
29 void rsdElementDestroy(const Context *rsc, const Element *e) {
33 const Element *element,
36 obj->p = element;
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementTimeContainerImpl.java 30 ElementTimeContainerImpl(SMILElement element) {
31 super(element);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DatasetDOMStringMap.h 34 class Element;
39 static PassOwnPtrWillBeRawPtr<DatasetDOMStringMap> create(Element* element)
41 return adoptPtrWillBeNoop(new DatasetDOMStringMap(element));
55 virtual Element* element() OVERRIDE { return m_element; }
60 explicit DatasetDOMStringMap(Element* element)
61 : m_element(element)
65 RawPtrWillBeMember<Element> m_element
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
NativeBreakpointsSidebarPane.js 51 _addListElement: function(element, beforeElement)
54 this.listElement.insertBefore(element, beforeElement);
60 this.listElement.appendChild(element);
64 _removeListElement: function(element)
66 this.listElement.removeChild(element);
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
format_element.cc 43 const i18n::addressinput::FormatElement& element) {
44 if (element.IsField()) {
45 o << "Field: " << element.GetField();
46 } else if (element.IsNewline()) {
49 o << "Literal: " << element.GetLiteral();
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
play.js 11 console.log('Playing element: ' + mediaElements[i].src);
16 function play(element) {
17 if (element instanceof HTMLMediaElement)
18 playHTML5Element(element);
23 function playHTML5Element(element) {
24 window.__registerHTML5ErrorEvents(element);
25 window.__registerHTML5EventCompleted(element, 'playing');
26 window.__registerHTML5EventCompleted(element, 'ended');
30 element.dispatchEvent(willPlayEvent);
31 element.play()
    [all...]
  /external/srec/shared/include/
IntArrayListImpl.h 42 * Virtual number of allocated element slots.
46 * Actual number of allocated element slots.
56 ESR_SHARED_API ESR_ReturnCode IntArrayList_Add(IntArrayList* self, const int element);
61 ESR_SHARED_API ESR_ReturnCode IntArrayList_Remove(IntArrayList* self, const int element);
71 ESR_SHARED_API ESR_ReturnCode IntArrayList_Contains(IntArrayList* self, const int element, ESR_BOOL* exists);
76 ESR_SHARED_API ESR_ReturnCode IntArrayList_Get(IntArrayList* self, size_t index, int* element);
81 ESR_SHARED_API ESR_ReturnCode IntArrayList_Set(IntArrayList* self, size_t index, const int element);
  /frameworks/base/core/java/com/android/internal/util/
GrowingArrayUtils.java 32 * Appends an element to the end of the array, growing the array if there is no more room.
33 * @param array The array to which to append the element. This must NOT be null.
36 * @param element The element to append.
37 * @return the array to which the element was appended. This may be different than the given
40 public static <T> T[] append(T[] array, int currentSize, T element) {
50 array[currentSize] = element;
57 public static int[] append(int[] array, int currentSize, int element) {
65 array[currentSize] = element;
72 public static long[] append(long[] array, int currentSize, long element) {
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementhasattribute03.java 35 * on this element or has a default value, false otherwise.
36 * Create an element Node and an attribute Node. Invoke hasAttribute method
37 * to verify that there is no attribute. Append the attribute node to the element node.
38 * Invoke the hasAttribute method on the element and verify if it returns true.
67 Element element; local
72 element = doc.createElement("address");
74 state = element.hasAttribute("domestic");
76 newAttribute = element.setAttributeNode(attribute);
77 state = element.hasAttribute("domestic")
    [all...]
nodehasattributes01.java 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
35 * Retreive an element node without attributes. Verify if hasAttributes returns false.
36 * Retreive another element node with attributes. Verify if hasAttributes returns true.
64 Element element; local
69 element = (Element) elementList.item(0);
70 hasAttributes = element.hasAttributes();
73 element = (Element) elementList.item(0)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementRemoveAttributeNS.java 3 import org.w3c.dom.Element;
11 * URI. Create a new element and add a new attribute node to it. Remove the
13 * was remove by invoking the hasAttributeNS method on the element and check if
52 Element element; local
57 element = doc.createElementNS("http://www.w3.org/DOM", "elem");
60 element.setAttributeNodeNS(attribute);
61 element.removeAttributeNS(
63 state = element.hasAttributeNS(

Completed in 1435 milliseconds

1 2 3 4 5 67 8 91011>>