HomeSort by relevance Sort by last modified time
    Searched refs:m_attributes (Results 1 - 25 of 33) sorted by null

1 2

  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceLinearGradient.h 42 virtual bool boundingBoxMode() const { return m_attributes.boundingBoxMode(); }
43 virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gradientTransform(); }
48 LinearGradientAttributes m_attributes; member in class:WebCore::RenderSVGResourceLinearGradient
RenderSVGResourceRadialGradient.h 42 virtual bool boundingBoxMode() const { return m_attributes.boundingBoxMode(); }
43 virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gradientTransform(); }
48 RadialGradientAttributes m_attributes; member in class:WebCore::RenderSVGResourceRadialGradient
RenderSVGResourceLinearGradient.cpp 44 m_attributes = LinearGradientAttributes();
45 static_cast<SVGLinearGradientElement*>(gradientElement)->collectGradientAttributes(m_attributes);
55 linearGradientElement->calculateStartEndPoints(m_attributes, startPoint, endPoint);
58 gradientData->gradient->setSpreadMethod(m_attributes.spreadMethod());
61 addStops(gradientData, m_attributes.stops());
RenderSVGResourceRadialGradient.cpp 44 m_attributes = RadialGradientAttributes();
45 static_cast<SVGRadialGradientElement*>(gradientElement)->collectGradientAttributes(m_attributes);
56 radialGradientElement->calculateFocalCenterPointsAndRadius(m_attributes, focalPoint, centerPoint, radius);
63 gradientData->gradient->setSpreadMethod(m_attributes.spreadMethod());
66 addStops(gradientData, m_attributes.stops());
RenderSVGInlineText.h 39 SVGTextLayoutAttributes& layoutAttributes() { return m_attributes; }
40 const SVGTextLayoutAttributes& layoutAttributes() const { return m_attributes; }
41 void storeLayoutAttributes(const SVGTextLayoutAttributes& attributes) { m_attributes = attributes; }
68 SVGTextLayoutAttributes m_attributes; member in class:WebCore::RenderSVGInlineText
RenderSVGResourcePattern.cpp 91 m_attributes = PatternAttributes();
92 patternElement->collectPatternAttributes(m_attributes);
99 if (m_attributes.boundingBoxMode() && objectBoundingBox.isEmpty())
108 if (!m_attributes.patternContentElement())
114 if (!buildTileImageTransform(object, m_attributes, patternElement, tileBoundaries, tileImageTransform))
123 OwnPtr<ImageBuffer> tileImage = createTileImage(object, m_attributes, tileBoundaries, absoluteTileBoundaries, tileImageTransform);
140 AffineTransform patternTransform = m_attributes.patternTransform();
RenderSVGResourcePattern.h 68 PatternAttributes m_attributes; member in class:WebCore::RenderSVGResourcePattern
RenderSVGInlineText.cpp 139 ASSERT(m_attributes.xValues().size() == textLength());
140 ASSERT(m_attributes.yValues().size() == textLength());
149 unsigned size = m_attributes.textMetricsValues().size();
151 const SVGTextMetrics& metrics = m_attributes.textMetricsValues().at(i);
155 return m_attributes.xValues().at(position) != SVGTextLayoutAttributes::emptyValue()
156 || m_attributes.yValues().at(position) != SVGTextLayoutAttributes::emptyValue();
  /external/webkit/Source/JavaScriptCore/runtime/
PropertyDescriptor.cpp 41 return !(m_attributes & ReadOnly);
46 return !(m_attributes & DontEnum);
51 return !(m_attributes & DontDelete);
72 m_attributes = ReadOnly | DontDelete | DontEnum;
90 m_attributes = attributes;
97 m_attributes &= ~ReadOnly;
108 m_attributes = attributes;
111 m_attributes &= ~ReadOnly;
118 m_attributes &= ~ReadOnly;
120 m_attributes |= ReadOnly
    [all...]
