Searched refs:m_attributes (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceLinearGradient.cpp42 m_attributes = LinearGradientAttributes();
43 return toSVGLinearGradientElement(gradientElement)->collectGradientAttributes(m_attributes);
58 gradientData->gradient = Gradient::create(startPoint(m_attributes), endPoint(m_attributes));
59 gradientData->gradient->setSpreadMethod(platformSpreadMethodFromSVGType(m_attributes.spreadMethod()));
60 addStops(gradientData, m_attributes.stops());
H A DRenderSVGResourceRadialGradient.cpp43 m_attributes = RadialGradientAttributes();
44 return toSVGRadialGradientElement(gradientElement)->collectGradientAttributes(m_attributes);
69 gradientData->gradient = Gradient::create(this->focalPoint(m_attributes),
70 this->focalRadius(m_attributes),
71 this->centerPoint(m_attributes),
72 this->radius(m_attributes));
74 gradientData->gradient->setSpreadMethod(platformSpreadMethodFromSVGType(m_attributes.spreadMethod()));
76 addStops(gradientData, m_attributes.stops());
H A DRenderSVGResourceLinearGradient.h41 virtual SVGUnitTypes::SVGUnitType gradientUnits() const OVERRIDE { return m_attributes.gradientUnits(); }
42 virtual void calculateGradientTransform(AffineTransform& transform) OVERRIDE { transform = m_attributes.gradientTransform(); }
50 LinearGradientAttributes m_attributes; member in class:blink::FINAL
H A DRenderSVGResourceRadialGradient.h41 virtual SVGUnitTypes::SVGUnitType gradientUnits() const OVERRIDE { return m_attributes.gradientUnits(); }
42 virtual void calculateGradientTransform(AffineTransform& transform) OVERRIDE { transform = m_attributes.gradientTransform(); }
52 RadialGradientAttributes m_attributes; member in class:blink::FINAL
H A DRenderSVGResourcePattern.cpp63 if (!m_attributes.patternContentElement())
67 if (m_attributes.hasViewBox() && m_attributes.viewBox().isEmpty())
73 if (!buildTileImageTransform(object, m_attributes, patternElement, tileBoundaries, tileImageTransform))
84 absoluteTileBoundaries.scale(static_cast<float>(m_attributes.patternTransform().xScale()),
85 static_cast<float>(m_attributes.patternTransform().yScale()));
88 OwnPtr<ImageBuffer> tileImage = createTileImage(m_attributes, tileBoundaries, absoluteTileBoundaries, tileImageTransform);
105 AffineTransform patternTransform = m_attributes.patternTransform();
131 m_attributes = PatternAttributes();
132 patternElement->collectPatternAttributes(m_attributes);
[all...]
H A DRenderSVGResourcePattern.h69 PatternAttributes m_attributes; member in class:blink::FINAL
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.h28 m_attributes.push_back(attr);
35 size_t NumAttributes() const { return m_attributes.size(); }
36 dw_attr_t GetAttrByIndex(uint32_t idx) const { return m_attributes.size() > idx ? m_attributes[idx].get_attr() : 0; }
37 dw_form_t GetFormByIndex(uint32_t idx) const { return m_attributes.size() > idx ? m_attributes[idx].get_form() : 0; }
40 if (m_attributes.size() > idx)
42 m_attributes[idx].get(attr, form);
52 m_attributes[idx].get(attr, form);
56 return m_attributes[id
78 DWARFAttribute::collection m_attributes; member in class:DWARFAbbreviationDeclaration
[all...]
H A DDWARFAbbreviationDeclaration.cpp22 m_attributes()
30 m_attributes()
44 m_attributes.clear();
56 m_attributes.push_back(DWARFAttribute(attr, form));
80 // for (pos = m_attributes.begin(); pos != m_attributes.end(); ++pos)
120 m_attributes.push_back(DWARFAttribute(attr, form));
133 m_attributes.push_back(DWARFAttribute(attr, form));
167 m_attributes.push_back(DWARFAttribute(attr, DW_FORM_strp));
169 m_attributes
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/
H A DField_info.java71 m_attributes = attributes;
85 m_attributes = ElementFactory.newAttributeCollection (attributes_count);
92 m_attributes.add (attribute_info);
121 return m_attributes.hasSynthetic ();
138 return m_attributes;
160 _clone.m_attributes = (IAttributeCollection) m_attributes.clone ();
180 m_attributes.writeInClassFormat (out);
191 private IAttributeCollection m_attributes; // never null field in class:Field_info
H A DMethod_info.java71 m_attributes = attributes;
87 m_attributes = ElementFactory.newAttributeCollection (attributes_count);
93 m_attributes.add (attribute_info);
132 return m_attributes.hasSynthetic ();
137 return ((m_access_flags & ACC_BRIDGE) != 0) || m_attributes.hasBridge ();
155 return m_attributes;
164 for (int i = 0; i < m_attributes.size (); i++)
166 Attribute_info attribute_info = m_attributes.get (i);
187 _clone.m_attributes = (IAttributeCollection) m_attributes
217 private IAttributeCollection m_attributes; field in class:Method_info
[all...]
H A DAttributeCollection.java34 return (Attribute_info) m_attributes.get (offset);
58 return m_attributes.size ();
67 int _attributes_count = m_attributes.size (); // use size() if this class becomes non-final
86 final int attributes_count = m_attributes.size (); // use size() if this class becomes non-final
87 _clone.m_attributes = new ArrayList (attributes_count);
90 _clone.m_attributes.add (((Attribute_info) m_attributes.get (a)).clone ());
126 final List/* Attribute_info */ attributes = m_attributes;
152 final Attribute_info result = (Attribute_info) m_attributes.set (offset, attribute);
177 final Attribute_info result = (Attribute_info) m_attributes
207 private List/* Attribute_info */ m_attributes; // never null field in class:AttributeCollection
[all...]
H A DClassDef.java58 m_attributes = ElementFactory.newAttributeCollection (-1);
152 return m_attributes.hasSynthetic ();
157 final InnerClassesAttribute_info innerClassesAttribute = m_attributes.getInnerClassesAttribute ();
189 return m_attributes;
219 _clone.m_attributes = (IAttributeCollection) m_attributes.clone ();
251 m_attributes.writeInClassFormat (out);
725 private IAttributeCollection m_attributes; field in class:ClassDef
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DCompactHTMLToken.h59 const Vector<Attribute>& attributes() const { return m_attributes; }
64 // size of CompactHTMLToken, we just use the m_attributes vector.
65 const String& publicIdentifier() const { return m_attributes[0].name; }
66 const String& systemIdentifier() const { return m_attributes[0].value; }
76 Vector<Attribute> m_attributes; member in class:blink::CompactHTMLToken
H A DCompactHTMLToken.cpp57 // size of CompactHTMLToken, we just use the m_attributes vector.
58 m_attributes.append(Attribute(attemptStaticStringCreation(token->publicIdentifier(), Likely8Bit), String(token->systemIdentifier())));
65 m_attributes.reserveInitialCapacity(token->attributes().size());
67 m_attributes.append(Attribute(attemptStaticStringCreation(it->name, Likely8Bit), StringImpl::create8BitIfPossible(it->value)));
86 for (unsigned i = 0; i < m_attributes.size(); ++i) {
87 if (threadSafeMatch(m_attributes.at(i).name, name))
88 return &m_attributes.at(i);
95 for (Vector<Attribute>::const_iterator it = m_attributes.begin(); it != m_attributes.end(); ++it) {
H A DAtomicHTMLToken.h71 return findAttributeInVector(m_attributes, attributeName);
77 return m_attributes;
83 return m_attributes;
164 m_attributes.reserveInitialCapacity(token.attributes().size());
168 if (!findAttributeInVector(m_attributes, name))
169 m_attributes.append(Attribute(name, AtomicString(it->value)));
193 , m_attributes(attributes)
220 Vector<Attribute> m_attributes; member in class:blink::AtomicHTMLToken
229 m_attributes.clear();
230 m_attributes
[all...]
H A DHTMLToken.h261 m_attributes.clear();
273 m_attributes.clear();
284 m_attributes.clear();
292 m_attributes.grow(m_attributes.size() + 1);
293 m_currentAttribute = &m_attributes.last();
348 append(m_attributes[i].value, value);
354 return m_attributes;
359 for (unsigned i = 0; i < m_attributes.size(); ++i) {
360 if (AtomicString(m_attributes
447 AttributeList m_attributes; member in class:blink::HTMLToken
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DCodeAttribute_info.java101 m_attributes = attributes;
120 return m_attributes;
130 return 14 + m_codeSize + m_exceptionHandlerTable.length () + m_attributes.length ();
151 for (int a = 0; a < m_attributes.size (); ++ a)
153 s.append (" " + m_attributes.get (a) + eol);
173 _clone.m_attributes = (IAttributeCollection) m_attributes.clone ();
192 m_attributes.writeInClassFormat (out);
238 m_attributes = ElementFactory.newAttributeCollection (attributes_count);
245 m_attributes
256 private IAttributeCollection m_attributes; // never null field in class:CodeAttribute_info
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
H A DDescendantInvalidationSet.cpp65 if (element.hasAttributes() && m_attributes) {
66 for (WillBeHeapHashSet<AtomicString>::const_iterator it = m_attributes->begin(); it != m_attributes->end(); ++it) {
110 if (other.m_attributes) {
111 WillBeHeapHashSet<AtomicString>::const_iterator end = other.m_attributes->end();
112 for (WillBeHeapHashSet<AtomicString>::const_iterator it = other.m_attributes->begin(); it != end; ++it)
140 if (!m_attributes)
141 m_attributes = adoptPtrWillBeNoop(new WillBeHeapHashSet<AtomicString>);
142 return *m_attributes;
183 m_attributes
[all...]
H A DDescendantInvalidationSet.h73 bool isEmpty() const { return !m_classes && !m_ids && !m_tagNames && !m_attributes; }
93 OwnPtrWillBeMember<WillBeHeapHashSet<AtomicString> > m_attributes; member in class:blink::FINAL
/external/deqp/executor/
H A DxeXMLParser.hpp156 bool hasAttribute (const char* name) const { return m_attributes.find(name) != m_attributes.end(); }
157 const char* getAttribute (const char* name) const { return m_attributes.find(name)->second.c_str(); }
158 const AttributeMap& attributes (void) const { return m_attributes; }
194 AttributeMap m_attributes; member in class:xe::xml::Parser
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttributeCollection.h49 : m_attributes(attributes)
59 iterator begin() const { return m_attributes.data(); }
62 unsigned size() const { return m_attributes.size(); }
74 ContainerMemberType m_attributes;
119 m_attributes.append(Attribute(name, value));
124 m_attributes.remove(index);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormElement.h62 String enctype() const { return m_attributes.encodingType(); }
65 String encoding() const { return m_attributes.encodingType(); }
164 FormSubmission::Attributes m_attributes; member in class:blink::FINAL
/external/deqp/modules/glshared/
H A DglsShaderPerformanceCase.hpp78 std::vector<AttribSpec> m_attributes; member in class:deqp::gls::ShaderPerformanceCase
H A DglsShaderPerformanceMeasurer.cpp174 m_attributes = attributes;
175 m_attributes.push_back(AttribSpec("a_position",
194 m_attribBuffers.resize(m_attributes.size(), 0);
197 for (int attribNdx = 0; attribNdx < (int)m_attributes.size(); attribNdx++)
200 generateVertices(vertices, m_gridSizeX, m_gridSizeY, m_attributes[attribNdx]);
209 for (int attribNdx = 0; attribNdx < (int)m_attributes.size(); attribNdx++)
211 int location = gl.getAttribLocation(program, m_attributes[attribNdx].name.c_str());
H A DglsShaderPerformanceMeasurer.hpp123 std::vector<AttribSpec> m_attributes; member in class:deqp::gls::ShaderPerformanceMeasurer

Completed in 4765 milliseconds

12