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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLFormattingElementList.h 36 class Element;
67 Element* element() const function in class:WebCore::HTMLFormattingElementList::Entry
70 // callers should check isMarker() before calling element().
72 return m_item->element();
77 bool operator==(Element* element) const { return !m_item ? !element : m_item->element() == element; }
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmpplogintask.cc 82 XmppLoginTask::IncomingStanza(const XmlElement *element, bool isStart) {
83 pelStanza_ = element;
102 const XmlElement * element = NULL; local
126 if (NULL == (element = NextStanza()))
129 if (!isStart_ || !HandleStartStream(element))
137 if (NULL == (element = NextStanza()))
140 if (!HandleFeatures(element))
176 if (NULL == (element = NextStanza()))
178 if (element->Name() != QN_TLS_PROCEED)
243 if (NULL == (element = NextStanza())
    [all...]
  /external/chromium_org/ui/gfx/animation/
animation_container.cc 27 void AnimationContainer::Start(AnimationContainerElement* element) {
28 DCHECK(elements_.count(element) == 0); // Start should only be invoked if the
29 // element isn't running.
33 SetMinTimerInterval(element->GetTimerInterval());
34 } else if (element->GetTimerInterval() < min_timer_interval_) {
35 SetMinTimerInterval(element->GetTimerInterval());
38 element->SetStartTime(last_tick_time_);
39 elements_.insert(element);
42 void AnimationContainer::Stop(AnimationContainerElement* element) {
43 DCHECK(elements_.count(element) > 0); // The element must be running
    [all...]
  /external/srec/shared/include/
Int8ArrayList.h 43 * Adds element to list.
46 * @param element Element to be added
48 ESR_ReturnCode(*add)(struct Int8ArrayList_t* self, asr_int8_t element);
51 * Removes element from list.
54 * @param element Element to be removed
56 ESR_ReturnCode(*remove)(struct Int8ArrayList_t* self, asr_int8_t element);
66 * Indicates if element is contained within the list.
69 * @param element Element to check fo
    [all...]
  /external/srec/shared/src/
Int8ArrayList.c 26 ESR_ReturnCode Int8ArrayListAdd(Int8ArrayList* self, asr_int8_t element)
33 return self->add(self, element);
36 ESR_ReturnCode Int8ArrayListRemove(Int8ArrayList* self, asr_int8_t element)
43 return self->remove(self, element);
56 ESR_ReturnCode Int8ArrayListContains(Int8ArrayList* self, asr_int8_t element, ESR_BOOL* exists)
63 return self->contains(self, element, exists);
76 ESR_ReturnCode Int8ArrayListGet(Int8ArrayList* self, size_t index, asr_int8_t* element)
83 return self->get(self, index, element);
86 ESR_ReturnCode Int8ArrayListSet(Int8ArrayList* self, size_t index, asr_int8_t element)
93 return self->set(self, index, element);
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
loop.js 15 function loop(element, loopCount) {
16 if (element instanceof HTMLMediaElement)
17 loopHTML5Element(element, loopCount);
22 function loopHTML5Element(element, loopCount) {
23 window.__registerHTML5ErrorEvents(element);
24 element['loop_completed'] = false;
29 element.pause();
30 element.removeEventListener('seeked', onLoop);
31 element['loop_completed'] = true;
35 element.dispatchEvent(endLoopEvent)
    [all...]
seek.js 18 function seekHTML5Element(element, seekTime, logSeekTime, seekLabel) {
20 seekHTML5ElementPostLoad(element, seekTime, logSeekTime, seekLabel);
22 if (element.readyState == element.HAVE_NOTHING) {
24 element.removeEventListener('loadedmetadata', onLoadedMetaData);
27 element.addEventListener('loadedmetadata', onLoadedMetaData);
28 element.load();
34 function seekHTML5ElementPostLoad(element, seekTime, logSeekTime, seekLabel) {
35 // Reset seek completion since multiple seeks can run on same media element.
36 element['seeked_completed'] = false
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Constraints.java 49 public Object checkElement(Object element) {
50 return checkNotNull(element);
59 * Returns a constraint that verifies that the element is not null. If the
60 * element is null, a {@link NullPointerException} is thrown.
98 @Override public boolean add(E element) {
99 constraint.checkElement(element);
100 return delegate.add(element);
136 @Override public boolean add(E element) {
137 constraint.checkElement(element);
138 return delegate.add(element);
    [all...]
ForwardingMultiset.java 61 public int count(Object element) {
62 return delegate().count(element);
66 public int add(E element, int occurrences) {
67 return delegate().add(element, occurrences);
71 public int remove(Object element, int occurrences) {
72 return delegate().remove(element, occurrences);
94 public int setCount(E element, int count) {
95 return delegate().setCount(element, count);
99 public boolean setCount(E element, int oldCount, int newCount) {
100 return delegate().setCount(element, oldCount, newCount)
    [all...]
  /external/ceres-solver/include/ceres/
ordered_groups.h 46 // that can serve as a key in a map or an element of a set.
48 // An element can only belong to one group at a time. A group may
55 // Add an element to a group. If a group with this id does not
57 // times for the same element. Group ids should be non-negative
60 // Return value indicates if adding the element was a success.
61 bool AddElementToGroup(const T element, const int group) {
66 typename map<T, int>::const_iterator it = element_to_group_.find(element);
69 // Element is already in the right group, nothing to do.
73 group_to_elements_[it->second].erase(element);
79 element_to_group_[element] = group
    [all...]
  /external/chromium_org/chrome/renderer/safe_browsing/
malware_dom_details.cc 75 blink::WebElement element = elements.firstItem(); local
76 for (; !element.isNull(); element = elements.nextItem()) {
77 if (element.hasTagName("iframe") || element.hasTagName("frame") ||
78 element.hasTagName("embed") || element.hasTagName("script")) {
79 HandleElement(element, &details_node, resources);
93 const blink::WebElement& element,
96 if (!element.hasAttribute("src"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
RenderTreeBuilder.cpp 48 Element* element = m_node->isElementNode() ? toElement(m_node) : 0; local
50 if (element && element->isInTopLayer())
51 return NodeRenderingTraversal::nextInTopLayer(element);
64 Element* element = m_node->isElementNode() ? toElement(m_node) : 0; local
66 if (element && m_renderingParent->renderer()) {
70 if (element->isInTopLayer())
82 // SVG elements only render when inside <svg>, or if the element is an <svg> itself
    [all...]
SelectorQuery.cpp 44 typedef Element* OutputType;
46 ALWAYS_INLINE static void appendElement(OutputType& output, Element& element)
49 output = &element;
56 ALWAYS_INLINE static void appendElement(OutputType& output, Node& element)
58 output.append(&element);
75 Element* next()
77 Element* current = m_currentElement;
87 Element* nextInternal(Element* element
215 Element* element = rootNode.treeScope().getElementById(selector->value()); local
293 Element& element = *traverseRoots.next(); local
392 Element* element = toElement(node); local
434 Element& element = *elements[i]; local
445 Element* element = rootNode.treeScope().getElementById(idToMatch); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementScheduler.cpp 35 #include "core/dom/Element.h"
49 void CustomElementScheduler::scheduleCallback(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, PassRefPtrWillBeRawPtr<Element> element, CustomElementLifecycleCallbacks::CallbackType type)
56 CustomElementCallbackQueue& queue = instance().schedule(element);
60 void CustomElementScheduler::scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks> callbacks, PassRefPtrWillBeRawPtr<Element> element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue)
65 CustomElementCallbackQueue& queue = instance().schedule(element);
69 void CustomElementScheduler::resolveOrScheduleResolution(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> context, PassRefPtrWillBeRawPtr<Element> element, const CustomElementDescriptor& descriptor)
72 context->resolve(element.get(), descriptor)
    [all...]
CustomElementUpgradeCandidateMap.cpp 34 #include "core/dom/Element.h"
47 // element; no need for explicit removal.
54 void CustomElementUpgradeCandidateMap::add(const CustomElementDescriptor& descriptor, Element* element)
56 observe(element);
58 UpgradeCandidateMap::AddResult result = m_upgradeCandidates.add(element, descriptor);
67 elements->add(element);
70 void CustomElementUpgradeCandidateMap::elementWasDestroyed(Element* element)
72 CustomElementObserver::elementWasDestroyed(element);
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeHasAttributes.java 26 import org.w3c.dom.Element;
35 * The method hasAttributes returns whether this node (if it is an element) has
36 * any attributes. Retreive an element node without attributes. Verify if
37 * hasAttributes returns false. Retreive another element node with attributes.
76 Element element; local
81 element = (Element) elementList.item(0);
82 hasAttributes = element.hasAttributes();
85 element = (Element) elementList.item(0)
100 Element element; local
116 Element element; local
    [all...]
NamedNodeMapSetNamedItemNS.java 29 import org.w3c.dom.Element;
41 * Retreive the first element whose localName is address and namespaceURI
86 Node element; local
95 element = elementList.item(0);
96 attributes = element.getAttributes();
98 ((Element) /* Node */element).setAttributeNodeNS(newAttr1);
107 Element element; local
113 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root")
131 Element element; local
166 Element element; local
232 Element element; local
258 Element element; local
284 Element element; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Dialog.js 33 * @param {!Element} relativeToElement
43 this._glassPane.element.tabIndex = 0;
44 this._glassPane.element.addEventListener("focus", this._onGlassPaneFocus.bind(this), false);
45 this._glassPane.element.addEventListener("keydown", this._onGlassPaneKeyDown.bind(this), false);
47 this._element = this._glassPane.element.createChild("div");
71 * @param {!Element} relativeToElement
149 /** @type {!Element} */
150 this.element;
155 * @param {!Element} element
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormAssociatedElement.cpp 79 HTMLElement* element = toHTMLElement(this); local
80 if (element->fastHasAttribute(formAttr))
92 HTMLElement* element = toHTMLElement(this);
93 if (element->fastHasAttribute(formAttr))
99 HTMLElement* element = toHTMLElement(this); local
100 if (insertionPoint->inDocument() && element->fastHasAttribute(formAttr))
102 // If the form and element are both in the same tree, preserve the connection to the form.
104 if (m_form && element->highestAncestorOrSelf() != m_form->highestAncestorOrSelf())
108 HTMLFormElement* FormAssociatedElement::findAssociatedForm(const HTMLElement* element)
110 const AtomicString& formId(element->fastGetAttribute(formAttr))
180 HTMLElement* element = toHTMLElement(this); local
206 const HTMLElement* element = toHTMLElement(this); local
281 HTMLElement* element = toHTMLElement(this); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
Placard.js 34 this.element = document.createElementWithClass("div", "placard");
35 this.element.placard = this;
37 this.subtitleElement = this.element.createChild("div", "subtitle");
38 this.titleElement = this.element.createChild("div", "title");
94 this.element.classList.add("selected");
102 this.element.classList.remove("selected");
126 this.element.classList.toggle("hidden", x);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_draw.c 56 const struct pipe_vertex_element *element = local
59 &vertex_buffers[element->vertex_buffer_index];
72 format_desc = util_format_description(element->src_format);
85 if (element->src_offset >= buffer_size) {
90 buffer_size -= element->src_offset;
104 if (element->instance_divisor == 0) {
111 assert((info->start_instance + info->instance_count)/element->instance_divisor
  /external/mesa3d/src/gallium/auxiliary/util/
u_draw.c 56 const struct pipe_vertex_element *element = local
59 &vertex_buffers[element->vertex_buffer_index];
72 format_desc = util_format_description(element->src_format);
85 if (element->src_offset >= buffer_size) {
90 buffer_size -= element->src_offset;
104 if (element->instance_divisor == 0) {
111 assert((info->start_instance + info->instance_count)/element->instance_divisor
  /frameworks/minikin/include/minikin/
SparseBitSet.h 72 // invariant: sizeof(element) == (1 << kLogBytesPerEl)
73 typedef uint32_t element; typedef in class:android::SparseBitSet
74 static const element kElAllOnes = ~((element)0);
75 static const element kElFirst = ((element)1) << kElMask;
79 static int CountLeadingZeros(element x);
83 UniquePtr<element[]> mBitmaps;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateelementNS01.java 47 * The method createElementNS creates an element of the given valid qualifiedName and NamespaceURI.
50 * and qualifiedName. Check if a valid Element object is returned with the same node attributes.
79 Element element; local
88 element = doc.createElementNS(namespaceURI, qualifiedName);
89 nodeName = element.getNodeName();
90 nsURI = element.getNamespaceURI();
91 localName = element.getLocalName();
92 prefix = element.getPrefix();
93 tagName = element.getTagName()
    [all...]
elementgetelementsbytagnamens04.java 36 * Create a new element node ('root') and append three newly created child nodes (all have
76 Element element; local
77 Element child1;
78 Element child2;
79 Element child3;
85 element = doc.createElementNS("http://www.w3.org/DOM", "root");
89 appendedChild = element.appendChild(child1);
90 appendedChild = element.appendChild(child2);
91 appendedChild = element.appendChild(child3)
    [all...]

Completed in 887 milliseconds

1 2 3 4 5 6 78 91011>>