/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | glslang.y | 382 TType type(EbtVoid, EbpUndefined); 389 TType type(EbtVoid, EbpUndefined); 661 if ($2.param.type->getBasicType() != EbtVoid) 671 if ($3.param.type->getBasicType() == EbtVoid) { 714 if ($1.type == EbtVoid) { 900 $$.setBasic(EbtVoid, EvqAttribute, @1); 907 $$.setBasic(EbtVoid, EvqVaryingOut, @1); 909 $$.setBasic(EbtVoid, EvqVaryingIn, @1); 916 $$.setBasic(EbtVoid, EvqInvariantVaryingOut, @1); 918 $$.setBasic(EbtVoid, EvqInvariantVaryingIn, @1); [all …]
|
D | glslang_tab.cpp | 2617 TType type(EbtVoid, EbpUndefined); in yyparse() 2629 TType type(EbtVoid, EbpUndefined); in yyparse() 3169 if ((yyvsp[0].interm).param.type->getBasicType() != EbtVoid) in yyparse() 3184 if ((yyvsp[0].interm).param.type->getBasicType() == EbtVoid) { in yyparse() 3230 if ((yyvsp[-1].interm.type).type == EbtVoid) { in yyparse() 3523 (yyval.interm.type).setBasic(EbtVoid, EvqAttribute, (yylsp[0])); in yyparse() 3535 (yyval.interm.type).setBasic(EbtVoid, EvqVaryingOut, (yylsp[0])); in yyparse() 3537 (yyval.interm.type).setBasic(EbtVoid, EvqVaryingIn, (yylsp[0])); in yyparse() 3549 (yyval.interm.type).setBasic(EbtVoid, EvqInvariantVaryingOut, (yylsp[-1])); in yyparse() 3551 (yyval.interm.type).setBasic(EbtVoid, EvqInvariantVaryingIn, (yylsp[-1])); in yyparse() [all …]
|
D | BaseTypes.h | 48 EbtVoid, enumerator 110 case EbtVoid: return "void"; in getBasicString()
|
D | ParseHelper.cpp | 378 else if(node->getBasicType() == EbtVoid) in lValueErrorCheck() 591 if (typed->getBasicType() == EbtVoid) { in constructorErrorCheck() 605 if(type == EbtVoid) { in voidErrorCheck() 1884 if(mCurrentFunctionType->getBasicType() != EbtVoid && !mFunctionReturnsValue) in addFunctionDefinition() 1945 if(function->getReturnType().getBasicType() != EbtVoid) in parseFunctionPrototype() 2923 type.setBasic(EbtVoid, mergedQualifier, storageLoc); in joinInterpolationQualifiers() 3494 if(mCurrentFunctionType->getBasicType() != EbtVoid) in addBranch() 3511 if(mCurrentFunctionType->getBasicType() == EbtVoid) in addBranch() 3564 TType type(EbtVoid, EbpUndefined); // use this to get the type back in addFunctionCallOrMethod()
|
D | intermediate.h | 613 …TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) … in TIntermSelection() 622 bool usesTernaryOperator() const { return getBasicType() != EbtVoid; } in usesTernaryOperator()
|
D | ConstantUnion.h | 30 type = EbtVoid; in POOL_ALLOCATOR_NEW_DELETE()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
D | RunAtTheEndOfShader.cpp | 75 StaticType::GetBasic<EbtVoid, EbpUndefined>(), false); in WrapMainAndAppend() 84 StaticType::GetBasic<EbtVoid, EbpUndefined>(), false); in WrapMainAndAppend()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | StaticType.h | 252 return GetBasic<EbtVoid, EbpUndefined>(); in GetForVecMatHelper() 276 return GetBasic<EbtVoid, EbpUndefined>(); 291 return GetBasic<EbtVoid, EbpUndefined>(); in GetForVec()
|
D | Types.cpp | 27 case EbtVoid: in getBasicString() 164 TType::TType() : TType(EbtVoid, 0, 0) {} in TType()
|
D | TranslatorMetal.cpp | 250 StaticType::GetBasic<EbtVoid, EbpUndefined>(), false); in insertSampleMaskWritingLogic()
|
D | ParseContext.cpp | 660 if (node->getBasicType() == EbtVoid) in checkCanBeLValue() 800 if (argTyped->getBasicType() == EbtVoid) in checkConstructorArguments() 935 if (type == EbtVoid) in checkIsNonVoid() 3904 if (mCurrentFunctionType->getBasicType() != EbtVoid && !mFunctionReturnsValue) in addFunctionDefinition() 4043 if (function->getReturnType().getBasicType() != EbtVoid) in parseFunctionDeclarator() 4142 if (type->getBasicType() == EbtVoid) in parseParameterDeclarator() 5908 child->getBasicType() == EbtVoid || IsOpaqueType(child->getBasicType())) in createUnaryMath() 6420 (left->isArray() || left->getBasicType() == EbtVoid || in addComma() 6422 right->getBasicType() == EbtVoid || right->getType().isStructureContainingArrays())) in addComma() 6454 if (mCurrentFunctionType->getBasicType() != EbtVoid) in addBranch() [all …]
|
D | glslang.y | 656 if ($2.type->getBasicType() != EbtVoid) 670 if ($3.type->getBasicType() == EbtVoid) 1011 $$.initialize(EbtVoid, @1);
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/d3d/ |
D | AddDefaultReturnStatements.cpp | 26 if (returnType->getBasicType() == EbtVoid) in NeedsReturnStatement()
|
D | RewriteElseBlocks.cpp | 87 if (mFunctionType && mFunctionType->getBasicType() != EbtVoid) in rewriteIfElse()
|
D | ArrayReturnValueToOutParameter.cpp | 124 StaticType::GetBasic<EbtVoid, EbpUndefined>(), false); in visitFunctionPrototype()
|
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | Type_test.cpp | 49 for (int i = static_cast<int>(EbtVoid); i < static_cast<int>(EbtLast); ++i) in TEST()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
D | WrapMain.cpp | 56 ASSERT(func.getReturnType().getBasicType() == TBasicType::EbtVoid); in visitMain()
|
D | TranslatorMetalUtils.cpp | 27 case EbtVoid: in getBasicMetalString()
|
/third_party/glslang/glslang/Include/ |
D | Types.h | 132 type = EbtVoid; in clear() 1431 TTypeParameters() : basicType(EbtVoid), arraySizes(nullptr) {} in POOL_ALLOCATOR_NEW_DELETE() 1472 basicType = EbtVoid; in initType() 1539 …explicit TType(TBasicType t = EbtVoid, TStorageQualifier q = EvqTemporary, int vs = 1, int mc = 0,… in POOL_ALLOCATOR_NEW_DELETE() 1767 virtual void hideMember() { basicType = EbtVoid; vectorSize = 1u; } in hideMember() 1768 virtual bool hiddenMember() const { return basicType == EbtVoid; } in hiddenMember() 1932 case EbtVoid: in containsNonOpaque() 2082 case EbtVoid: return "void"; in getBasicString()
|
D | BaseTypes.h | 48 EbtVoid, enumerator
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/ |
D | DeferGlobalInitializers.cpp | 114 StaticType::GetBasic<EbtVoid, EbpUndefined>(), false); in InsertInitCallToMain()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/ |
D | ReplaceForShaderFramebufferFetch.cpp | 233 return EbtVoid; in GetBasicTypeForSubpassInput() 353 if (subpassInputType == EbtVoid) in declareSubpassInputVariableImpl()
|
/third_party/glslang/glslang/HLSL/ |
D | hlslParseHelper.cpp | 298 storeOp->setType(TType(EbtVoid)); in handleLvalue() 700 variable = new TVariable(string, TType(EbtVoid)); in handleVariable() 1675 currentFunctionType = new TType(EbtVoid); in handleFunctionDefinition() 1740 intermediate.setAggregateOperator(paramNodes, EOpParameters, TType(EbtVoid), loc); in handleFunctionDefinition() 2155 TType voidType(EbtVoid); in transformEntryPoint() 2303 if (function.getType().getBasicType() != EbtVoid && ! functionReturnsValue) in handleFunctionBody() 2394 if (function.getType().getBasicType() == EbtVoid) { in remapEntryPointIO() 2438 if (function.getType().getBasicType() != EbtVoid) in remapNonEntryPointIO() 2450 return intermediate.addUnaryNode(EOpDeclare, var, loc, TType(EbtVoid)); in handleDeclare() 2459 if (currentFunctionType->getBasicType() == EbtVoid) { in handleReturnValue() [all …]
|
/third_party/glslang/glslang/MachineIndependent/ |
D | glslang.y | 555 TFunction *function = new TFunction(&symbol->getName(), TType(EbtVoid)); 564 $$.function = new TFunction(empty, TType(EbtVoid), EOpNull); 998 if ($2.param.type->getBasicType() != EbtVoid) 1013 if ($3.param.type->getBasicType() == EbtVoid) { 1060 if ($1.basicType == EbtVoid) { 1370 if ($$.basicType == EbtVoid) 1775 $$.basicType = EbtVoid; 3678 $$.type = new TType(EbtVoid); 3685 $$.type = new TType(EbtVoid); 4048 if (parseContext.currentFunctionType->getBasicType() != EbtVoid) [all …]
|
D | SymbolTable.cpp | 147 if ((*structure)[i].type->getBasicType() == EbtVoid) in buildMangledName()
|