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

12

/external/testng/src/main/java/org/testng/internal/
H A DAttributes.java19 private Map<String, Object> m_attributes = Maps.newHashMap(); field in class:Attributes
23 return m_attributes.get(name);
28 return m_attributes.keySet();
33 m_attributes.put(name, value);
38 return m_attributes.remove(name);
H A DTestResult.java279 private IAttributes m_attributes = new Attributes(); field in class:TestResult
283 return m_attributes.getAttribute(name);
288 m_attributes.setAttribute(name, value);
293 return m_attributes.getAttributeNames();
298 return m_attributes.removeAttribute(name);
/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/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/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/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
H A DglsShaderPerformanceCase.cpp149 m_measurer.init(m_program->getProgram(), m_attributes, initialCallCount);
/external/deqp/modules/gles2/performance/
H A Des2pShaderControlStatementTests.cpp295 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(value, 0.0f, 0.0f, 0.0f),
326 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(minValue, 0.0f, 0.0f, 0.0f),
333 m_attributes.push_back(AttribSpec("a_value0", Vec4(0.0f, 0.1f, 0.2f, 0.3f),
338 m_attributes.push_back(AttribSpec("a_value1", Vec4(0.0f, 0.1f, 0.2f, 0.3f),
571 m_attributes.push_back(AttribSpec("a_bound", Vec4(loopBound, 0.0f, 0.0f, 0.0f),
602 m_attributes.push_back(AttribSpec("a_bound", Vec4(minValue, 0.0f, 0.0f, 0.0f),
609 m_attributes.push_back(AttribSpec("a_value", Vec4(0.0f, 0.1f, 0.2f, 0.3f),
743 m_attributes.push_back(AttribSpec("a_value", Vec4(0.0f, 0.1f, 0.2f, 0.3f),
H A Des2pBlendTests.cpp104 m_attributes.push_back(AttribSpec("a_color", Vec4(0.0f, 0.5f, 0.5f, 1.0f),
H A Des2pTextureCases.cpp117 m_attributes.push_back(AttribSpec("a_coords", Vec4(p00.x(), p00.y(), 0.0f, 0.0f),
/external/deqp/modules/gles3/performance/
H A Des3pShaderControlStatementTests.cpp299 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(value, 0.0f, 0.0f, 0.0f),
330 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(minValue, 0.0f, 0.0f, 0.0f),
337 m_attributes.push_back(AttribSpec("a_value0", Vec4(0.0f, 0.1f, 0.2f, 0.3f),
342 m_attributes.push_back(AttribSpec("a_value1", Vec4(0.0f, 0.1f, 0.2f, 0.3f),
579 m_attributes.push_back(AttribSpec("a_bound", Vec4(loopBound, 0.0f, 0.0f, 0.0f),
610 m_attributes.push_back(AttribSpec("a_bound", Vec4(minValue, 0.0f, 0.0f, 0.0f),
617 m_attributes.push_back(AttribSpec("a_value", Vec4(0.0f, 0.1f, 0.2f, 0.3f),
755 m_attributes.push_back(AttribSpec("a_value", Vec4(0.0f, 0.1f, 0.2f, 0.3f),
H A Des3pBlendTests.cpp107 m_attributes.push_back(AttribSpec("a_color", Vec4(0.0f, 0.5f, 0.5f, 1.0f),
H A Des3pTextureCases.cpp125 m_attributes.push_back(AttribSpec("a_coords", Vec4(p00.x(), p00.y(), 0.0f, 0.0f),
/external/testng/src/main/java/org/testng/
H A DSuiteRunner.java631 private IAttributes m_attributes = new Attributes(); field in class:SuiteRunner
635 return m_attributes.getAttribute(name);
640 m_attributes.setAttribute(name, value);
645 return m_attributes.getAttributeNames();
650 return m_attributes.removeAttribute(name);
/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();
H A DToHTMLStream.java991 int nAttrs = m_attributes.getLength();
996 m_attributes.clear();
1762 * @param nAttrs the number of attributes in m_attributes
1777 m_attributes.getQName(i),
1778 m_attributes.getValue(i),
1799 int nAttrs = m_attributes.getLength();
1804 m_attributes.clear();
/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/modules/egl/
H A DteglChooseConfigTests.cpp119 m_attributes.push_back(std::make_pair((EGLenum)attributes[0], (EGLint)attributes[1]));
127 , m_attributes (attributes)
147 executeTest(m_attributes, m_checkOrder);
234 vector<pair<EGLenum, EGLint> > m_attributes; member in class:deqp::egl::ChooseConfigCase

Completed in 424 milliseconds

12