HomeSort by relevance Sort by last modified time
    Searched defs:element (Results 76 - 100 of 1193) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/deqp/executor/
xeTestLogParser.cpp 58 ContainerElement element = m_containerParser.getElement(); local
60 if (element == CONTAINERELEMENT_INCOMPLETE)
63 switch (element)
180 throw ContainerParseError("Unknown container element");
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyDescriptorEditorProvider.java 62 Object element = enumElements[i]; local
63 if (i % 3 == 0 && !(element instanceof String)) {
66 if (i % 3 == 2 && !(element instanceof String)) {
  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 75 public E element() { method in class:ForwardingQueue
76 return delegate().element();
95 * A sensible definition of {@link #peek} in terms of {@link #element}. If you
96 * override {@link #element}, you may wish to override {@link #peek} to
103 return element();
  /external/ltrace/
zero.c 36 struct value element; local
37 if (value_init_element(&element, lhs, i) < 0)
40 int zero = value_is_zero(&element, arguments);
42 value_destroy(&element);
  /external/mesa3d/src/glsl/tests/
uniform_initializer_utils.cpp 68 * Generate a single data element.
164 ir_constant *element; local
166 generate_data_element(mem_ctx, element_type, element, i);
167 values_for_array.push_tail(element);
  /external/smack/src/org/jivesoftware/smackx/pubsub/
NodeExtension.java 19 * A class which represents a common element within the pubsub defined
28 private PubSubElementType element; field in class:NodeExtension
32 * Constructs a <tt>NodeExtension</tt> with an element name specified
35 * @param elem Defines the element name and namespace
40 element = elem;
45 * Constructs a <tt>NodeExtension</tt> with an element name specified
48 * @param elem Defines the element name and namespace
67 return element.getElementName();
72 return element.getNamespace().getXmlns();
  /frameworks/rs/driver/runtime/
rs_element.c 5 * Element
9 Element_t *element = (Element_t *)e.p; local
10 if (element == NULL) {
13 return element->mHal.state.fieldsCount;
18 Element_t *element = (Element_t *)e.p; local
19 if (element == NULL || index >= element->mHal.state.fieldsCount) {
23 rs_element returnElem = {element->mHal.state.fields[index]};
29 Element_t *element = (Element_t *)e.p; local
30 if (element == NULL || index >= element->mHal.state.fieldsCount)
38 Element_t *element = (Element_t *)e.p; local
60 Element_t *element = (Element_t *)e.p; local
69 Element_t *element = (Element_t *)e.p; local
78 Element_t *element = (Element_t *)e.p; local
87 Element_t *element = (Element_t *)e.p; local
96 Element_t *element = (Element_t *)e.p; local
105 Element_t *element = (Element_t *)e.p; local
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
queue.c 39 void *element; member in struct:Node
73 void *element = pop(q); local
74 if (element)
75 free(element);
79 int push(Queue *q, void * element)
86 new_node->element = element;
107 void *element; local
113 element = temp->element;
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
queue.c 38 void *element; member in struct:Node
70 void *element = pop(q); local
72 if (element)
73 free(element);
77 int push(Queue *q, void * element)
84 new_node->element = element;
102 void *element; local
108 element = temp->element;
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentgetelementbyid01.java 47 * The method getElementById returns the element whose ID is given by elementId.
48 * If not such element exists, returns null.
51 * This should return a null element.
80 Element element; local
83 element = doc.getElementById(elementId);
84 assertNull("documentgetelementbyid01", element);
elementsetattributens08.java 38 * Invoke the setAttributeNS method on a new Element object with namespaceURI that is
70 Element element; local
72 element = doc.createElementNS("http://www.w3.org/DOMTest/level2", "dom:elem");
77 element.setAttributeNS("http://www.w3.org/DOMTest/level2", "xmlns", "test");
87 element.setAttributeNS("http://www.w3.org/DOMTest/level2", "xmlns:root", "test");
getElementById02.java 68 Element element; local
70 element = doc.getElementById("Cancun");
71 assertNull("throw_Null", element);
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...]
nodehasattributes03.java 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
35 * Retreive an element node with a default attributes. Verify if hasAttributes returns true.
63 Element element; local
68 element = (Element) elementList.item(0);
69 assertNotNull("empEmployeeNotNull", element);
70 hasAttributes = element.hasAttributes();
nodesetprefix06.java 36 * Invoke the setPrefix method on this Element object with namespaceURI that is different from
66 Element element; local
68 element = doc.createElementNS("http://www.w3.org/DOM/Test/L2", "dom:elem");
73 element.setPrefix("xml");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementSetAttributeNS.java 6 import org.w3c.dom.Element;
16 * The method setAttributeNS adds a new attribute. Create a new element and add
57 Element element; local
62 element = doc.createElementNS("http://www.w3.org/DOM", "dom:elem");
63 element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS",
65 attribute = element.getAttributeNodeNS(
74 Element element; local
81 element = (Element) elementList.item(0)
95 Element element; local
118 Element element; local
151 Element element; local
170 Element element; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetPropertyFix.java 37 import org.w3c.dom.Element;
54 protected String getProposal(Element element) {
72 if (node instanceof Element) {
73 Element element = (Element) node; local
74 String proposal = getProposal(element);
83 //element.setAttributeNS(ANDROID_URI, localAttribute, proposal);
85 element.setAttribute(attribute, proposal)
    [all...]
  /bionic/linker/
linked_list.h 25 T* element; member in struct:LinkedListEntry
36 void push_front(T* const element) {
39 new_entry->element = element;
46 void push_back(T* const element) {
49 new_entry->element = element;
64 T* element = entry->element; local
72 return element;
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpOptions.java 98 for (HeaderElement element : elements) {
99 methods.add(element.getName());
  /external/chromium_org/chrome/renderer/autofill/
password_generation_agent_browsertest.cc 58 WebElement element = local
60 ASSERT_FALSE(element.isNull());
61 WebInputElement target_element = element.to<WebInputElement>();
148 WebElement element = local
150 ASSERT_FALSE(element.isNull());
151 WebInputElement first_password_element = element.to<WebInputElement>();
152 element = document.getElementById(WebString::fromUTF8("second_password"));
153 ASSERT_FALSE(element.isNull());
154 WebInputElement second_password_element = element.to<WebInputElement>();
171 // TODO(zysxqn): Change this back to the address element once Bug 9022
184 WebElement element = local
    [all...]
  /external/chromium_org/components/autofill/content/renderer/
page_click_tracker.cc 39 const WebElement element = node.toConst<WebElement>(); local
40 if (!element.hasHTMLTagName("input"))
42 const WebInputElement* input = blink::toWebInputElement(&element);
54 const WebElement element = node.toConst<WebElement>(); local
55 if (!element.hasHTMLTagName("textarea"))
57 return element.toConst<WebTextAreaElement>();
147 // Node may be null if the target was an SVG instance element from a <use>
  /external/chromium_org/mojo/public/cpp/bindings/lib/
array_serialization.h 99 typename S::Data_* element; local
100 Serialize_(input[i].Pass(), buf, &element);
101 output->at(i) = element;
108 S element; local
109 Deserialize_(input->at(i), &element);
110 result[i] = element.Pass();
129 String_Data* element; local
130 Serialize_(input[i], buf, &element);
131 output->at(i) = element;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.cpp 42 // This function chooses the focused element when showModal() is invoked, as described in the spec for showModal().
45 Element* focusableDescendant = 0;
55 Element* element = toElement(node); local
56 if (element->isFormControlElement()) {
63 if (!focusableDescendant && element->isFocusable())
64 focusableDescendant = element;
106 exceptionState.throwDOMException(InvalidStateError, "The element does not have an 'open' attribute, and therefore cannot be closed.");
147 exceptionState.throwDOMException(InvalidStateError, "The element already has an 'open' attribute, and therefore cannot be opened modally.");
151 exceptionState.throwDOMException(InvalidStateError, "The element is not in a Document.")
    [all...]
HTMLEmbedElement.cpp 50 RefPtrWillBeRawPtr<HTMLEmbedElement> element = adoptRefWillBeNoop(new HTMLEmbedElement(document, createdByParser)); local
51 element->ensureUserAgentShadowRoot();
52 return element.release();
HTMLLabelElement.cpp 40 static bool supportsLabels(const Element& element)
42 if (!element.isHTMLElement())
44 if (!toHTMLElement(element).isLabelable())
46 return toLabelableElement(element).supportLabels();
67 // Search the children and descendants of the label element for a form element.
68 // per http://dev.w3.org/html5/spec/Overview.html#the-label-element
69 // the form element must be "labelable form-associated element"
151 RefPtrWillBeRawPtr<HTMLElement> element = control(); local
    [all...]

Completed in 1237 milliseconds

1 2 34 5 6 7 8 91011>>