HomeSort by relevance Sort by last modified time
    Searched refs:elemType (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ASTParser.stg 75 <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,...)>
AST.stg 130 <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,...)>
CSharp2.stg 916 <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>},...)>
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ASTParser.stg 80 <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,...)>
AST.stg 128 <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,...)>
ST.stg 60 <listLabelElem(elem={<label>.Template},elemType="StringTemplate",...)>
CSharp3.stg 892 <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>},...)>
    [all...]
  /frameworks/rs/rsov/compiler/
Wrapper_test.cpp 53 auto elemType = m.getIntType(32);
54 VariableInst *buffer = AddBuffer(elemType, 2, b, &m);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
decompose.go 29 var elemType Type
31 elemType = f.Config.fe.TypeInt32()
33 elemType = f.Config.fe.TypeUInt32()
38 hi := v.Block.NewValue1(v.Line, OpInt64Hi, elemType, v)
45 var elemType Type
47 elemType = f.Config.fe.TypeFloat64()
49 elemType = f.Config.fe.TypeFloat32()
54 r := v.Block.NewValue1(v.Line, OpComplexReal, elemType, v)
55 i := v.Block.NewValue1(v.Line, OpComplexImag, elemType, v)
267 e := v.Block.NewValue1I(v.Line, OpArraySelect, t.ElemType(), 0, v
    [all...]
passbm_test.go 63 elemType := &TypeImpl{Size_: 8, Name: "testtype"}
64 ptrType := &TypeImpl{Size_: 8, Ptr: true, Name: "testptr", Elem_: elemType} // dummy for testing
deadstore_test.go 11 elemType := &TypeImpl{Size_: 1, Name: "testtype"}
12 ptrType := &TypeImpl{Size_: 8, Ptr: true, Name: "testptr", Elem_: elemType} // dummy for testing
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
decompose.go 29 var elemType Type
31 elemType = f.Config.fe.TypeInt32()
33 elemType = f.Config.fe.TypeUInt32()
38 hi := v.Block.NewValue1(v.Line, OpInt64Hi, elemType, v)
45 var elemType Type
47 elemType = f.Config.fe.TypeFloat64()
49 elemType = f.Config.fe.TypeFloat32()
54 r := v.Block.NewValue1(v.Line, OpComplexReal, elemType, v)
55 i := v.Block.NewValue1(v.Line, OpComplexImag, elemType, v)
267 e := v.Block.NewValue1I(v.Line, OpArraySelect, t.ElemType(), 0, v
    [all...]
passbm_test.go 63 elemType := &TypeImpl{Size_: 8, Name: "testtype"}
64 ptrType := &TypeImpl{Size_: 8, Ptr: true, Name: "testptr", Elem_: elemType} // dummy for testing
deadstore_test.go 11 elemType := &TypeImpl{Size_: 1, Name: "testtype"}
12 ptrType := &TypeImpl{Size_: 8, Ptr: true, Name: "testptr", Elem_: elemType} // dummy for testing
  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundCheckerV2.cpp 278 QualType elemType = elemReg->getElementType();
281 if (elemType->isIncompleteType())
289 astContext.getTypeSizeInChars(elemType),
  /libcore/ojluni/src/main/java/java/lang/invoke/
MethodType.java 493 Class<?> elemType = arrayType.getComponentType();
494 assert(elemType != null);
496 if (ptypes[i] != elemType) {
498 Arrays.fill(fixedPtypes, i, ptypes.length, elemType);
531 Class<?> elemType = arrayType.getComponentType();
532 assert(elemType != null);
533 res = methodType(rtype, Collections.nCopies(arrayLength, elemType));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineSpecConstantTests.cpp     [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DeprecatedAPIChecker.java 452 String elemType = null;
455 elemType = tName.substring(dimension + 1, tName.length() - 1);
460 elemType = PRIMITIVES[i];
466 if (elemType == null) {
470 s.append(elemType);
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 482 const VarType& elemType = type.getElementType();
484 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType()))
487 const glu::DataType elemBasicType = elemType.getBasicType();
505 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType()))
508 const glu::DataType elemBasicType = elemType.getBasicType();
532 DE_ASSERT(elemType.isStructType() || elemType.isArrayType());
568 const VarType& elemType = varType.getElementType()
    [all...]
  /external/skia/experimental/svg/model/
SkSVGDOM.cpp 378 const SkDOM::Type elemType = dom.getType(xmlNode);
380 if (elemType == SkDOM::kText_Type) {
386 SkASSERT(elemType == SkDOM::kElement_Type);
  /build/blueprint/
unpack.go 164 elemType := field.Type.Elem()
165 if elemType.Kind() != reflect.String {
173 elemType := fieldValue.Type()
174 if elemType.Kind() != reflect.Ptr {
  /external/deqp/modules/glshared/
glsLifetimeTests.cpp 1079 Type& elemType = m_attacher.getElementType();
1086 Name element(elemType);
1103 if (elemType.nameLingers())
1104 errors.check(elemType.exists(elementId),
1107 errors.check(!elemType.exists(elementId),
1113 errors.check(!elemType.exists(elementId),
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutCase.cpp 519 const VarType& elemType = type.getElementType();
521 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType()))
524 const glu::DataType elemBasicType = elemType.getBasicType();
542 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType()))
545 const glu::DataType elemBasicType = elemType.getBasicType();
569 DE_ASSERT(elemType.isStructType() || elemType.isArrayType());
604 const VarType& elemType = varType.getElementType()
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
mbarrier.go 375 func reflect_typedslicecopy(elemType *_type, dst, src slice) int {
376 if elemType.kind&kindNoPointers != 0 {
385 size := uintptr(n) * elemType.size
387 callerpc := getcallerpc(unsafe.Pointer(&elemType))
400 return typedslicecopy(elemType, dst, src)
  /prebuilts/go/linux-x86/src/runtime/
mbarrier.go 375 func reflect_typedslicecopy(elemType *_type, dst, src slice) int {
376 if elemType.kind&kindNoPointers != 0 {
385 size := uintptr(n) * elemType.size
387 callerpc := getcallerpc(unsafe.Pointer(&elemType))
400 return typedslicecopy(elemType, dst, src)

Completed in 988 milliseconds

1 2 3