Searched defs:element (Results 176 - 200 of 675) sorted by relevance

1234567891011>>

/external/chromium/webkit/glue/
H A Dwebaccessibility.cc337 WebKit::WebElement element = node.to<WebKit::WebElement>(); local
338 is_iframe = (element.tagName() == ASCIIToUTF16("IFRAME"));
343 attributes[ATTR_HTML_TAG] = StringToLowerASCII(string16(element.tagName()));
344 for (unsigned i = 0; i < element.attributes().length(); i++) {
347 element.attributes().attributeItem(i).localName(),
348 element.attributes().attributeItem(i).value()));
351 if (element.isFormControlElement()) {
353 element.to<WebKit::WebFormControlElement>();
417 // As an exception, also add children of an iframe element.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DElementParser.java99 public void add(String element, Vector v){ argument
100 if (!v.contains(element))
101 v.add(element);
/external/gtest/samples/
H A Dsample3-inl.h42 // The element type must support copy constructor.
43 template <typename E> // E is the element type
46 // QueueNode is a node in a Queue, which consists of an element of
48 template <typename E> // E is the element type
53 // Gets the element in this node.
54 const E& element() const { return element_; } function in class:QueueNode
61 // Creates a node with a given element value. The next pointer is
73 template <typename E> // E is the element type.
105 // Gets the first element of the queue, or NULL if the queue is empty.
109 // Gets the last element o
117 Enqueue(const E& element) argument
144 E* element = new E(old_head->element()); local
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DDescendingImmutableSortedMultiset.java33 public int count(@Nullable Object element) { argument
34 return forward.count(element);
H A DEmptyImmutableSortedMultiset.java44 public int count(@Nullable Object element) { argument
H A DObjectArrays.java74 * Returns a new array that prepends {@code element} to {@code array}.
76 * @param element the element to prepend to the front of {@code array}
79 * {@code element} occupying the first position, and the
82 public static <T> T[] concat(@Nullable T element, T[] array) { argument
84 result[0] = element;
90 * Returns a new array that appends {@code element} to {@code array}.
93 * @param element the element to append to the end
95 * the same contents as {@code array}, plus {@code element} occupyin
98 concat(T[] array, @Nullable T element) argument
[all...]
H A DSingletonImmutableList.java30 * Implementation of {@link ImmutableList} with exactly one element.
38 final transient E element; field in class:SingletonImmutableList
40 SingletonImmutableList(E element) { argument
41 this.element = checkNotNull(element);
47 return element;
51 return element.equals(object) ? 0 : -1;
55 return Iterators.singletonIterator(element);
59 return element.equals(object) ? 0 : -1;
81 return element;
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSet.java57 public static <E> ImmutableSet<E> of(E element) { argument
58 return new SingletonImmutableSet<E>(element);
159 for (E element : set) {
160 checkNotNull(element);
191 @Override public Builder<E> add(E element) { argument
192 contents.add(checkNotNull(element));
H A DObjectArrays.java47 * Returns a new array that prepends {@code element} to {@code array}.
49 * @param element the element to prepend to the front of {@code array}
52 * {@code element} occupying the first position, and the
55 public static <T> T[] concat(@Nullable T element, T[] array) { argument
57 result[0] = element;
63 * Returns a new array that appends {@code element} to {@code array}.
66 * @param element the element to append to the end
68 * the same contents as {@code array}, plus {@code element} occupyin
71 concat(T[] array, @Nullable T element) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DConstraintsTest.java57 public String checkElement(String element) {
58 if (TEST_ELEMENT.equals(element)) {
61 return element;
323 * @param element the element to be contained in the collection
325 static <E> Collection<E> onceIterableCollection(final E element) { argument
339 return Collections.singleton(element).iterator();
/external/guava/guava-tests/test/com/google/common/eventbus/
H A DEventBusTest.java212 private <T> void assertContains(T element, Collection<T> collection) { argument
213 assertTrue("Collection must contain " + element,
214 collection.contains(element));
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
H A DDOMSerializer.java213 private void writeElement(Element element, Writer writer, int depth) throws IOException { argument
215 writer.append('<').append(element.getTagName());
216 NamedNodeMap attrs = element.getAttributes();
221 NodeList nodes = element.getChildNodes();
223 // no children, so just close off the element and return
234 writer.append("</").append(element.getTagName()).append('>').append(lineSeparator);
/external/protobuf/gtest/samples/
H A Dsample3-inl.h42 // The element type must support copy constructor.
43 template <typename E> // E is the element type
46 // QueueNode is a node in a Queue, which consists of an element of
48 template <typename E> // E is the element type
53 // Gets the element in this node.
54 const E & element() const { return element_; } function in class:QueueNode
61 // Creates a node with a given element value. The next pointer is
63 QueueNode(const E & element) : element_(element), next_(NULL) {} argument
73 template <typename E> // E is the element typ
117 Enqueue(const E & element) argument
144 E * element = new E(old_head->element()); local
[all...]
/external/srec/shared/src/
H A DInt8ArrayListImpl.c75 ESR_ReturnCode Int8ArrayList_Add(Int8ArrayList* self, const asr_int8_t element) argument
88 impl->contents[impl->virtualSize] = element;
93 ESR_ReturnCode Int8ArrayList_Remove(Int8ArrayList* self, const asr_int8_t element) argument
102 if (contents[i] == element)
131 ESR_ReturnCode Int8ArrayList_Contains(Int8ArrayList* self, const asr_int8_t element, ESR_BOOL* exists) argument
140 if (contents[i] == element)
150 ESR_ReturnCode Int8ArrayList_Get(Int8ArrayList* self, size_t index, asr_int8_t* element) argument
155 *element = impl->contents[index];
159 ESR_ReturnCode Int8ArrayList_Set(Int8ArrayList* self, size_t index, const asr_int8_t element) argument
164 impl->contents[index] = element;
188 asr_int8_t element; local
[all...]
H A DIntArrayListImpl.c74 ESR_ReturnCode IntArrayList_Add(IntArrayList* self, const int element) argument
87 impl->contents[impl->virtualSize] = element;
92 ESR_ReturnCode IntArrayList_Remove(IntArrayList* self, const int element) argument
101 if (contents[i] == element)
130 ESR_ReturnCode IntArrayList_Contains(IntArrayList* self, const int element, ESR_BOOL* exists) argument
139 if (contents[i] == element)
149 ESR_ReturnCode IntArrayList_Get(IntArrayList* self, size_t index, int* element) argument
154 *element = impl->contents[index];
158 ESR_ReturnCode IntArrayList_Set(IntArrayList* self, size_t index, const int element) argument
163 impl->contents[index] = element;
[all...]
/external/v8/src/
H A Dliveobjectlist-inl.h92 // specified key. If no matching element is found, then it returns NULL.
100 Element* element = &elements[i]; local
101 if (GetValue(element) == key) {
102 return element;
111 inline int LiveObjectList::GetElementId(LiveObjectList::Element* element) { argument
112 return element->id_;
117 LiveObjectList::GetElementObj(LiveObjectList::Element* element) { argument
118 return element->obj_;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilitySlider.cpp107 return element()->getAttribute(attribute);
134 return element()->value().toFloat();
139 return static_cast<float>(element()->maximum());
144 return static_cast<float>(element()->minimum());
149 HTMLInputElement* input = element();
160 HTMLInputElement* AccessibilitySlider::element() const function in class:WebCore::AccessibilitySlider
/external/webkit/Source/WebCore/bindings/generic/
H A DBindingSecurity.h140 bool BindingSecurity<Binding>::allowSettingSrcToJavascriptURL(State<Binding>* state, Element* element, String name, String value) argument
142 if ((element->hasTagName(HTMLNames::iframeTag) || element->hasTagName(HTMLNames::frameTag)) && equalIgnoringCase(name, "src"))
143 return allowSettingFrameSrcToJavascriptUrl(state, static_cast<HTMLFrameElementBase*>(element), value);
/external/webkit/Source/WebCore/bindings/js/
H A DJSNamedNodeMapCustom.cpp47 Element* element = jsNamedNodeMap->impl()->element();
48 if (!element)
50 return markStack.containsOpaqueRoot(root(element));
86 // We need to keep the wrapper for our underlying NamedNodeMap's element
87 // alive because NamedNodeMap and Attr rely on the element for data, and
90 Element* element = impl()->element(); local
91 if (!element)
93 markStack.addOpaqueRoot(root(element));
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptValue.cpp96 RefPtr<InspectorValue> element = v8ToInspectorValue(value); local
97 if (!element) {
99 element = InspectorValue::null();
101 inspectorArray->pushValue(element);
/external/webkit/Source/WebCore/bridge/
H A Druntime_method.cpp105 // Calling a runtime object of a plugin element?
107 HTMLElement* element = static_cast<JSHTMLElement*>(asObject(thisValue))->impl(); local
108 instance = pluginInstance(element);
/external/webkit/Source/WebCore/css/
H A DCSSFontFaceSource.cpp131 // For SVG fonts parse the external SVG document, and extract the <font> element.
154 // Use the imported <font-face> tag as referencing font-face element for these cases.
201 void CSSFontFaceSource::setSVGFontFaceElement(PassRefPtr<SVGFontFaceElement> element) argument
203 m_svgFontFaceElement = element;
/external/webkit/Source/WebCore/dom/
H A DOptionElement.cpp40 void OptionElement::setSelectedState(OptionElementData& data, Element* element, bool selected) argument
46 element->setNeedsStyleRecalc();
49 int OptionElement::optionIndex(SelectElement* selectElement, const Element* element) argument
62 if (items[i] == element)
70 String OptionElement::collectOptionLabelOrText(const OptionElementData& data, const Element* element) argument
72 Document* document = element->document();
79 text = collectOptionInnerText(element);
83 String OptionElement::collectOptionInnerText(const Element* element) argument
86 Node* n = element->firstChild();
93 n = n->traverseNextSibling(element);
112 collectOptionTextRespectingGroupLabel(const OptionElementData& data, const Element* element) argument
121 collectOptionValue(const OptionElementData& data, const Element* element) argument
141 toOptionElement(Element* element) argument
154 isOptionElement(Element* element) argument
[all...]
H A DScriptElement.h41 Element* element() const { return m_element; } function in class:WebCore::ScriptElement
H A DTreeScope.cpp85 void TreeScope::addElementById(const AtomicString& elementId, Element* element) argument
87 m_elementsById.add(elementId.impl(), element);
90 void TreeScope::removeElementById(const AtomicString& elementId, Element* element) argument
92 m_elementsById.remove(elementId.impl(), element);
103 Element* element = static_cast<Element*>(n); local
104 const AtomicString& accessKey = element->getAttribute(accesskeyAttr);
106 m_elementsByAccessKey.set(accessKey.impl(), element);
150 if (Element* element = getElementById(name))
151 return element;

Completed in 551 milliseconds

1234567891011>>