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

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceLinearGradient.cpp43 m_attributes = LinearGradientAttributes();
44 return static_cast<SVGLinearGradientElement*>(gradientElement)->collectGradientAttributes(m_attributes);
59 gradientData->gradient = Gradient::create(startPoint(m_attributes), endPoint(m_attributes));
60 gradientData->gradient->setSpreadMethod(platformSpreadMethodFromSVGType(m_attributes.spreadMethod()));
61 addStops(gradientData, m_attributes.stops());
H A DRenderSVGResourceRadialGradient.cpp44 m_attributes = RadialGradientAttributes();
45 return static_cast<SVGRadialGradientElement*>(gradientElement)->collectGradientAttributes(m_attributes);
70 gradientData->gradient = Gradient::create(this->focalPoint(m_attributes),
71 this->focalRadius(m_attributes),
72 this->centerPoint(m_attributes),
73 this->radius(m_attributes));
75 gradientData->gradient->setSpreadMethod(platformSpreadMethodFromSVGType(m_attributes.spreadMethod()));
77 addStops(gradientData, m_attributes.stops());
H A DRenderSVGResourceLinearGradient.h41 virtual SVGUnitTypes::SVGUnitType gradientUnits() const { return m_attributes.gradientUnits(); }
42 virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gradientTransform(); }
50 LinearGradientAttributes m_attributes; member in class:WebCore::FINAL
H A DRenderSVGResourceRadialGradient.h41 virtual SVGUnitTypes::SVGUnitType gradientUnits() const { return m_attributes.gradientUnits(); }
42 virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gradientTransform(); }
52 RadialGradientAttributes m_attributes; member in class:WebCore::FINAL
H A DRenderSVGResourcePattern.cpp68 m_attributes = PatternAttributes();
69 patternElement->collectPatternAttributes(m_attributes);
74 if (!m_attributes.patternContentElement())
78 if (m_attributes.hasViewBox() && m_attributes.viewBox().isEmpty())
84 if (!buildTileImageTransform(object, m_attributes, patternElement, tileBoundaries, tileImageTransform))
96 absoluteTileBoundaries.scale(static_cast<float>(m_attributes.patternTransform().xScale()),
97 static_cast<float>(m_attributes.patternTransform().yScale()));
100 OwnPtr<ImageBuffer> tileImage = createTileImage(m_attributes, tileBoundaries, absoluteTileBoundaries, tileImageTransform, clampedAbsoluteTileBoundaries);
117 AffineTransform patternTransform = m_attributes
[all...]
H A DRenderSVGResourcePattern.h71 PatternAttributes m_attributes; member in class:WebCore::FINAL
/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.h60 const Vector<Attribute>& attributes() const { return m_attributes; }
65 // size of CompactHTMLToken, we just use the m_attributes vector.
66 const HTMLIdentifier& publicIdentifier() const { return m_attributes[0].name; }
67 const String& systemIdentifier() const { return m_attributes[0].value; }
77 Vector<Attribute> m_attributes; member in class:WebCore::CompactHTMLToken
H A DCompactHTMLToken.cpp57 // size of CompactHTMLToken, we just use the m_attributes vector.
58 m_attributes.append(Attribute(HTMLIdentifier(token->publicIdentifier(), Likely8Bit), String(token->systemIdentifier())));
65 m_attributes.reserveInitialCapacity(token->attributes().size());
67 m_attributes.append(Attribute(HTMLIdentifier(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.h70 return findAttributeInVector(m_attributes, attributeName);
76 return m_attributes;
82 return m_attributes;
160 m_attributes.reserveInitialCapacity(token.attributes().size());
164 if (!findAttributeInVector(m_attributes, name))
165 m_attributes.append(Attribute(name, it->value));
189 , m_attributes(attributes)
216 Vector<Attribute> m_attributes; member in class:WebCore::AtomicHTMLToken
225 m_attributes.clear();
226 m_attributes
[all...]
H A DHTMLToken.h258 m_attributes.clear();
270 m_attributes.clear();
281 m_attributes.clear();
289 m_attributes.grow(m_attributes.size() + 1);
290 m_currentAttribute = &m_attributes.last();
347 append(m_attributes[i].value, value);
353 return m_attributes;
358 for (unsigned i = 0; i < m_attributes.size(); ++i) {
359 if (AtomicString(m_attributes
445 AttributeList m_attributes; member in class:WebCore::HTMLToken
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentSharedObjectPool.cpp37 : m_attributes(attributes)
45 return memcmp(m_attributes, other.m_attributes, sizeof(Attribute) * m_attributeCount);
50 return StringHasher::hashMemory(m_attributes, m_attributeCount * sizeof(Attribute));
54 const Attribute* m_attributes; member in class:WebCore::ShareableElementDataCacheKey
/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/html/
H A DHTMLFormElement.h59 String enctype() const { return m_attributes.encodingType(); }
62 String encoding() const { return m_attributes.encodingType(); }
88 String acceptCharset() const { return m_attributes.acceptCharset(); }
162 FormSubmission::Attributes m_attributes; member in class:WebCore::FINAL
H A DHTMLFormElement.cpp352 frame->loader()->submitForm(FormSubmission::create(this, m_attributes, event, formSubmissionTrigger));
430 m_attributes.parseAction(value);
432 m_attributes.setTarget(value);
434 m_attributes.updateMethodType(value);
436 m_attributes.updateEncodingType(value);
438 m_attributes.setAcceptCharset(value);
599 return FormSubmission::Attributes::methodString(m_attributes.method());
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
H A DDrawingBuffer.cpp162 bool needPremultiply = m_attributes.alpha && !m_attributes.premultipliedAlpha;
266 m_attributes = m_context->getContextAttributes();
268 if (m_attributes.alpha) {
308 m_layer->setOpaque(!m_attributes.alpha);
309 m_layer->setBlendBackgroundColor(m_attributes.alpha);
310 m_layer->setPremultipliedAlpha(m_attributes.premultipliedAlpha);
340 extensions->paintFramebufferToCanvas(framebuffer, size().width(), size().height(), !m_attributes.premultipliedAlpha, imageBuffer);
488 if (m_attributes.depth && m_attributes
[all...]
H A DDrawingBuffer.h195 GraphicsContext3D::Attributes m_attributes; member in class:WebCore::DrawingBuffer
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializerBase.java136 protected AttributesImplSerializer m_attributes = new AttributesImplSerializer(); field in class:SerializerBase
404 // m_attributes.getIndex(rawName):m_attributes.getIndex(uri, localName);
407 // index = m_attributes.getIndex(rawName);
410 // index = m_attributes.getIndex(uri, localName);
413 index = m_attributes.getIndex(rawName);
415 index = m_attributes.getIndex(uri,localName);
423 m_attributes.setValue(index,value);
429 m_attributes.addAttribute(uri, localName, rawName, type, value);
1125 elemName, m_attributes);
[all...]
H A DToStream.java2056 * @param nAttrs the number of attributes in m_attributes
2074 final String name = m_attributes.getQName(i);
2075 final String value = m_attributes.getValue(i);
2221 int nAttrs = m_attributes.getLength();
2226 m_attributes.clear();
2620 int nAttrs = m_attributes.getLength();
2625 m_attributes.clear();
3020 index = m_attributes.getIndex(rawName);
3022 index = m_attributes.getIndex(uri, localName);
3030 old_value = m_attributes
[all...]
H A DToXMLSAXHandler.java206 m_saxHandler.startElement(uri, localName, m_elemContext.m_elementName, m_attributes);
209 m_attributes.clear();
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLDocumentParser.cpp129 m_attributes = static_cast<xmlChar**>(xmlMalloc(sizeof(xmlChar*) * attributeCount * 5));
134 m_attributes[i * 5 + j] = xmlStrdup(attributes[i * 5 + j]);
136 m_attributes[i * 5 + 3] = xmlStrndup(attributes[i * 5 + 3], length);
137 m_attributes[i * 5 + 4] = m_attributes[i * 5 + 3] + length;
148 xmlFree(m_attributes[i * 5 + j]);
149 xmlFree(m_attributes);
156 m_attributeCount, m_defaultedCount, const_cast<const xmlChar**>(m_attributes));
167 xmlChar** m_attributes; member in class:WebCore::FINAL
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementDef.java272 this.m_attributes = attributes;
555 private XSLTAttributeDef[] m_attributes; field in class:XSLTElementDef
564 return m_attributes;

Completed in 693 milliseconds

12