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

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/resources/downloads/
downloads.js 9 * @param {!Element} node The target element to show or hide.
10 * @param {boolean} isShow Should the target element be visible.
18 * @param {!Element} node The target element to show or hide.
19 * @param {boolean} isShow Should the target element be visible.
29 * @return {Element} The created link element.
44 * @return {Element} The created button.
179 * @param {HTMLImageElement} elem Image element that should contain the icon
    [all...]
  /external/chromium_org/content/renderer/
render_view_browsertest.cc 343 blink::WebHTTPBody::Element element; local
344 bool successful = body.elementAt(0, element);
346 EXPECT_EQ(blink::WebHTTPBody::Element::TypeData, element.type);
347 EXPECT_EQ(length, element.data.size());
348 EXPECT_EQ(0, memcmp(raw_data, element.data.data(), length));
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
web_test_proxy.cc 237 // We use the document element's text instead of the body text here because
679 blink::WebElement element = node.to<blink::WebElement>(); local
680 if (element.hasAttribute("id")) {
682 message += element.getAttribute("id").utf8().data();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderCustom.cpp 229 if (image->updateIfSVGCursorIsUsed(state.element())) // Elements with SVG cursors are not allowed to share style.
244 Element* element = state.element(); local
245 if (element && element == element->document().documentElement())
246 element->document().setDirectionSetOnDocumentElement(true);
251 if (state.element() && state.element()->isSVGElement() && state.style()->styleType() == NOPSEUDO
    [all...]
StyleResolver.cpp 92 void setAnimationUpdateIfNeeded(StyleResolverState& state, Element& element)
97 element.ensureActiveAnimations().cssAnimations().setPendingUpdate(state.takeAnimationUpdate());
316 void StyleResolver::addToStyleSharingList(Element& element)
326 list.prepend(&element);
333 // We never put things at depth 0 into the list since that's only the <html> element
348 void StyleResolver::pushParentElement(Element& parent)
354 // Reset the stack in this case, or if we see a new root element.
365 void StyleResolver::popParentElement(Element& parent
622 StyleResolverState state(document(), element, defaultParent); local
706 StyleResolverState state(document(), element, parentStyle); local
981 StyleResolverState state(document(), element); local
991 StyleResolverState state(document(), element); local
1021 const Element* element = state.element(); local
1427 const Element* element = state.element(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp 962 Node* element = m_start.container()->isElementNode() ? m_start.container() : m_start.container()->parentNode(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 42 #include "core/dom/Element.h"
161 virtual bool matches(const Element* element) const { return !m_tagName || element->hasTagName(*m_tagName); }
164 virtual bool valueIsPresentInStyle(Element*, StylePropertySet*) const;
165 virtual void addToStyle(Element*, EditingStyle*) const;
200 bool HTMLElementEquivalent::valueIsPresentInStyle(Element* element, StylePropertySet* style) const
203 return matches(element) && value && value->isPrimitiveValue() && toCSSPrimitiveValue(value.get())->getValueID() == m_primitiveValue->getValueID();
206 void HTMLElementEquivalent::addToStyle(Element*, EditingStyle* style) cons
1267 Element* element = position.element(); local
    [all...]
ReplaceSelectionCommand.cpp 37 #include "core/dom/Element.h"
85 PassRefPtrWillBeRawPtr<Element> insertFragmentForTestRendering(Node* rootEditableNode);
87 void restoreAndRemoveTestRenderingNodesToFragment(Element*);
155 RefPtrWillBeRawPtr<Element> editableRoot = selection.rootEditableElement();
170 RefPtrWillBeRawPtr<Element> holder = insertFragmentForTestRendering(editableRoot.get());
251 PassRefPtrWillBeRawPtr<Element> ReplacementFragment::insertFragmentForTestRendering(Node* rootEditableElement)
254 RefPtrWillBeRawPtr<Element> holder = createDefaultParagraphElement(*m_document.get());
263 void ReplacementFragment::restoreAndRemoveTestRenderingNodesToFragment(Element* holder)
484 Element* element = toElement(node) local
877 const HTMLElement* element = toHTMLElement(node); local
    [all...]
markup.cpp 77 AttributeChange(PassRefPtrWillBeRawPtr<Element> element, const QualifiedName& name, const String& value)
78 : m_element(element), m_name(name), m_value(value)
93 RefPtrWillBeMember<Element> m_element;
110 for (Element* element = ElementTraversal::firstWithin(fragment); element; element = ElementTraversal::next(*element, &fragment)) {
111 if (!element->hasAttributes()
847 RefPtrWillBeRawPtr<Element> element = createBreakElement(document); local
876 RefPtrWillBeRawPtr<Element> element = nullptr; local
1000 HTMLElement* element = toHTMLElement(node); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 122 // The select element has no placeholder label option if it has an attribute "multiple" specified or a display size of non-1.
202 void HTMLSelectElement::add(HTMLElement* element, HTMLElement* before, ExceptionState& exceptionState)
204 // Make sure the element is ref'd and deref'd so we don't leak it.
205 RefPtrWillBeRawPtr<HTMLElement> protectNewChild(element);
207 if (!element || !(isHTMLOptionElement(element) || isHTMLOptGroupElement(element) || isHTMLHRElement(element)))
210 insertBefore(element, before, exceptionState);
214 void HTMLSelectElement::addBeforeOptionAtIndex(HTMLElement* element, int beforeIndex, ExceptionState& exceptionState
525 HTMLElement* element = listItems[listIndex]; local
607 HTMLElement* element = items[i]; local
622 HTMLElement* element = items[i]; local
642 HTMLElement* element = items[i]; local
676 HTMLElement* element = items[i]; local
834 HTMLElement* element = items[i]; local
884 HTMLElement* element = 0; local
980 HTMLElement* element = items[i]; local
1073 HTMLElement* element = items[i]; local
1093 HTMLElement* element = items[i]; local
1541 HTMLElement* element = items[--i]; local
1562 HTMLElement* element = items[index]; local
1598 HTMLElement* element = items[listIndex]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 36 #include "core/dom/Element.h"
587 Element* element = toElement(node); local
588 Element* realElement = element;
590 if (element->isPseudoElement()) {
591 pseudoElement = toPseudoElement(element);
592 realElement = element->parentOrShadowHostElement();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListBox.cpp 82 RenderListBox::RenderListBox(Element* element)
83 : RenderBlockFlow(element)
91 ASSERT(element);
92 ASSERT(element->isHTMLElement());
93 ASSERT(isHTMLSelectElement(element));
129 const HTMLElement& element = *listItems[i]; local
133 if (isHTMLOptionElement(element)) {
134 const HTMLOptionElement& optionElement = toHTMLOptionElement(element);
139 } else if (isHTMLOptGroupElement(element)) {
376 HTMLElement* element = listItems[renderListBoxIndexToListIndex(i)]; local
433 HTMLElement* element = listItems[renderListBoxIndexToListIndex(listIndex)]; local
482 HTMLElement* element = listItems[renderListBoxIndexToListIndex(listIndex)]; local
985 const HTMLElement& element = *listItems[listIndex]; local
1007 const HTMLElement& element = *listItems[listIndex]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 227 // Reset the target element if we are no longer in the document.
234 Element* target;
584 Element* eventBase = condition.baseID().isEmpty() ? targetElement() : treeScope().getElementById(AtomicString(condition.baseID()));
599 Element* element = treeScope().getElementById(AtomicString(condition->baseID())); local
600 if (!element || !isSVGSMILElement(*element)) {
604 SVGSMILElement* svgSMILElement = toSVGSMILElement(element);
700 // If the animation state is not Inactive, always reset to a clear state before leaving the old target element.
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
colldata.cpp 607 const UHashElement *element; local
611 while ((element = uhash_nextElement(cache, &pos)) != NULL) {
612 CollDataCacheEntry *entry = (CollDataCacheEntry *) element->value.pointer;
615 uhash_removeElement(cache, element);
tmutfmt.cpp 767 const UHashElement* element = NULL; local
769 while ( (element = htable->nextElement(pos)) != NULL ) {
770 const UHashTok valueTok = element->value;
788 const UHashElement* element = NULL; local
790 while ( (element = source->nextElement(pos)) != NULL ) {
791 const UHashTok keyTok = element->key;
793 const UHashTok valueTok = element->value;
    [all...]
ucol_elm.cpp 43 static uint32_t uprv_uca_processContraction(CntTable *contractions, UCAElements *element, uint32_t existingCE, UErrorCode *status);
48 UCAElements *element = (UCAElements *)e.pointer; local
52 uprv_memcpy(buf, element->cPoints, element->cSize*sizeof(UChar));
53 buf[element->cSize] = 0;
54 //key.pointer = element->cPoints;
55 //element->cPoints[element->cSize] = 0;
425 * collation element. The size required for maxexpansion and maxsize is
427 * @param endexpansion the last expansion collation element to be adde
797 UCAElements *element = NULL; local
1861 UCAElements element; local
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
pattern.c 124 xmlNodePtr elem; /* the source element */
1834 xsltCompMatchPtr element, first = NULL, previous = NULL; local
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
FieldSet.java 247 for (final Object element : newList) {
248 verifyType(descriptor.getLiteType(), element); local
361 * object is the right type to be one element of the field.)
434 for (final MessageLite element:
436 if (!element.isInitialized()) {
692 for (final Object element : valueList) {
693 dataSize += computeElementSizeNoTag(type, element);
697 for (final Object element : valueList) {
698 writeElementNoTag(output, type, element);
701 for (final Object element : valueList)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPictureFlat.h 393 * Given an element of type T return its 1-based index in the dictionary. If
394 * the element wasn't previously in the dictionary it is automatically
398 int find(const T& element) {
399 return this->findAndReturnFlat(element)->index();
409 const SkFlatData* findAndReplace(const T& element,
416 SkFlatData* flat = this->findAndReturnMutableFlat(element);
470 const SkFlatData* element = fIndexedData[index-1]; local
471 SkASSERT(index == element->index());
474 this->unflatten(dst, element);
479 * Find or insert a flattened version of element into the dictionary
    [all...]
  /external/chromium_org/ui/views/layout/
grid_layout.cc 34 // Sets the location of each element to be the sum of the sizes of the
48 // Each resizable element is given ResizePercent / total_percent * delta
71 T* element = *i; local
72 if (element->ResizePercent() > 0) {
78 (element->resize_percent_ / total_percent));
81 element->SetSize(element->Size() + to_give);
614 // Let layout element reset the sizes for us.
    [all...]
  /external/chromium_org/v8/src/
ast.cc 302 // the largest element index. If the largest element index is
346 Expression* element = values()->at(i); local
347 MaterializedLiteral* m_literal = element->AsMaterializedLiteral();
354 Handle<Object> boilerplate_value = GetBoilerplateValue(element, isolate);
376 // in a 2-element FixedArray.
    [all...]
elements.cc 60 // fast element handler for smi-only arrays. The implementation is currently
131 Object* element = array->get(i); local
132 if (element->IsSmi() && element == key) return true;
133 if (element->IsString() &&
134 key->IsString() && String::cast(element)->Equals(String::cast(key))) {
520 PrintF("[OOB %s %s (%s length = %d, element accessed = %d) in ",
540 // Base class for element handler implementations. Contains the
542 // Subclasses must specialize method for which the element
    [all...]
  /external/clang/lib/CodeGen/
CGExprAgg.cpp 437 // The 'current element to initialize'. The invariants on this
439 // the loop, it points to the last initialized element, except
442 llvm::Value *element = begin; local
446 // Advance to the next element.
448 element = Builder.CreateInBoundsGEP(element, one, "arrayinit.element");
451 // element. TODO: some of these stores can be trivially
453 if (endOfInit) Builder.CreateStore(element, endOfInit);
456 LValue elementLV = CGF.MakeAddrLValue(element, elementType)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.variables_3.2.400.v20100505.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ResultsElement.java 40 * An Organization Element
177 ResultsElement element = (ResultsElement) o; local
178 return this.name.compareTo(element.getName());
204 * Iterate the element children.
360 * Return the status of the element.
365 * <li>0-3: bits for state showing whether the element is
425 * Returns whether the element (or one in its hierarchy) has an error.
427 * @return <code> true</code> if the element or one in its hierarchy has an error,
588 * Write the element status in the given stream

Completed in 1840 milliseconds

<<21222324252627282930>>