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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/browser/safe_browsing/
binary_feature_extractor_win.cc 78 CERT_CHAIN_ELEMENT* element = simple_chain->rgpElement[k]; local
80 element->pCertContext->pbCertEncoded,
81 element->pCertContext->cbCertEncoded);
  /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/components/autofill/core/browser/
autofill_xml_parser.cc 49 const std::string& element = qname.LocalPart(); local
50 if (element.compare("autofillqueryresponse") == 0) {
68 } else if (element.compare("field") == 0) {
155 const std::string &element = qname.LocalPart(); local
156 if (element.compare("autofilluploadresponse") == 0) {
  /external/chromium_org/components/plugins/renderer/
plugin_placeholder.cc 78 // Save the element in case the plug-in is removed from the page during
80 WebElement element = container->element(); local
89 if (!element.pluginContainer()) {
111 WebElement element = container->element(); local
112 element.setAttribute("style", "display: none;");
123 if (element.hasAttribute("width") && element.hasAttribute("height")) {
125 width_str += element.getAttribute("width").utf8().data()
    [all...]
  /external/chromium_org/content/public/common/
page_state.cc 87 ExplodedHttpBodyElement element; local
88 element.type = blink::WebHTTPBody::Element::TypeData;
89 element.data = optional_body_data;
90 state.top.http_body.elements.push_back(element);
93 ExplodedHttpBodyElement element; local
94 element.type = blink::WebHTTPBody::Element::TypeFile;
95 element.file_path =
97 state.top.http_body.elements.push_back(element);
    [all...]
  /external/chromium_org/mojo/system/
local_data_pipe_unittest.cc 145 // Read one element.
235 // Read one element.
267 // Read one element, using a two-phase read.
273 // Since we only read one element (after having written three in all), the
287 // Write one element.
348 // Discard one element.
358 // Read one element.
372 // Write one element.
392 // Read one element.
437 // Read one element
620 int32_t element = 123; local
1519 int32_t element = 123; local
    [all...]
  /external/chromium_org/testing/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
73 template <typename E> // E is the element type.
104 // Gets the first element of the queue, or NULL if the queue is empty.
108 // Gets the last element of the queue, or NULL if the queue is empty
143 E* element = new E(old_head->element()); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationPlayerTest.cpp 696 RefPtrWillBePersistent<Element> element = document->createElement("foo", ASSERT_NO_EXCEPTION); local
699 RefPtrWillBeRawPtr<Animation> animation = Animation::create(element.get(), nullptr, timing);
703 EXPECT_EQ(1, element->activeAnimations()->players().find(player.get())->value);
707 EXPECT_TRUE(element->activeAnimations()->players().isEmpty());
AnimationStackTest.cpp 25 element = document->createElement("foo", ASSERT_NO_EXCEPTION);
44 return element->ensureActiveAnimations().defaultStack().m_effects;
71 return Animation::create(element.get(), effect, timing);
81 RefPtrWillBePersistent<Element> element; member in class:WebCore::AnimationAnimationStackTest
89 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, 0, Animation::DefaultPriority, 0);
103 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), &newAnimations, 0, Animation::DefaultPriority, 10);
115 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > result = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, &cancelledAnimationPlayers, Animation::DefaultPriority, 0);
130 interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, 0, Animation::DefaultPriority, 0);
140 interpolations = AnimationStack::activeInterpolations(&element->activeAnimations()->defaultStack(), 0, 0, Animation::DefaultPriority, 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.cpp 44 Element* element = SVGURIReference::targetElementFromIRIString(url, treeScope); local
45 return isSVGCursorElement(element) ? toSVGCursorElement(element) : 0;
90 bool CSSCursorImageValue::updateIfSVGCursorIsUsed(Element* element)
92 if (!element || !element->isSVGElement())
99 if (SVGCursorElement* cursorElement = resourceReferencedByCursorElement(url, element->treeScope())) {
109 if (cachedImageURL() != element->document().completeURL(cursorElement->href()->currentValue()->value())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
LiveNodeListBase.h 30 #include "core/dom/Element.h"
85 static Element* firstMatchingElement(const NodeListType&);
87 static Element* lastMatchingElement(const NodeListType&);
89 static Element* nextMatchingElement(const NodeListType&, Element& current);
91 static Element* previousMatchingElement(const NodeListType&, Element& current);
93 static Element* traverseMatchingElementsForwardToOffset(const NodeListType&, unsigned offset, Element& currentElement, unsigned& currentOffset);
95 static Element* traverseMatchingElementsBackwardToOffset(const NodeListType&, unsigned offset, Element& currentEl (…)
134 Element* element = ElementTraversal::lastWithin(root); local
144 Element* element = ElementTraversal::firstWithin(root); local
    [all...]
ScriptLoader.h 33 class Element;
40 static PassOwnPtr<ScriptLoader> create(Element*, bool createdByParser, bool isEvaluated);
43 Element* element() const { return m_element; } function in class:WebCore::FINAL
76 ScriptLoader(Element*, bool createdByParser, bool isEvaluated);
89 Element* m_element;
105 ScriptLoader* toScriptLoaderIfPossible(Element*);
107 inline PassOwnPtr<ScriptLoader> ScriptLoader::create(Element* element, bool createdByParser, bool isEvaluated)
109 return adoptPtr(new ScriptLoader(element, createdByParser, isEvaluated))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAppletElement.cpp 54 RefPtrWillBeRawPtr<HTMLAppletElement> element = adoptRefWillBeNoop(new HTMLAppletElement(document, createdByParser)); local
55 element->ensureUserAgentShadowRoot();
56 return element.release();
HTMLOptionsCollection.cpp 45 // represented by the collection, in tree order, ignoring later duplicates, with the id of an element preceding its
50 Element* element = item(i); local
51 ASSERT(element);
52 const AtomicString& idAttribute = element->getIdAttribute();
58 const AtomicString& nameAttribute = element->getNameAttribute();
72 void HTMLOptionsCollection::add(PassRefPtrWillBeRawPtr<HTMLOptionElement> element, ExceptionState& exceptionState)
74 add(element, length(), exceptionState);
77 void HTMLOptionsCollection::add(PassRefPtrWillBeRawPtr<HTMLOptionElement> element, int index, ExceptionState& exceptionState)
79 HTMLOptionElement* newOption = element.get()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
InputMethodContext.cpp 41 PassOwnPtrWillBeRawPtr<InputMethodContext> InputMethodContext::create(HTMLElement* element)
43 return adoptPtrWillBeRefCountedGarbageCollected(new InputMethodContext(element));
46 InputMethodContext::InputMethodContext(HTMLElement* element)
47 : m_element(element)
93 const Element* element = frame->document()->focusedElement(); local
94 return element && element->isHTMLElement() && m_element == toHTMLElement(element);
123 // build a CompositionUnderline whose element is the whole composition
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLElementStack.h 41 class Element;
60 Element* element() const { return m_item->element(); } function in class:WebCore::HTMLElementStack::FINAL
87 Element* top() const
89 ASSERT(m_top->element());
90 return m_top->element();
107 ElementRecord* find(Element*) const;
108 ElementRecord* furthestBlockForFormattingElement(Element*) const;
121 void popUntil(Element*);
    [all...]
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/WebKit/Source/core/html/shadow/
SpinButtonElement.cpp 57 RefPtrWillBeRawPtr<SpinButtonElement> element = adoptRefWillBeNoop(new SpinButtonElement(document, spinButtonOwner)); local
58 element->setShadowPseudoId(AtomicString("-webkit-inner-spin-button", AtomicString::ConstructFromLiteral));
59 element->setAttribute(idAttr, ShadowElementNames::spinButton());
60 return element.release();
103 // might change the element state and we might need to
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ImageLoader.h 51 class Element;
60 explicit ImageLoader(Element*);
69 // This function should be called when the element is attached to a document; starts
79 Element* element() const { return m_element; } function in class:WebCore::ImageLoader
137 RawPtrWillBeMember<Element> m_element;
142 RefPtrWillBePersistent<Element> m_keepAlive;
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginOcclusionSupport.cpp 35 #include "core/dom/Element.h"
139 static const Element* topLayerAncestor(const Element* element)
141 while (element && !element->isInTopLayer())
142 element = element->parentOrShadowHostElement();
143 return element;
151 void getPluginOcclusions(Element* element, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions
177 HTMLElement* element = frameView->frame().deprecatedLocalOwner(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebHTTPBody.cpp 68 bool WebHTTPBody::elementAt(size_t index, Element& result) const
75 const FormDataElement& element = m_private->elements()[index]; local
84 switch (element.m_type) {
86 result.type = Element::TypeData;
87 result.data.assign(element.m_data.data(), element.m_data.size());
90 result.type = Element::TypeFile;
91 result.filePath = element.m_filename;
92 result.fileStart = element.m_fileStart;
93 result.fileLength = element.m_fileLength
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
SpellCheckerClientImpl.cpp 69 const Element* element = document->focusedElement(); local
70 // If |element| is null, we default to allowing spellchecking. This is done
72 // as a result of which |element| becomes null, resulting in all the spell
76 if (!element)
78 const RenderObject* renderer = element->renderer();
110 // If a selection is in an editable element spell check its content.
111 if (Element* rootEditableElement = frameSelection.rootEditableElement()) {
WebElement.cpp 35 #include "core/dom/Element.h"
52 return constUnwrap<Element>()->isFormControlElement();
57 return constUnwrap<Element>()->isTextFormControl();
62 return constUnwrap<Element>()->tagName();
67 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
78 const Element* element = constUnwrap<Element>(); local
79 return HTMLNames::xhtmlNamespaceURI == element->namespaceURI() && element->localName() == String(tagName).lower()
    [all...]
WebSearchableFormData.cpp 83 const FormAssociatedElement::List& element = form->associatedElements(); local
84 for (FormAssociatedElement::List::const_iterator i(element.begin()); i != element.end(); ++i) {
132 // Returns true if the form element is in its default state, false otherwise.
133 // The default state is the state of the form element on initial load of the
134 // page, and varies depending upon the form element. For example, a checkbox is
158 const FormAssociatedElement::List& element = form->associatedElements(); local
159 for (FormAssociatedElement::List::const_iterator i(element.begin()); i != element.end(); ++i) {
242 // Allow HTTPS only when an input element is provided
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/test/
rule_test.cc 387 // multiple fields each. Such address format (e.g. {{ELEMENT, ELEMENT},
388 // {ELEMENT, ELEMENT}}) will result in incorrect behavior of BuildComponents()
441 const FormatElement& element = line_it->at(i); local
442 if (element.IsField() && element.field == STREET_ADDRESS) {

Completed in 1490 milliseconds

1 2 3 4 5 67 8 91011>>