PropertyDescriptor.h 35 : m_attributes(defaultAttributes)
45 unsigned attributes() const { return m_attributes; }
75 unsigned m_attributes; member in class:JSC::PropertyDescriptor
Lookup.h 66 m_attributes = attributes;
78 unsigned char attributes() const { return m_attributes; }
81 ThunkGenerator generator() const { ASSERT(m_attributes & Function); return m_u.function.generator; }
83 NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.functionValue; }
84 unsigned char functionLength() const { ASSERT(m_attributes & Function); return static_cast<unsigned char>(m_u.function.length); }
86 GetFunction propertyGetter() const { ASSERT(!(m_attributes & Function)); return m_u.property.get; }
87 PutFunction propertyPutter() const { ASSERT(!(m_attributes & Function)); return m_u.property.put; }
89 intptr_t lexerValue() const { ASSERT(!m_attributes); return m_u.lexer.value; }
96 unsigned char m_attributes; // JSObject attributes member in class:JSC::HashEntry
  /external/emma/core/java12/com/vladium/jcd/cls/
Field_info.java 71 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
Method_info.java 71 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.clone ()
217 private IAttributeCollection m_attributes; field in class:Method_info
    [all...]
AttributeCollection.java 34 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.remove (offset)
    [all...]
ClassDef.java 58 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/emma/core/java12/com/vladium/jcd/cls/attribute/
CodeAttribute_info.java 101 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.add (attribute_info)
256 private IAttributeCollection m_attributes; \/\/ never null field in class:CodeAttribute_info
    [all...]
  /external/webkit/Source/WebCore/dom/
NamedNodeMap.h 61 size_t length() const { return m_attributes.size(); }
68 Attribute* attributeItem(unsigned index) const { return m_attributes[index].get(); }
73 void shrinkToLength() { m_attributes.shrinkCapacity(length()); }
74 void reserveInitialCapacity(unsigned capacity) { m_attributes.reserveInitialCapacity(capacity); }
122 Vector<RefPtr<Attribute> > m_attributes; member in class:WebCore::NamedNodeMap
130 if (m_attributes[i]->name().matches(name))
131 return m_attributes[i].get();
145 const QualifiedName& attrName = m_attributes[i]->name();
148 return m_attributes[i].get();
NamedNodeMap.cpp 45 size_t size = m_attributes.size();
47 if (Attr* attr = m_attributes[i]->attr())
166 return m_attributes[index]->createAttrIfNeeded(m_element);
171 copy = m_attributes;
180 const QualifiedName& attrName = m_attributes[i]->name();
183 return m_attributes[i].get();
189 return m_attributes[i].get();
201 m_attributes.clear();
230 m_attributes.resize(newLength);
232 m_attributes[i] = other.m_attributes[i]->clone()
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLToken.h 104 m_attributes.clear();
116 m_attributes.clear();
173 m_attributes.grow(m_attributes.size() + 1);
174 m_currentAttribute = &m_attributes.last();
229 m_attributes[i].m_value.append(value.characters(), value.length());
249 return m_attributes;
267 m_attributes[i].m_value.clear();
375 AttributeList m_attributes; member in class:WebCore::HTMLToken
377 // A pointer into m_attributes used during lexing
532 RefPtr<NamedNodeMap> m_attributes; member in class:WebCore::AtomicHTMLToken
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLFormElement.h 58 String enctype() const { return m_attributes.encodingType(); }
61 String encoding() const { return m_attributes.encodingType(); }
93 String acceptCharset() const { return m_attributes.acceptCharset(); }
152 FormSubmission::Attributes m_attributes; member in class:WebCore::HTMLFormElement
HTMLFormElement.cpp 336 frame->loader()->submitForm(FormSubmission::create(this, m_attributes, event, !processingUserGesture, formSubmissionTrigger));
369 m_attributes.parseAction(attr->value());
371 m_attributes.setTarget(attr->value());
373 m_attributes.parseMethodType(attr->value());
375 m_attributes.parseEncodingType(attr->value());
377 m_attributes.setAcceptCharset(attr->value());
  /external/webkit/Tools/DumpRenderTree/chromium/
AccessibilityUIElement.cpp 247 m_attributes.append("\n------------\n");
248 m_attributes.append(getAttributes(object));
251 string attributes() const { return m_attributes; }
254 string m_attributes; member in class:AttributesCollector
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerBase.java 136 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);
    [all...]
ToStream.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementDef.java 272 this.m_attributes = attributes;
555 private XSLTAttributeDef[] m_attributes; field in class:XSLTElementDef
564 return m_attributes;

Completed in 491 milliseconds

1 2