Home
last modified time | relevance | path

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

12

/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/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/testng/src/main/java/org/testng/internal/
DAttributes.java19 private Map<String, Object> m_attributes = Maps.newHashMap(); field in Attributes
23 return m_attributes.get(name); in getAttribute()
28 return m_attributes.keySet(); in getAttributeNames()
33 m_attributes.put(name, value); in setAttribute()
38 return m_attributes.remove(name); in removeAttribute()
DTestResult.java279 private IAttributes m_attributes = new Attributes(); field in TestResult
283 return m_attributes.getAttribute(name); in getAttribute()
288 m_attributes.setAttribute(name, value); in setAttribute()
293 return m_attributes.getAttributeNames(); in getAttributeNames()
298 return m_attributes.removeAttribute(name); in removeAttribute()
/external/deqp/executor/
DxeXMLParser.hpp156 …bool hasAttribute (const char* name) const { return m_attributes.find(name) != m_attributes.… in hasAttribute()
157 …const char* getAttribute (const char* name) const { return m_attributes.find(name)->second.c_… in getAttribute()
158 const AttributeMap& attributes (void) const { return m_attributes; } in attributes()
194 AttributeMap m_attributes; member in xe::xml::Parser
DxeXMLParser.cpp360 m_attributes.clear(); in clear()
384 m_attributes.clear(); in advance()
521 m_tokenizer.getString(m_attributes[m_attribName]); in advance()
/external/deqp/modules/glshared/
DglsShaderPerformanceMeasurer.cpp174 m_attributes = attributes; in init()
175 m_attributes.push_back(AttribSpec("a_position", in init()
194 m_attribBuffers.resize(m_attributes.size(), 0); in init()
197 for (int attribNdx = 0; attribNdx < (int)m_attributes.size(); attribNdx++) in init()
200 generateVertices(vertices, m_gridSizeX, m_gridSizeY, m_attributes[attribNdx]); in init()
209 for (int attribNdx = 0; attribNdx < (int)m_attributes.size(); attribNdx++) in init()
211 int location = gl.getAttribLocation(program, m_attributes[attribNdx].name.c_str()); in init()
DglsShaderPerformanceCase.hpp78 std::vector<AttribSpec> m_attributes; member in deqp::gls::ShaderPerformanceCase
DglsShaderPerformanceMeasurer.hpp123 std::vector<AttribSpec> m_attributes; member in deqp::gls::ShaderPerformanceMeasurer
DglsShaderPerformanceCase.cpp149 m_measurer.init(m_program->getProgram(), m_attributes, initialCallCount); in init()
/external/deqp/modules/gles2/performance/
Des2pShaderControlStatementTests.cpp295 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(value, 0.0f, 0.0f, 0.0f), in init()
326 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(minValue, 0.0f, 0.0f, 0.0f), in init()
333 m_attributes.push_back(AttribSpec("a_value0", Vec4(0.0f, 0.1f, 0.2f, 0.3f), in init()
338 m_attributes.push_back(AttribSpec("a_value1", Vec4(0.0f, 0.1f, 0.2f, 0.3f), in init()
571 m_attributes.push_back(AttribSpec("a_bound", Vec4(loopBound, 0.0f, 0.0f, 0.0f), in init()
602 m_attributes.push_back(AttribSpec("a_bound", Vec4(minValue, 0.0f, 0.0f, 0.0f), in init()
609 m_attributes.push_back(AttribSpec("a_value", Vec4(0.0f, 0.1f, 0.2f, 0.3f), in init()
743 m_attributes.push_back(AttribSpec("a_value", Vec4(0.0f, 0.1f, 0.2f, 0.3f), in init()
Des2pBlendTests.cpp104 m_attributes.push_back(AttribSpec("a_color", Vec4(0.0f, 0.5f, 0.5f, 1.0f), in init()
/external/deqp/modules/gles3/performance/
Des3pShaderControlStatementTests.cpp299 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(value, 0.0f, 0.0f, 0.0f), in init()
330 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(minValue, 0.0f, 0.0f, 0.0f), in init()
337 m_attributes.push_back(AttribSpec("a_value0", Vec4(0.0f, 0.1f, 0.2f, 0.3f), in init()
342 m_attributes.push_back(AttribSpec("a_value1", Vec4(0.0f, 0.1f, 0.2f, 0.3f), in init()
579 m_attributes.push_back(AttribSpec("a_bound", Vec4(loopBound, 0.0f, 0.0f, 0.0f), in init()
610 m_attributes.push_back(AttribSpec("a_bound", Vec4(minValue, 0.0f, 0.0f, 0.0f), in init()
617 m_attributes.push_back(AttribSpec("a_value", Vec4(0.0f, 0.1f, 0.2f, 0.3f), in init()
755 m_attributes.push_back(AttribSpec("a_value", Vec4(0.0f, 0.1f, 0.2f, 0.3f), in init()
Des3pBlendTests.cpp107 m_attributes.push_back(AttribSpec("a_color", Vec4(0.0f, 0.5f, 0.5f, 1.0f), in init()
/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 …]
DToXMLSAXHandler.java206 m_saxHandler.startElement(uri, localName, m_elemContext.m_elementName, m_attributes); in closeStartTag()
209 m_attributes.clear(); in closeStartTag()
DToHTMLStream.java991 int nAttrs = m_attributes.getLength(); in endElement()
996 m_attributes.clear(); in endElement()
1777 m_attributes.getQName(i), in processAttributes()
1778 m_attributes.getValue(i), in processAttributes()
1799 int nAttrs = m_attributes.getLength(); in closeStartTag()
1804 m_attributes.clear(); in closeStartTag()
/external/testng/src/main/java/org/testng/
DSuiteRunner.java631 private IAttributes m_attributes = new Attributes(); field in SuiteRunner
635 return m_attributes.getAttribute(name); in getAttribute()
640 m_attributes.setAttribute(name, value); in setAttribute()
645 return m_attributes.getAttributeNames(); in getAttributeNames()
650 return m_attributes.removeAttribute(name); in removeAttribute()
/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()
/external/deqp/modules/egl/
DteglChooseConfigTests.cpp121 m_attributes.push_back(std::make_pair((EGLenum)attributes[0], (EGLint)attributes[1])); in ChooseConfigCase()
129 , m_attributes (attributes) in ChooseConfigCase()
149 executeTest(m_attributes, m_checkOrder); in iterate()
236 vector<pair<EGLenum, EGLint> > m_attributes; member in deqp::egl::ChooseConfigCase
/external/deqp/modules/gles3/functional/
Des3fTransformFeedbackTests.cpp869 vector<Attribute> m_attributes; member in deqp::gles3::Functional::TransformFeedback::TransformFeedbackCase
951 …computeInputLayout(m_attributes, m_inputStride, m_progSpec.getVaryings(), m_progSpec.isPointSizeUs… in init()
954 …computeTransformFeedbackOutputs(m_transformFeedbackOutputs, m_attributes, m_progSpec.getVaryings()… in init()
1003 m_attributes.clear(); in deinit()
1094 genInputData(m_attributes, numInputs, m_inputStride, &inputData[0], rnd); in runTest()
1120 …for (vector<Attribute>::const_iterator attrib = m_attributes.begin(); attrib != m_attributes.end()… in runTest()

12