Home
last modified time | relevance | path

Searched refs:m_attributes (Results 1 – 25 of 33) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/runtime/
DPropertyDescriptor.cpp41 return !(m_attributes & ReadOnly); in writable()
46 return !(m_attributes & DontEnum); in enumerable()
51 return !(m_attributes & DontDelete); in configurable()
72 m_attributes = ReadOnly | DontDelete | DontEnum; in setUndefined()
90 m_attributes = attributes; in setDescriptor()
97 m_attributes &= ~ReadOnly; in setDescriptor()
108 m_attributes = attributes; in setAccessorDescriptor()
111 m_attributes &= ~ReadOnly; in setAccessorDescriptor()
118 m_attributes &= ~ReadOnly; in setWritable()
120 m_attributes |= ReadOnly; in setWritable()
[all …]
DLookup.h66 m_attributes = attributes;
78 unsigned char attributes() const { return m_attributes; } in attributes()
81 …ThunkGenerator generator() const { ASSERT(m_attributes & Function); return m_u.function.generator;… in generator()
83 …NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.functionVal… in function()
84 …unsigned char functionLength() const { ASSERT(m_attributes & Function); return static_cast<unsigne… in functionLength()
86 …GetFunction propertyGetter() const { ASSERT(!(m_attributes & Function)); return m_u.property.get; } in propertyGetter()
87 …PutFunction propertyPutter() const { ASSERT(!(m_attributes & Function)); return m_u.property.put; } in propertyPutter()
89 intptr_t lexerValue() const { ASSERT(!m_attributes); return m_u.lexer.value; } in lexerValue()
96 unsigned char m_attributes; // JSObject attributes variable
DPropertyDescriptor.h35 : m_attributes(defaultAttributes) in PropertyDescriptor()
45 unsigned attributes() const { return m_attributes; } in attributes()
75 unsigned m_attributes; variable
/external/emma/core/java12/com/vladium/jcd/cls/
DMethod_info.java71 m_attributes = attributes; in Method_info()
87 m_attributes = ElementFactory.newAttributeCollection (attributes_count); in Method_info()
93 m_attributes.add (attribute_info); in Method_info()
132 return m_attributes.hasSynthetic (); in isSynthetic()
137 return ((m_access_flags & ACC_BRIDGE) != 0) || m_attributes.hasBridge (); in isBridge()
155 return m_attributes; in getAttributes()
164 for (int i = 0; i < m_attributes.size (); i++) in toString()
166 Attribute_info attribute_info = m_attributes.get (i); in toString()
187 _clone.m_attributes = (IAttributeCollection) m_attributes.clone (); in clone()
206 m_attributes.writeInClassFormat (out); in writeInClassFormat()
[all …]
DAttributeCollection.java34 return (Attribute_info) m_attributes.get (offset); in get()
58 return m_attributes.size (); in size()
67 int _attributes_count = m_attributes.size (); // use size() if this class becomes non-final in length()
86 … final int attributes_count = m_attributes.size (); // use size() if this class becomes non-final in clone()
87 _clone.m_attributes = new ArrayList (attributes_count); in clone()
90 _clone.m_attributes.add (((Attribute_info) m_attributes.get (a)).clone ()); in clone()
126 final List/* Attribute_info */ attributes = m_attributes; in add()
152 final Attribute_info result = (Attribute_info) m_attributes.set (offset, attribute); in set()
177 final Attribute_info result = (Attribute_info) m_attributes.remove (offset); in remove()
200 m_attributes = capacity < 0 ? new ArrayList () : new ArrayList (capacity); in AttributeCollection()
[all …]
DField_info.java71 m_attributes = attributes; in Field_info()
85 m_attributes = ElementFactory.newAttributeCollection (attributes_count); in Field_info()
92 m_attributes.add (attribute_info); in Field_info()
121 return m_attributes.hasSynthetic (); in isSynthetic()
138 return m_attributes; in getAttributes()
160 _clone.m_attributes = (IAttributeCollection) m_attributes.clone (); in clone()
180 m_attributes.writeInClassFormat (out); in writeInClassFormat()
191 private IAttributeCollection m_attributes; // never null field in Field_info
DClassDef.java58 m_attributes = ElementFactory.newAttributeCollection (-1); in ClassDef()
152 return m_attributes.hasSynthetic (); in isSynthetic()
157 … final InnerClassesAttribute_info innerClassesAttribute = m_attributes.getInnerClassesAttribute (); in isNested()
189 return m_attributes; in getAttributes()
219 _clone.m_attributes = (IAttributeCollection) m_attributes.clone (); in clone()
251 m_attributes.writeInClassFormat (out); in writeInClassFormat()
725 private IAttributeCollection m_attributes; field in ClassDef
/external/webkit/Source/WebCore/dom/
DNamedNodeMap.cpp45 size_t size = m_attributes.size(); in detachAttributesFromElement()
47 if (Attr* attr = m_attributes[i]->attr()) in detachAttributesFromElement()
166 return m_attributes[index]->createAttrIfNeeded(m_element); in item()
171 copy = m_attributes; in copyAttributesToVector()
180 const QualifiedName& attrName = m_attributes[i]->name(); in getAttributeItemSlowCase()
183 return m_attributes[i].get(); in getAttributeItemSlowCase()
189 return m_attributes[i].get(); in getAttributeItemSlowCase()
201 m_attributes.clear(); in clearAttributes()
230 m_attributes.resize(newLength); in setAttributes()
232 m_attributes[i] = other.m_attributes[i]->clone(); in setAttributes()
[all …]
DNamedNodeMap.h61 size_t length() const { return m_attributes.size(); } in length()
68 Attribute* attributeItem(unsigned index) const { return m_attributes[index].get(); } in attributeItem()
73 void shrinkToLength() { m_attributes.shrinkCapacity(length()); } in shrinkToLength()
74 … void reserveInitialCapacity(unsigned capacity) { m_attributes.reserveInitialCapacity(capacity); } in reserveInitialCapacity()
122 Vector<RefPtr<Attribute> > m_attributes; variable
130 if (m_attributes[i]->name().matches(name)) in getAttributeItem()
131 return m_attributes[i].get(); in getAttributeItem()
145 const QualifiedName& attrName = m_attributes[i]->name(); in getAttributeItem()
148 return m_attributes[i].get(); in getAttributeItem()
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
DCodeAttribute_info.java101 m_attributes = attributes; in CodeAttribute_info()
120 return m_attributes; in getAttributes()
130 return 14 + m_codeSize + m_exceptionHandlerTable.length () + m_attributes.length (); in length()
151 for (int a = 0; a < m_attributes.size (); ++ a) in toString()
153 s.append (" " + m_attributes.get (a) + eol); in toString()
173 _clone.m_attributes = (IAttributeCollection) m_attributes.clone (); in clone()
192 m_attributes.writeInClassFormat (out); in writeInClassFormat()
238 m_attributes = ElementFactory.newAttributeCollection (attributes_count); in CodeAttribute_info()
245 m_attributes.add (attribute_info); in CodeAttribute_info()
256 private IAttributeCollection m_attributes; // never null field in CodeAttribute_info
/external/webkit/Source/WebCore/html/parser/
DHTMLToken.h104 m_attributes.clear(); in beginStartTag()
116 m_attributes.clear(); in beginEndTag()
173 m_attributes.grow(m_attributes.size() + 1); in addNewAttribute()
174 m_currentAttribute = &m_attributes.last(); in addNewAttribute()
229 m_attributes[i].m_value.append(value.characters(), value.length()); in appendToAttributeValue()
249 return m_attributes; in attributes()
267 m_attributes[i].m_value.clear(); in eraseValueOfAttribute()
375 AttributeList m_attributes; variable
418 , m_attributes(attributes) in m_type()
446 if (!m_attributes) in getAttributeItem()
[all …]
/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGResourceLinearGradient.cpp44 m_attributes = LinearGradientAttributes(); in collectGradientAttributes()
45 … static_cast<SVGLinearGradientElement*>(gradientElement)->collectGradientAttributes(m_attributes); in collectGradientAttributes()
55 linearGradientElement->calculateStartEndPoints(m_attributes, startPoint, endPoint); in buildGradient()
58 gradientData->gradient->setSpreadMethod(m_attributes.spreadMethod()); in buildGradient()
61 addStops(gradientData, m_attributes.stops()); in buildGradient()
DRenderSVGResourceRadialGradient.cpp44 m_attributes = RadialGradientAttributes(); in collectGradientAttributes()
45 … static_cast<SVGRadialGradientElement*>(gradientElement)->collectGradientAttributes(m_attributes); in collectGradientAttributes()
56 …radialGradientElement->calculateFocalCenterPointsAndRadius(m_attributes, focalPoint, centerPoint, … in buildGradient()
63 gradientData->gradient->setSpreadMethod(m_attributes.spreadMethod()); in buildGradient()
66 addStops(gradientData, m_attributes.stops()); in buildGradient()
DRenderSVGInlineText.h39 SVGTextLayoutAttributes& layoutAttributes() { return m_attributes; } in layoutAttributes()
40 const SVGTextLayoutAttributes& layoutAttributes() const { return m_attributes; } in layoutAttributes()
41 …void storeLayoutAttributes(const SVGTextLayoutAttributes& attributes) { m_attributes = attributes;… in storeLayoutAttributes()
68 SVGTextLayoutAttributes m_attributes; variable
DRenderSVGResourceRadialGradient.h42 virtual bool boundingBoxMode() const { return m_attributes.boundingBoxMode(); } in boundingBoxMode()
43 …virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gra… in calculateGradientTransform()
48 RadialGradientAttributes m_attributes;
DRenderSVGResourceLinearGradient.h42 virtual bool boundingBoxMode() const { return m_attributes.boundingBoxMode(); } in boundingBoxMode()
43 …virtual void calculateGradientTransform(AffineTransform& transform) { transform = m_attributes.gra… in calculateGradientTransform()
48 LinearGradientAttributes m_attributes;
DRenderSVGResourcePattern.cpp91 m_attributes = PatternAttributes(); in applyResource()
92 patternElement->collectPatternAttributes(m_attributes); in applyResource()
99 if (m_attributes.boundingBoxMode() && objectBoundingBox.isEmpty()) in applyResource()
108 if (!m_attributes.patternContentElement()) in applyResource()
114 …if (!buildTileImageTransform(object, m_attributes, patternElement, tileBoundaries, tileImageTransf… in applyResource()
123 …OwnPtr<ImageBuffer> tileImage = createTileImage(object, m_attributes, tileBoundaries, absoluteTile… in applyResource()
140 AffineTransform patternTransform = m_attributes.patternTransform(); in applyResource()
DRenderSVGInlineText.cpp139 ASSERT(m_attributes.xValues().size() == textLength()); in characterStartsNewTextChunk()
140 ASSERT(m_attributes.yValues().size() == textLength()); in characterStartsNewTextChunk()
149 unsigned size = m_attributes.textMetricsValues().size(); in characterStartsNewTextChunk()
151 const SVGTextMetrics& metrics = m_attributes.textMetricsValues().at(i); in characterStartsNewTextChunk()
155 return m_attributes.xValues().at(position) != SVGTextLayoutAttributes::emptyValue() in characterStartsNewTextChunk()
156 || m_attributes.yValues().at(position) != SVGTextLayoutAttributes::emptyValue(); in characterStartsNewTextChunk()
DRenderSVGResourcePattern.h68 PatternAttributes m_attributes; variable
/external/webkit/Source/WebCore/html/
DHTMLFormElement.h58 String enctype() const { return m_attributes.encodingType(); } in enctype()
61 String encoding() const { return m_attributes.encodingType(); } in encoding()
93 String acceptCharset() const { return m_attributes.acceptCharset(); } in acceptCharset()
152 FormSubmission::Attributes m_attributes; variable
DHTMLFormElement.cpp336 …frame->loader()->submitForm(FormSubmission::create(this, m_attributes, event, !processingUserGestu… in submit()
369 m_attributes.parseAction(attr->value()); in parseMappedAttribute()
371 m_attributes.setTarget(attr->value()); in parseMappedAttribute()
373 m_attributes.parseMethodType(attr->value()); in parseMappedAttribute()
375 m_attributes.parseEncodingType(attr->value()); in parseMappedAttribute()
377 m_attributes.setAcceptCharset(attr->value()); in parseMappedAttribute()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DSerializerBase.java136 protected AttributesImplSerializer m_attributes = new AttributesImplSerializer(); field in SerializerBase
413 index = m_attributes.getIndex(rawName); in addAttributeAlways()
415 index = m_attributes.getIndex(uri,localName); in addAttributeAlways()
423 m_attributes.setValue(index,value); in addAttributeAlways()
429 m_attributes.addAttribute(uri, localName, rawName, type, value); in addAttributeAlways()
1125 elemName, m_attributes); in fireStartElem()
1251 this.m_attributes.clear(); in resetSerializerBase()
DToStream.java2074 final String name = m_attributes.getQName(i); in processAttributes()
2075 final String value = m_attributes.getValue(i); in processAttributes()
2221 int nAttrs = m_attributes.getLength(); in endElement()
2226 m_attributes.clear(); in endElement()
2620 int nAttrs = m_attributes.getLength(); in closeStartTag()
2625 m_attributes.clear(); in closeStartTag()
3020 index = m_attributes.getIndex(rawName); in addAttributeAlways()
3022 index = m_attributes.getIndex(uri, localName); in addAttributeAlways()
3030 old_value = m_attributes.getValue(index); in addAttributeAlways()
3039 m_attributes.setValue(index, value); in addAttributeAlways()
[all …]
/external/webkit/Tools/DumpRenderTree/chromium/
DAccessibilityUIElement.cpp247 m_attributes.append("\n------------\n"); in collectAttributes()
248 m_attributes.append(getAttributes(object)); in collectAttributes()
251 string attributes() const { return m_attributes; } in attributes()
254 string m_attributes; member in AttributesCollector
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DXSLTElementDef.java272 this.m_attributes = attributes; in build()
555 private XSLTAttributeDef[] m_attributes; field in XSLTElementDef
564 return m_attributes; in getAttributes()

12