Searched refs:trueBlock (Results 1 – 7 of 7) sorted by relevance
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
D | IntermTraverse.cpp | 197 if (trueBlock) in traverse() 198 trueBlock->traverse(it); in traverse() 202 if (trueBlock) in traverse() 203 trueBlock->traverse(it); in traverse()
|
D | intermediate.h | 463 …TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) … in TIntermSelection() 465 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB) {} in TIntermSelection() 471 TIntermNode* getTrueBlock() const { return trueBlock; } in getTrueBlock() 477 TIntermNode* trueBlock; variable
|
D | Intermediate.cpp | 628 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped… in addSelection() argument 633 TIntermTyped* child = addConversion(EOpSequence, trueBlock->getType(), falseBlock); in addSelection() 637 child = addConversion(EOpSequence, falseBlock->getType(), trueBlock); in addSelection() 639 trueBlock = child; in addSelection() 648 …if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnio… in addSelection() 650 return trueBlock; in addSelection() 658 … TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType()); in addSelection()
|
D | localintermediate.h | 38 …TIntermTyped* addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, …
|
/external/mesa3d/src/pixelflinger2/ |
D | llvm_helper.h | 154 void ifCond(Value * cmp, const char * trueBlock = "ifT", const char * falseBlock = "ifF") { 156 … BasicBlock * ifthen = BasicBlock::Create(m_builder.getContext(), name(trueBlock), function, NULL);
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | JSParser.cpp | 1477 TreeStatement trueBlock = parseStatement(context, unused); in parseIfStatement() local 1478 failIfFalse(trueBlock); in parseIfStatement() 1481 return context.createIfStatement(condition, trueBlock, start, end); in parseIfStatement() 1517 TreeStatement trueBlock = statementStack.last(); in parseIfStatement() local 1521 … statementStack.append(context.createIfStatement(condition, trueBlock, pos.first, pos.second)); in parseIfStatement() 1529 TreeStatement trueBlock = statementStack.last(); in parseIfStatement() local 1533 …statementStack.append(context.createIfStatement(condition, trueBlock, falseBlock, pos.first, pos.s… in parseIfStatement() 1536 return context.createIfStatement(condition, trueBlock, statementStack.last(), start, end); in parseIfStatement()
|
D | ASTBuilder.h | 322 …StatementNode* createIfStatement(ExpressionNode* condition, StatementNode* trueBlock, int start, i… in createIfStatement() argument 324 IfNode* result = new (m_globalData) IfNode(m_globalData, condition, trueBlock); in createIfStatement() 329 …StatementNode* createIfStatement(ExpressionNode* condition, StatementNode* trueBlock, StatementNod… in createIfStatement() argument 331 … IfNode* result = new (m_globalData) IfElseNode(m_globalData, condition, trueBlock, falseBlock); in createIfStatement()
|