OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getIConst
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ConstantUnion.h
20
int
getIConst
() { return iConst; }
23
int
getIConst
() const { return iConst; }
Intermediate.cpp
[
all
...]
OutputHLSL.cpp
756
int i = element->getUnionArrayPointer()[0].
getIConst
();
[
all
...]
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
...]
OutputGLSL.cpp
184
case EbtInt: out << pConstUnion->
getIConst
(); break;
262
switch (data.
getIConst
())
intermOut.cpp
331
out << node->getUnionArrayPointer()[i].
getIConst
();
ParseHelper.cpp
310
int value = (*p)->getAsTyped()->getAsConstantUnion()->getUnionArrayPointer()->
getIConst
();
694
size = constant->getUnionArrayPointer()->
getIConst
();
833
int fragDataValue = static_cast<TVariable*>(fragData)->getConstPointer()[0].
getIConst
();
[
all
...]
Completed in 209 milliseconds