Home
last modified time | relevance | path

Searched refs:attribName (Results 1 – 10 of 10) sorted by relevance

/external/deqp/framework/egl/
DegluStrUtil.cpp167 const char* attribName = getConfigAttribName(attrib); in operator <<() local
169 if (attribName) in operator <<()
172 str << attribName << ", " << getConfigAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<()
207 const char* attribName = getSurfaceAttribName(attrib); in operator <<() local
209 if (attribName) in operator <<()
212 str << attribName << ", " << getSurfaceAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<()
247 const char* attribName = getContextAttribName(attrib); in operator <<() local
249 if (attribName) in operator <<()
252 str << attribName << ", " << getContextAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<()
/external/owasp/sanitizer/src/main/org/owasp/html/
DHtmlLexer.java245 private static boolean isValuelessAttribute(String attribName) { in isValuelessAttribute() argument
247 Strings.toLowerCase(attribName)); in isValuelessAttribute()
/external/cldr/tools/java/org/unicode/cldr/util/
DLDMLUtilities.java1709 public static Node getAttributeNode(Node sNode, String attribName) { in getAttributeNode() argument
1712 return attrs.getNamedItem(attribName); in getAttributeNode()
1725 public static String getAttributeValue(Node sNode, String attribName) { in getAttributeValue() argument
1729 Node attr = attrs.getNamedItem(attribName); in getAttributeValue()
1745 public static void setAttributeValue(Node sNode, String attribName, String val) { in setAttributeValue() argument
1747 Node attr = sNode.getAttributes().getNamedItem(attribName); in setAttributeValue()
1751 attr = sNode.getOwnerDocument().createAttribute(attribName); in setAttributeValue()
/external/deqp/modules/gles3/functional/
Des3fTransformFeedbackTests.cpp350 string attribName = getAttributeName(name, vecIter.getPath()); in genShaderSources() local
352 vtx << "in " << glu::declare(attribType, attribName.c_str()) << ";\n"; in genShaderSources()
393 string attribName = getAttributeName(name, vecIter.getPath()); in genShaderSources() local
398 vtx << "\t" << name << vecIter << " = " << attribName << ";\n"; in genShaderSources()
512 string attribName = getAttributeName(varName.c_str(), fullPath); in computeTransformFeedbackOutputs() local
513 … attrib = &(*std::find_if(attributes.begin(), attributes.end(), AttributeNameEquals(attribName))); in computeTransformFeedbackOutputs()
/external/deqp/modules/glshared/
DglsShaderExecUtil.cpp600 const std::string attribName = "a_" + symbol.name; in execute() local
606 vertexArrays.push_back(glu::va::Float(attribName, vecSize, numValues, 0, (const float*)ptr)); in execute()
608 vertexArrays.push_back(glu::va::Int32(attribName, vecSize, numValues, 0, (const deInt32*)ptr)); in execute()
610 vertexArrays.push_back(glu::va::Uint32(attribName, vecSize, numValues, 0, (const deUint32*)ptr)); in execute()
618 …vertexArrays.push_back(glu::va::Float(attribName, colNdx, numRows, numValues, stride, ((const floa… in execute()
DglsVertexArrayTests.cpp1177 std::stringstream attribName; in render() local
1178 attribName << "a_" << m_arrays[arrayNdx]->getAttribNdx(); in render()
1180 deUint32 loc = m_ctx.getAttribLocation(program, attribName.str().c_str()); in render()
1196 std::stringstream attribName; in render() local
1197 attribName << "a_" << m_arrays[arrayNdx]->getAttribNdx(); in render()
1199 deUint32 loc = m_ctx.getAttribLocation(program, attribName.str().c_str()); in render()
DglsShaderLibraryCase.cpp1234 string attribName = attribPrefix + valueName; in execute() local
1235 int attribLoc = gl.getAttribLocation(vertexProgramID, attribName.c_str()); in execute()
1238 …log << TestLog::Message << "Warning: no location found for attribute '" << attribName << "'" << Te… in execute()
DglsDrawTest.cpp1865 std::stringstream attribName; in render() local
1866 attribName << "a_" << arrayNdx; in render()
1868 deUint32 loc = m_ctx.getAttribLocation(m_programID, attribName.str().c_str()); in render()
2022 std::stringstream attribName; in render() local
2023 attribName << "a_" << arrayNdx; in render()
2025 deUint32 loc = m_ctx.getAttribLocation(m_programID, attribName.str().c_str()); in render()
/external/deqp/external/openglcts/modules/common/
DglcShaderLibraryCase.cpp417 string attribName = attribPrefix + valueName; in execute() local
418 int attribLoc = gl.getAttribLocation(programID, attribName.c_str()); in execute()
421 log << TestLog::Message << "Warning: no location found for attribute '" << attribName << "'" in execute()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
DXLIFF2ICUConverter.java807 private String getAttributeValue(Node sNode, String attribName){ in getAttributeValue() argument
812 Node attr = attributes.getNamedItem(attribName); in getAttributeValue()