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

1 2 3 4 5 6 7 891011>>

  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTreeBuilder.java 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
72 HTML.Element element = t.getElement(); local
73 if (element.isEmpty()) {
82 tree.addStartTag(HtmlDocument.createTag(element,
85 EndTag end = HtmlDocument.createEndTag(element);
90 push(element); // Track the open tags
98 HTML.Element element = t.getElement() local
144 HTML.Element element = pop(); local
196 HTML.Element element = tag.getElement(); local
232 HTML.Element element= endTag.getElement(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTreeBuilder.java 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
72 HTML.Element element = t.getElement(); local
73 if (element.isEmpty()) {
82 tree.addStartTag(HtmlDocument.createTag(element,
85 EndTag end = HtmlDocument.createEndTag(element);
90 push(element); // Track the open tags
98 HTML.Element element = t.getElement() local
144 HTML.Element element = pop(); local
196 HTML.Element element = tag.getElement(); local
232 HTML.Element element= endTag.getElement(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
AttributeDescriptorLabelProvider.java 39 public Image getImage(Object element) {
40 if (element instanceof UiAbstractTextAttributeNode) {
41 UiAbstractTextAttributeNode node = (UiAbstractTextAttributeNode) element;
55 public String getText(Object element) {
56 if (element instanceof UiAbstractTextAttributeNode) {
57 return ((UiAbstractTextAttributeNode)element).getCurrentValue();
76 public boolean isLabelProperty(Object element, String property) {
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
RangeInputType.cpp 76 PassRefPtrWillBeRawPtr<InputType> RangeInputType::create(HTMLInputElement& element)
78 return adoptRefWillBeNoop(new RangeInputType(element));
81 RangeInputType::RangeInputType(HTMLInputElement& element)
82 : InputType(element)
104 return parseToDoubleForNumberType(element().value());
127 const Decimal minimum = parseToNumber(element().fastGetAttribute(minAttr), rangeDefaultMinimum);
128 const Decimal maximum = ensureMaximum(parseToNumber(element().fastGetAttribute(maxAttr), rangeDefaultMaximum), minimum, rangeDefaultMaximum);
130 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr));
141 if (element().isDisabledOrReadOnly())
147 ASSERT(element().shadow())
352 Element* element = options->item(i); local
    [all...]
URLInputType.cpp 41 PassRefPtrWillBeRawPtr<InputType> URLInputType::create(HTMLInputElement& element)
43 return adoptRefWillBeNoop(new URLInputType(element));
63 return typeMismatchFor(element().value());
  /external/protobuf/gtest/samples/
sample3-inl.h 42 // 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) {}
73 template <typename E> // E is the element type
144 E * element = new E(old_head->element()); local
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementGetAttributeNodeNS.java 3 import org.w3c.dom.Element;
11 * namespace URI. Create a new element node and add 2 new attribute nodes to it
52 Element element; local
64 element = doc.createElementNS("namespaceURI", "root");
67 element.setAttributeNodeNS(attribute1);
70 element.setAttributeNodeNS(attribute2);
71 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2",
89 Element element; local
    [all...]
AttrGetOwnerElement.java 5 import org.w3c.dom.Element;
39 // Element element;
40 // Element ownerElement;
50 // element = (Element) elementList.item(1);
51 // attributes = element.getAttributes();
60 Element element; local
61 Element ownerElement
86 Element element; local
105 Node element; local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
settings_format_browsertest.js 30 MISSING_CHECK_WRAPPER: 'Element $1 should be enclosed in <div class="$2">',
65 * @param {!Element} element The element that triggered the failure.
68 fail: function(key, element, args) {
69 var subs = [this.getLabel(element)].concat(
82 * @param {!Element} element The target element to identify.
83 * @return {string} Name to facilitate tracking down the element
    [all...]
  /external/chromium_org/components/autofill/content/renderer/
form_autofill_util.cc 68 bool IsOptionElement(const WebElement& element) {
70 return element.hasHTMLTagName(kOption);
73 bool IsScriptElement(const WebElement& element) {
75 return element.hasHTMLTagName(kScript);
78 bool IsNoScriptElement(const WebElement& element) {
80 return element.hasHTMLTagName(kNoScript);
87 bool IsAutofillableElement(const WebFormControlElement& element) {
88 const WebInputElement* input_element = toWebInputElement(&element);
90 IsSelectElement(element) ||
91 IsTextAreaElement(element);
150 const WebElement element = node.toConst<WebElement>(); local
499 WebFormControlElement* element = &control_elements[i]; local
698 blink::WebElement element; local
739 WebFormControlElement element = control_elements[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SetNodeAttributeCommand.cpp 29 #include "core/dom/Element.h"
34 SetNodeAttributeCommand::SetNodeAttributeCommand(PassRefPtrWillBeRawPtr<Element> element,
36 : SimpleEditCommand(element->document())
37 , m_element(element)
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
ClearButtonElement.h 61 DEFINE_TYPE_CASTS(ClearButtonElement, Element, element, element->isClearButtonElement(), element.isClearButtonElement());
DetailsMarkerControl.h 55 RefPtrWillBeRawPtr<DetailsMarkerControl> element = adoptRefWillBeNoop(new DetailsMarkerControl(document)); local
56 element->setShadowPseudoId(AtomicString("-webkit-details-marker", AtomicString::ConstructFromLiteral));
57 return element.release();
  /external/chromium_org/third_party/WebKit/Source/web/
WebElementCollection.cpp 35 #include "core/dom/Element.h"
72 Element* element = m_private->item(m_current); local
73 if (element)
75 return WebElement(element);
  /external/guava/guava-gwt/src/com/google/common/collect/
SingletonImmutableList_CustomFieldSerializer.java 37 Object element = reader.readObject(); local
38 return new SingletonImmutableList<Object>(element);
43 writer.writeObject(instance.element);
SingletonImmutableSet_CustomFieldSerializer.java 36 Object element = reader.readObject(); local
37 return new SingletonImmutableSet<Object>(element);
42 writer.writeObject(instance.element);
  /external/libcxx/test/algorithms/alg.sorting/alg.nth.element/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.nth.element/Android.mk
19 test_name := algorithms/alg.sorting/alg.nth.element/nth_element
23 test_name := algorithms/alg.sorting/alg.nth.element/nth_element_comp
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementById02.java 68 Element element; local
70 element = doc.getElementById("Cancun");
71 assertNull("throw_Null", element);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
StateLabelProvider.java 54 private String getValue(IGLProperty element) {
55 return element.getStringValue();
58 private String getName(IGLProperty element) {
59 IGLProperty parent = element.getParent();
63 int index = ((GLListProperty) parent).indexOf(element);
64 if (element.getType() == GLStateType.GL_STATE_ES1) {
66 } else if (element.getType() == GLStateType.GL_STATE_ES2) {
74 int index = ((GLSparseArrayProperty) parent).keyFor(element);
78 return element.getType().getDescription();
83 Object element = cell.getElement() local
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
AllocationInfo.java 25 import android.renderscript.Element;
32 * their size, element, type, and usage.
45 private final Element mElement;
53 * Create a new {@link AllocationInfo} holding the element, size, and usage
76 * <p>The closest {@link Element} possible is created from the format.</p>
92 Element element; local
95 element = Element.YUV(rs);
98 element = Element.RGBA_8888(rs)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
StatusBarButton.js 38 this.element = document.createElement(elementType);
60 this.element.disabled = !this._enabled;
72 this.element.classList.toggle("hidden", !x);
88 this.element.className = "status-bar-item status-bar-text";
90 this.element.classList.add(className);
91 this.element.textContent = text;
100 this.element.textContent = text;
115 this.element.className = "status-bar-item";
116 this.element.addEventListener("input", this._onChangeCallback.bind(this), false);
118 this.element.style.width = width + "px"
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
concat-jquery-mootools-prototype.js 68 // Otherwise, we inject the element directly into the jQuery object
102 // The number of elements contained in the matched element set
107 // Get the Nth element in the matched element set OR
108 // Get the whole matched element set as a clean array
120 // (returning the new matched element set)
122 // Build a new jQuery matched element set
135 // Return the newly-formed element set
151 // Execute a callback for every element in the matched set.
158 // Determine the position of an element withi
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
Spectrum.js 38 this.element.classList.add("spectrum-container");
39 this.element.tabIndex = 0;
41 var topElement = this.element.createChild("div", "spectrum-top");
51 var rangeContainer = this.element.createChild("div", "spectrum-range-container");
66 var displayContainer = this.element.createChild("div");
74 * @param {!Element} element
79 function hueDrag(element, dragX, dragY)
97 * @param {!Element} element
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXImageMapLink.h 46 void setHTMLAreaElement(HTMLAreaElement* element) { m_areaElement = element; }
49 void setHTMLMapElement(HTMLMapElement* element) { m_mapElement = element; }
57 virtual Element* anchorElement() const OVERRIDE;
58 virtual Element* actionElement() const OVERRIDE;
AXMenuListOption.cpp 39 void AXMenuListOption::setElement(HTMLElement* element)
41 ASSERT_ARG(element, isHTMLOptionElement(element));
42 m_element = element;
45 Element* AXMenuListOption::actionElement() const
52 // isDisabledFormControl() returns true if the parent <select> element is disabled,

Completed in 1307 milliseconds

1 2 3 4 5 6 7 891011>>