Home
last modified time | relevance | path

Searched refs:elemType (Results 1 – 15 of 15) sorted by relevance

/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
DASTParser.stg75 <listLabelElem(elem=label,elemType=labelType,...)>
81 <listLabelElem(elem=label,elemType=labelType,...)>
87 <listLabelElem(elem=label,elemType=labelType,...)>
143 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
149 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
155 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
DAST.stg130 <listLabelElem(elem=label,elemType=labelType,...)>
142 <listLabelElem(elem=label,elemType=labelType,...)>
154 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
166 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
DCSharp2.stg916 <listLabelElem(elem=label,elemType=labelType,...)>
919 listLabelElem(label,elem,elemType) ::= <<
920 if (list_<label>==null) list_<label>=new List\<<elemType; null={<labelType>}>\>();
992 <listLabelElem(elem=label,elemType=labelType,...)>
1019 <listLabelElem(elem=label,elemType=labelType,...)>
1032 <listLabelElem(elem=label,elemType=labelType,...)>
1051 <listLabelElem(elem=label,elemType={<ASTLabelType>},...)>
1077 <listLabelElem(elem=label,elemType=labelType,...)>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
DASTParser.stg80 <listLabelElem(elem=label,elemType=labelType,...)>
86 <listLabelElem(elem=label,elemType=labelType,...)>
92 <listLabelElem(elem=label,elemType=labelType,...)>
150 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
156 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
162 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
DAST.stg128 <listLabelElem(elem=label,elemType=labelType,...)>
140 <listLabelElem(elem=label,elemType=labelType,...)>
152 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
164 <listLabelElem(elem={<label>.Tree},elemType=ASTLabelType,...)>
DCSharp3.stg892 <listLabelElem(elem=label,elemType=labelType,...)>
899 listLabelElem(label,elem,elemType) ::= <<
900 if (list_<label>==null) list_<label>=new List\<<elemType; null={<labelType>}>\>();
972 <listLabelElem(elem=label,elemType=labelType,...)>
999 <listLabelElem(elem=label,elemType=labelType,...)>
1012 <listLabelElem(elem=label,elemType=labelType,...)>
1031 <listLabelElem(elem=label,elemType={<ASTLabelType>},...)>
1057 <listLabelElem(elem=label,elemType=labelType,...)>
DST.stg60 <listLabelElem(elem={<label>.Template},elemType="StringTemplate",...)>
/external/clang/lib/StaticAnalyzer/Checkers/
DArrayBoundCheckerV2.cpp277 QualType elemType = elemReg->getElementType(); in computeOffset() local
280 if (elemType->isIncompleteType()) in computeOffset()
288 astContext.getTypeSizeInChars(elemType), in computeOffset()
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp519 const VarType& elemType = type.getElementType(); in computeReferenceLayout() local
521 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout()
524 const glu::DataType elemBasicType = elemType.getBasicType(); in computeReferenceLayout()
542 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout()
545 const glu::DataType elemBasicType = elemType.getBasicType(); in computeReferenceLayout()
569 DE_ASSERT(elemType.isStructType() || elemType.isArrayType()); in computeReferenceLayout()
604 const VarType& elemType = varType.getElementType(); in computeReferenceLayout() local
606 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout()
609 const glu::DataType elemBasicType = elemType.getBasicType(); in computeReferenceLayout()
628 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout()
[all …]
/external/deqp/modules/glshared/
DglsLifetimeTests.cpp917 Type& elemType = m_attacher.getElementType(); in testDeletedNames() local
924 Name element(elemType); in testDeletedNames()
941 if (elemType.nameLingers()) in testDeletedNames()
942 errors.check(elemType.exists(elementId), in testDeletedNames()
945 errors.check(!elemType.exists(elementId), in testDeletedNames()
951 errors.check(!elemType.exists(elementId), in testDeletedNames()
DglsUniformBlockCase.cpp512 const VarType& elemType = type.getElementType(); in computeStd140Layout() local
514 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeStd140Layout()
517 glu::DataType elemBasicType = elemType.getBasicType(); in computeStd140Layout()
533 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeStd140Layout()
536 glu::DataType elemBasicType = elemType.getBasicType(); in computeStd140Layout()
560 DE_ASSERT(elemType.isStructType() || elemType.isArrayType()); in computeStd140Layout()
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp1137 QualType elemType = ER->getElementType(); in getAsArrayOffset() local
1140 if (elemType->isIncompleteType()) { in getAsArrayOffset()
1145 CharUnits size = C.getTypeSizeInChars(elemType); in getAsArrayOffset()
/external/mesa3d/src/mesa/vbo/
Dvbo_exec_array.c286 check_draw_elements_data(struct gl_context *ctx, GLsizei count, GLenum elemType, in check_draw_elements_data() argument
305 switch (elemType) { in check_draw_elements_data()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp3272 llvm::Type *elemType = vecTy->getElementType(); in VisitAbstractConditionalOperator() local
3277 llvm::VectorType::get(elemType, in VisitAbstractConditionalOperator()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...