Searched defs:attributes (Results 226 - 250 of 430) sorted by last modified time

1234567891011>>

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderer9.cpp1266 TranslatedAttribute attributes[gl::MAX_VERTEX_ATTRIBS]; local
1267 gl::Error error = mVertexDataManager->prepareVertexData(vertexAttributes, currentValues, programBinary, first, count, attributes, instances);
1273 return mVertexDeclarationCache.applyDeclaration(mDevice, attributes, programBinary, instances, &mRepeatDraw);
H A DVertexDeclarationCache.cpp43 gl::Error VertexDeclarationCache::applyDeclaration(IDirect3DDevice9 *device, TranslatedAttribute attributes[], gl::ProgramBinary *programBinary, GLsizei instances, GLsizei *repeatDraw) argument
54 if (attributes[i].divisor != 0)
69 if (attributes[i].active)
71 if (indexedAttribute == gl::MAX_VERTEX_ATTRIBS && attributes[i].divisor == 0)
75 else if (instancedAttribute == gl::MAX_VERTEX_ATTRIBS && attributes[i].divisor != 0)
97 if (attributes[i].active)
100 ASSERT(attributes[i].storage == NULL);
106 // Due to a bug on ATI cards we can't enable instancing when none of the attributes are instanced.
124 if (attributes[i].divisor == 0)
130 frequency = D3DSTREAMSOURCE_INSTANCEDATA | attributes[
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DSimpleFontDataCoreText.cpp147 CFDictionaryRef attributes = CTRunGetAttributes(ctRun); local
148 CTFontRef runFont = static_cast<CTFontRef>(CFDictionaryGetValue(attributes, kCTFontAttributeName));
150 // Use CGFont here as CFEqual for CTFont counts all attributes for font.
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPageSerializerImpl.cpp302 // Go through all attributes and serialize them.
303 AttributeCollection attributes = element->attributes(); local
304 AttributeCollection::iterator end = attributes.end();
305 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXObjectCache.cpp97 CachedAXObjectAttributes attributes; local
98 attributes.ignored = inclusion;
99 m_idMapping.set(id, attributes);
380 // Or if it's a hidden element, but we still want to expose it because of other ARIA attributes.
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRuleFeature.h153 Vector<AtomicString> attributes; member in struct:blink::RuleFeatureSet::InvalidationSetFeatures
H A DSelectorChecker.cpp469 AttributeCollection attributes = element.attributesWithoutUpdate(); local
470 AttributeCollection::iterator end = attributes.end();
471 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
483 // Legacy dictates that values of some attributes should be compared in
H A DSelectorChecker.h168 AttributeCollection attributes = element.attributesWithoutUpdate(); local
169 AttributeCollection::iterator end = attributes.end();
170 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttributeCollection.h48 AttributeCollectionGeneric(Container& attributes) argument
49 : m_attributes(attributes)
108 explicit MutableAttributeCollection(AttributeVector& attributes)
109 : AttributeCollectionGeneric<AttributeVector, AttributeVector&>(attributes)
158 // Most attributes (all of HTML and CSS) have no namespace.
204 // and all HTML/SVG attributes have a null namespace!
H A DDatasetDOMStringMap.cpp157 AttributeCollection attributes = m_element->attributes(); local
158 AttributeCollection::iterator end = attributes.end();
159 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
167 AttributeCollection attributes = m_element->attributes(); local
168 AttributeCollection::iterator end = attributes.end();
169 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
179 AttributeCollection attributes = m_element->attributes(); local
[all...]
H A DElement.cpp286 const Attribute& attribute = elementData()->attributes().at(index);
302 const Attribute& attribute = elementData()->attributes().at(index);
313 size_t index = elementData()->attributes().findIndex(name);
377 // currently assumes that all lazy attributes have a null namespace.
423 // animatable attributes in isAnimatableAttribute does not suffice to
427 // is called on all attributes, m_animatedSVGAttributesAreDirty remains
438 if (const Attribute* attribute = elementData()->attributes().find(name))
860 if (const Attribute* attribute = elementData()->attributes().find(localName, shouldIgnoreAttributeCase()))
885 AttributeCollection attributes = elementData()->attributes(); local
[all...]
H A DElement.h119 // attribute or one of the SVG animatable attributes.
155 // This getter takes care of synchronizing all attributes before returning the
156 // AttributeCollection. If the Element has no attributes, an empty AttributeCollection
159 AttributeCollection attributes() const;
160 // This variant will not update the potentially invalid attributes. To be used when not interested
161 // in style attribute or one of the SVG animation attributes.
286 // Remove attributes that might introduce scripting from the vector leaving the element unchanged.
291 // Clones attributes only.
679 return elementData() && elementData()->attributes().findIndex(name) != kNotFound;
686 if (const Attribute* attribute = elementData()->attributes()
692 inline AttributeCollection Element::attributes() const function in class:blink::Element
[all...]
H A DElementData.cpp72 , m_arraySize(isUnique ? 0 : other.attributes().size())
109 AttributeCollection attributes = this->attributes(); local
111 return attributes.isEmpty();
113 AttributeCollection otherAttributes = other->attributes();
114 if (attributes.size() != otherAttributes.size())
117 AttributeCollection::iterator end = attributes.end();
118 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
139 ShareableElementData::ShareableElementData(const Vector<Attribute>& attributes) argument
140 : ElementData(attributes
165 createWithAttributes(const Vector<Attribute>& attributes) argument
[all...]
H A DElementData.h48 // data such as attributes, inline style, and parsed class names and ids.
73 AttributeCollection attributes() const;
124 // the parser during page load for elements that have identical attributes. This
126 // duplicate sets of attributes (ex. the same classes).
139 // the number of attributes. This requires us to use Heap::allocate directly
147 AttributeCollection attributes() const;
158 // UniqueElementData is created when an element needs to mutate its attributes
161 // attributes. For example populating the m_inlineStyle from the style attribute
169 MutableAttributeCollection attributes();
170 AttributeCollection attributes() cons
204 inline AttributeCollection ElementData::attributes() const function in class:blink::ElementData
211 inline AttributeCollection ShareableElementData::attributes() const function in class:blink::ShareableElementData
216 inline AttributeCollection UniqueElementData::attributes() const function in class:blink::UniqueElementData
221 inline MutableAttributeCollection UniqueElementData::attributes() function in class:blink::UniqueElementData
[all...]
H A DElementDataCache.cpp36 inline unsigned attributeHash(const Vector<Attribute>& attributes) argument
38 return StringHasher::hashMemory(attributes.data(), attributes.size() * sizeof(Attribute));
41 inline bool hasSameAttributes(const Vector<Attribute>& attributes, ShareableElementData& elementData) argument
43 if (attributes.size() != elementData.attributes().size())
45 return !memcmp(attributes.data(), elementData.m_attributeArray, attributes.size() * sizeof(Attribute));
48 PassRefPtrWillBeRawPtr<ShareableElementData> ElementDataCache::cachedShareableElementDataWithAttributes(const Vector<Attribute>& attributes) argument
50 ASSERT(!attributes
[all...]
H A DMutationObserver.cpp98 bool attributes = observerInit.hasAttributes() && observerInit.attributes(); local
99 if (attributes || (!observerInit.hasAttributes() && (observerInit.hasAttributeOldValue() || observerInit.hasAttributeFilter())))
117 exceptionState.throwTypeError("The options object may only set 'attributeOldValue' to true when 'attributes' is true or not present.");
121 exceptionState.throwTypeError("The options object may only set 'attributeFilter' when 'attributes' is true or not present.");
131 exceptionState.throwTypeError("The options object must set at least one of 'attributes', 'characterData', or 'childList' to true.");
H A DNamedNodeMap.cpp61 size_t index = m_element->attributes().findIndex(name, m_element->shouldIgnoreAttributeCase());
71 size_t index = m_element->attributes().findIndex(QualifiedName(nullAtom, localName, namespaceURI));
102 AttributeCollection attributes = m_element->attributes(); local
103 if (index >= attributes.size())
105 return m_element->ensureAttr(attributes[index].name());
110 return m_element->attributes().size();
H A DNode.cpp154 size_t attributes = 0; local
182 attributes += elementData->attributes().size();
245 printf(" Number of Attributes (non-Node and Node): %zu [%zu]\n", attributes, sizeof(Attribute));
1274 AttributeCollection attributes = element.attributes();
1275 AttributeCollection::iterator end = attributes.end();
1276 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
1357 AttributeCollection attributes = element.attributes();
1518 AttributeCollection attributes = owner1->attributes(); local
[all...]
H A DPresentationAttributeStyle.cpp126 // Interpretation of the size attributes on <input> depends on the type attribute.
129 AttributeCollection attributes = element.attributesWithoutUpdate();
130 AttributeCollection::iterator end = attributes.end();
131 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
184 AttributeCollection attributes = element.attributesWithoutUpdate(); local
185 AttributeCollection::iterator end = attributes.end();
186 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it)
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DApplyStyleCommand.cpp79 AttributeCollection attributes = element->attributes(); local
80 if (attributes.isEmpty())
90 ASSERT(matchedAttributes <= attributes.size());
91 return matchedAttributes == attributes.size();
531 // other attributes, like we (should) do with B and I elements.
963 Vector<QualifiedName> attributes; local
965 extractedStyle, attributes, mode == RemoveAlways ? EditingStyle::ExtractMatchingStyle : EditingStyle::DoNotExtractMatchingStyle))
968 for (size_t i = 0; i < attributes.size(); i++)
969 removeElementAttribute(element, attributes[
[all...]
H A DEditingStyle.cpp913 AttributeCollection attributes = element->attributes(); local
914 if (attributes.isEmpty())
915 return elementIsSpanOrElementEquivalent; // span, b, etc... without any attributes
942 ASSERT(matchedAttributes <= attributes.size());
943 return matchedAttributes >= attributes.size();
1353 // The selection is either a caret with no typing attributes or a range in which no embedding is added, so just use the start position
H A DMarkupAccumulator.cpp252 // xmlns and xmlns:prefix attributes should be handled by another branch in appendAttribute.
388 AttributeCollection attributes = element.attributes(); local
389 AttributeCollection::iterator end = attributes.end();
390 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it)
393 // Give an opportunity to subclasses to add their own attributes.
H A DReplaceSelectionCommand.cpp503 Vector<QualifiedName> attributes; local
512 } else if (newInlineStyle->extractConflictingImplicitStyleOfAttributes(htmlElement, EditingStyle::PreserveWritingDirection, 0, attributes,
515 for (size_t i = 0; i < attributes.size(); i++)
516 removeElementAttribute(htmlElement, attributes[i]);
544 // FIXME: Tolerate differences in id, class, and style attributes.
H A Dmarkup.cpp118 AttributeCollection attributes = element->attributes(); local
119 AttributeCollection::iterator end = attributes.end();
120 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {
298 AttributeCollection attributes = element.attributes(); local
299 AttributeCollection::iterator end = attributes.end();
300 for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) {

Completed in 9667 milliseconds

1234567891011>>