OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TIntermOperator
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/
intermediate.h
404
class
TIntermOperator
: public TIntermTyped {
415
TIntermOperator
(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {}
416
TIntermOperator
(TOperator o, TType& t) : TIntermTyped(t), op(o) {}
423
class TIntermBinary : public
TIntermOperator
{
425
TIntermBinary(TOperator o) :
TIntermOperator
(o), addIndexClamp(false) {}
454
class TIntermUnary : public
TIntermOperator
{
456
TIntermUnary(TOperator o, TType& t) :
TIntermOperator
(o, t), operand(0), useEmulatedFunction(false) {}
457
TIntermUnary(TOperator o) :
TIntermOperator
(o), operand(0), useEmulatedFunction(false) {}
487
class TIntermAggregate : public
TIntermOperator
{
489
TIntermAggregate() :
TIntermOperator
(EOpNull), userDefined(false), useEmulatedFunction(false) {
[
all
...]
ValidateLimitations.h
46
bool validateOperation(
TIntermOperator
* node, TIntermNode* operand);
ValidateLimitations.cpp
457
bool ValidateLimitations::validateOperation(
TIntermOperator
* node,
Intermediate.cpp
807
bool
TIntermOperator
::isAssignment() const
832
bool
TIntermOperator
::isConstructor() const
[
all
...]
Completed in 468 milliseconds