Searched defs:m_attributes (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
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.h69 PatternAttributes m_attributes; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
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/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 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/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.hpp123 std::vector<AttribSpec> m_attributes; member in class:deqp::gls::ShaderPerformanceMeasurer
/external/emma/core/java12/com/vladium/jcd/cls/
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 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 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/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...]
/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/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;
/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/deqp/modules/egl/
H A DteglChooseConfigTests.cpp94 m_attributes.push_back(std::make_pair((EGLenum)attributes[0], (EGLint)attributes[1]));
102 , m_attributes (attributes)
110 executeTest(m_attributes, m_checkOrder);
195 vector<pair<EGLenum, EGLint> > m_attributes; member in class:deqp::egl::ChooseConfigCase
/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...]
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLDocumentParser.cpp134 m_attributes = static_cast<xmlChar**>(xmlMalloc(sizeof(xmlChar*) * attributeCount * 5));
139 m_attributes[i * 5 + j] = xmlStrdup(attributes[i * 5 + j]);
141 m_attributes[i * 5 + 3] = xmlStrndup(attributes[i * 5 + 3], length);
142 m_attributes[i * 5 + 4] = m_attributes[i * 5 + 3] + length;
153 xmlFree(m_attributes[i * 5 + j]);
154 xmlFree(m_attributes);
161 m_attributeCount, m_defaultedCount, const_cast<const xmlChar**>(m_attributes));
172 xmlChar** m_attributes; member in class:blink::FINAL
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 1638 milliseconds