HomeSort by relevance Sort by last modified time
    Searched refs:getAsConstantUnion (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.cpp 310 int value = (*p)->getAsTyped()->getAsConstantUnion()->getUnionArrayPointer()->getIConst();
688 TIntermConstantUnion* constant = expr->getAsConstantUnion();
1026 if (initializer->getAsConstantUnion()) {
1030 *unionArray = (initializer->getAsConstantUnion()->getUnionArrayPointer())[0];
1032 variable->shareConstPointer(initializer->getAsConstantUnion()->getUnionArrayPointer());
    [all...]
Intermediate.cpp 215 TIntermConstantUnion *leftTempConstant = left->getAsConstantUnion();
216 TIntermConstantUnion *rightTempConstant = right->getAsConstantUnion();
343 if (child->getAsConstantUnion())
344 childTempConstant = child->getAsConstantUnion();
476 if (node->getAsConstantUnion()) {
478 return (promoteConstantUnion(promoteTo, node->getAsConstantUnion()));
594 if (cond->getAsTyped() && cond->getAsTyped()->getAsConstantUnion()) {
595 if (cond->getAsTyped()->getAsConstantUnion()->getUnionArrayPointer()->getBConst())
648 if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnion())
    [all...]
intermediate.h 214 virtual TIntermConstantUnion* getAsConstantUnion() { return 0; }
349 virtual TIntermConstantUnion* getAsConstantUnion() { return this; }
parseConst.cpp 113 bool flag = node->getSequence().size() == 1 && node->getSequence()[0]->getAsTyped()->getAsConstantUnion();
glslang.y 233 $$ = context->addConstArrayNode($3->getAsConstantUnion()->getUnionArrayPointer()->getIConst(), $1, $2.line);
237 fields.offsets[0] = $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst(); // need to do it this way because v.xy sends fields integer array
240 $$ = context->addConstMatrixNode($3->getAsConstantUnion()->getUnionArrayPointer()->getIConst(), $1, $2.line);
244 if (($1->isVector() || $1->isMatrix()) && $1->getType().getNominalSize() <= $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst() && !$1->isArray() ) {
245 context->error($2.line, "", "[", "field selection out of range '%d'", $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst());
250 if ($1->getType().getMaxArraySize() <= $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst()) {
251 if (context->arraySetMaxSize($1->getAsSymbolNode(), $1->getTypePointer(), $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst(), true, $2.line))
257 } else if ( $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst() >= $1->getType().getArraySize()) {
258 context->error($2.line, "", "[", "array index out of range '%d'", $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst());
    [all...]
OutputHLSL.cpp 752 TIntermConstantUnion *element = (*sit)->getAsConstantUnion();
    [all...]
ValidateLimitations.cpp 431 return node->getAsConstantUnion() != NULL;
OutputGLSL.cpp 257 TIntermConstantUnion* element = (*sit)->getAsConstantUnion();

Completed in 37 milliseconds