HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 101 - 125 of 1680) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
RadioNodeList.h 49 virtual bool nodeMatches(Element*) const;
53 bool checkElementMatchesRadioNodeListFilter(Element*) const;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGDocumentExtensions.h 40 class Element;
45 typedef HashSet<Element*> SVGPendingElements;
94 void addPendingResource(const AtomicString& id, Element*);
96 bool isElementPendingResources(Element*) const;
97 bool isElementPendingResource(Element*, const AtomicString& id) const;
98 void clearHasPendingResourcesIfPossible(Element*);
99 void removeElementFromPendingResources(Element*);
104 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&);
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializerImpl.h 53 class Element;
129 // This meta element need to be skipped when serializing DOM.
130 const WebCore::Element* skipMetaElement;
146 // Before we begin serializing open tag of a element, we give the target
147 // element a chance to do some work prior to add some additional data.
148 WTF::String preActionBeforeSerializeOpenTag(const WebCore::Element* element,
151 // After we finish serializing open tag of a element, we give the target
152 // element a chance to do some post work to add some additional data.
153 WTF::String postActionAfterSerializeOpenTag(const WebCore::Element* element
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_node_data.h 42 // Element represents a single node.
43 struct Element {
44 Element();
45 explicit Element(const BookmarkNode* node);
46 ~Element();
48 // If true, this element represents a URL.
58 std::vector<Element> children;
66 // For reading/writing this Element.
106 // Writes elements to data. If there is only one element and it is a URL
154 std::vector<Element> elements
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_node_data.h 42 // Element represents a single node.
43 struct Element {
44 Element();
45 explicit Element(const BookmarkNode* node);
46 ~Element();
48 // If true, this element represents a URL.
58 std::vector<Element> children;
65 // For reading/writing this Element.
111 // Writes elements to data. If there is only one element and it is a URL
159 std::vector<Element> elements
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.h 45 class Element;
60 virtual void created(Element*) OVERRIDE;
61 virtual void enteredDocument(Element*) OVERRIDE;
62 virtual void leftDocument(Element*) OVERRIDE;
63 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE;
65 void call(const ScopedPersistent<v8::Function>& weakCallback, Element*);
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h 49 class Element;
75 static bool needsUpdate(const Element*, const RenderStyle*);
76 static PassOwnPtr<CSSAnimationUpdate> calculateUpdate(const Element*, EDisplay, const CSSAnimations*, const CSSAnimationDataList*, StyleResolver*);
77 void update(Element*, const RenderStyle*);
85 EventDelegate(Element* target, const AtomicString& name)
93 Element* m_target;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PendingScript.h 38 class Element;
53 PendingScript(Element* element, ScriptResource* resource)
55 , m_element(element)
90 Element* element() const { return m_element.get(); } function in class:WebCore::PendingScript
91 void setElement(Element* element) { m_element = element; }
92 PassRefPtr<Element> releaseElementAndClear()
    [all...]
CustomElementRegistrationContext.cpp 39 #include "core/dom/Element.h"
60 PassRefPtr<Element> CustomElementRegistrationContext::createCustomTagElement(Document* document, const QualifiedName& tagName)
67 RefPtr<Element> element;
70 element = HTMLElement::create(tagName, document);
72 element = SVGUnknownElement::create(tagName, document);
75 return Element::create(tagName, document);
78 resolve(element.get(), nullAtom);
79 return element.release();
82 void CustomElementRegistrationContext::didGiveTypeExtension(Element* element, const AtomicString& type
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunner.h 39 class Element;
56 void execute(PassRefPtr<Element> scriptToProcess, const TextPosition& scriptStartPosition);
75 void requestParsingBlockingScript(Element*);
76 void requestDeferredScript(Element*);
77 bool requestPendingScript(PendingScript&, Element*) const;
79 void runScript(Element*, const TextPosition& scriptStartPosition);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTheme.h 41 class Element;
70 // This method is called whenever style has been computed for an element and the appearance
75 void adjustStyle(RenderStyle*, Element*, const CachedUAStyle&);
168 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const;
241 virtual void adjustCheckboxStyle(RenderStyle*, Element*) const;
245 virtual void adjustRadioStyle(RenderStyle*, Element*) const;
249 virtual void adjustButtonStyle(RenderStyle*, Element*) const;
253 virtual void adjustInnerSpinButtonStyle(RenderStyle*, Element*) const;
257 virtual void adjustTextFieldStyle(RenderStyle*, Element*) const;
260 virtual void adjustTextAreaStyle(RenderStyle*, Element*) const
    [all...]
  /external/v8/src/
liveobjectlist-inl.h 92 // specified key. If no matching element is found, then it returns NULL.
94 inline LiveObjectList::Element*
95 LiveObjectList::FindElementFor(T (*GetValue)(LiveObjectList::Element*), T key) {
98 Element* elements = lol->elements_;
100 Element* element = &elements[i]; local
101 if (GetValue(element) == key) {
102 return element;
111 inline int LiveObjectList::GetElementId(LiveObjectList::Element* element) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueue.java 29 public interface Element {
39 private final ArrayList<Element> mExpandableArrayOfActivePointers =
49 public void add(final Element pointer) {
54 final ArrayList<Element> expandableArray = mExpandableArrayOfActivePointers;
65 public void remove(final Element pointer) {
70 final ArrayList<Element> expandableArray = mExpandableArrayOfActivePointers;
74 final Element element = expandableArray.get(index); local
75 if (element == pointer) {
77 Log.w(TAG, "Found duplicated element in remove: " + pointer)
106 final Element element = expandableArray.get(index); local
123 final Element element = expandableArray.get(index); local
158 final Element element = expandableArray.get(index); local
184 final Element element = expandableArray.get(index); local
201 final Element element = expandableArray.get(index); local
218 final Element element = expandableArray.get(index); local
231 final Element element = expandableArray.get(index); local
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 34 import org.w3c.dom.Element;
105 Element docEle = mDom.getDocumentElement();
109 Element l = (Element)nl.item(i);
117 Element c = (Element)nl.item(i);
125 Element img = (Element)nl.item(i);
133 Element e = (Element)nl.item(i);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.h 50 class Element;
78 String elementRenderTreeAsText(Element*, ExceptionState&);
92 ShadowRoot* ensureShadowRoot(Element* host, ExceptionState&);
93 ShadowRoot* shadowRoot(Element* host, ExceptionState&);
94 ShadowRoot* youngestShadowRoot(Element* host, ExceptionState&);
95 ShadowRoot* oldestShadowRoot(Element* host, ExceptionState&);
102 Element* includerFor(Node*, ExceptionState&);
103 String shadowPseudoId(Element*, ExceptionState&);
104 void setShadowPseudoId(Element*, const String&, ExceptionState&);
112 PassRefPtr<Element> createContentElement(ExceptionState&)
    [all...]
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramVertexTest.java 22 import android.renderscript.Element;
29 Element mAttrPosElem;
30 Element mAttrNormTexElem;
31 Element mAttrPosNormTexElem;
32 Element mAttrExtra;
43 Element.Builder eb = new Element.Builder(mRS);
44 eb.add(Element.F32_4(mRS), "position");
47 eb = new Element.Builder(mRS);
48 eb.add(Element.F32_3(mRS), "normal")
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNS.java 24 import org.w3c.dom.Element;
35 * Retrieve the first "emp:address" element. The value returned by the
82 // Element testAddr;
86 // testAddr = (Element) elementList.item(0);
97 Element testAddr;
103 testAddr = (Element) elementList.item(0);
107 testAddr = (Element) elementList.item(0);
116 Element testAddr;
120 testAddr = (Element) elementList.item(0);
133 Element testAddr
    [all...]
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...]
ElementGetElementsByTagNameNS.java 3 import org.w3c.dom.Element;
52 Element element; local
55 element = doc.getDocumentElement();
56 elementList = element.getElementsByTagNameNS("**", "*");
62 Element element; local
63 Element child1;
64 Element child2;
65 Element child3
89 Element element; local
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Element.java 23 * <p>An Element represents one item within an {@link
24 * android.renderscript.Allocation}. An Element is roughly equivalent to a C
27 * kernel)</li> <li>A four-element float vector (equivalent to a float4 in a
30 * kernel)</li> </ul> <p>A complex element is roughly equivalent to a C struct
32 * element contains a list of sub-elements and names that represents a
38 * android.renderscript.Element.DataType} and a {@link
39 * android.renderscript.Element.DataKind}. The DataType encodes C type
40 * information of an Element, while the DataKind encodes how that Element should
43 * android.renderscript.Element.DataKind#USER} cannot be used as input for
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ClearObjectTest.java 20 import android.renderscript.Element;
64 Element element = Element.BOOLEAN(mRS); local
65 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
66 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
67 ms_clear.set_element(element);
80 Type type= new Type.Builder(mRS, Element.I8(mRS)).setX(1).create();
81 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
82 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum)
    [all...]
  /external/chromium/net/base/
upload_data.cc 19 UploadData::Element::Element()
30 UploadData::Element::~Element() {
35 void UploadData::Element::SetToChunk(const char* bytes,
44 uint64 UploadData::Element::GetContentLength() {
91 FileStream* UploadData::Element::NewFileStreamForReading() {
132 elements_.push_back(Element());
139 elements_.push_back(Element());
147 elements_.push_back(Element());
    [all...]
  /external/chromium_org/content/browser/loader/
upload_data_stream_builder.cc 26 const ResourceRequestBody::Element& element)
27 : net::UploadBytesElementReader(element.bytes(), element.length()),
29 DCHECK_EQ(ResourceRequestBody::Element::TYPE_BYTES, element.type());
47 const ResourceRequestBody::Element& element)
49 element.path(),
50 element.offset()
102 const ResourceRequestBody::Element& element = (*body->elements())[i]; local
114 const ResourceRequestBody::Element& element = *resolved_elements[i]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LinearLayoutWeightFix.java 31 import org.w3c.dom.Element;
53 if (node instanceof Element && node.getParentNode() instanceof Element) {
54 Element element = (Element) node; local
55 Element parent = (Element) node.getParentNode();
63 element.setAttributeNS(ANDROID_URI, dimension, VALUE_ZERO_DP);
SetScrollViewSizeFix.java 30 import org.w3c.dom.Element;
52 if (node instanceof Element && node.getParentNode() instanceof Element) {
53 Element element = (Element) node; local
54 Element parent = (Element) node.getParentNode();
58 element.setAttributeNS(ANDROID_URI, attributeName, VALUE_WRAP_CONTENT);

Completed in 1330 milliseconds

1 2 3 45 6 7 8 91011>>