Searched defs:trueBlock (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DIntermediate.cpp628 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, TSourceLoc line) argument
633 TIntermTyped* child = addConversion(EOpSequence, trueBlock->getType(), falseBlock);
637 child = addConversion(EOpSequence, falseBlock->getType(), trueBlock);
639 trueBlock = child;
648 if (cond->getAsConstantUnion() && trueBlock->getAsConstantUnion() && falseBlock->getAsConstantUnion()) {
650 return trueBlock;
658 TIntermSelection* node = new TIntermSelection(cond, trueBlock, falseBlock, trueBlock->getType());
H A Dintermediate.h463 TIntermTyped(TType(EbtVoid, EbpUndefined)), condition(cond), trueBlock(trueB), falseBlock(falseB) {}
465 TIntermTyped(type), condition(cond), trueBlock(trueB), falseBlock(falseB) {}
471 TIntermNode* getTrueBlock() const { return trueBlock; }
477 TIntermNode* trueBlock; member in class:TIntermSelection
/external/webkit/Source/JavaScriptCore/parser/
H A DASTBuilder.h322 StatementNode* createIfStatement(ExpressionNode* condition, StatementNode* trueBlock, int start, int end) argument
324 IfNode* result = new (m_globalData) IfNode(m_globalData, condition, trueBlock);
329 StatementNode* createIfStatement(ExpressionNode* condition, StatementNode* trueBlock, StatementNode* falseBlock, int start, int end) argument
331 IfNode* result = new (m_globalData) IfElseNode(m_globalData, condition, trueBlock, falseBlock);
H A DJSParser.cpp1477 TreeStatement trueBlock = parseStatement(context, unused); local
1478 failIfFalse(trueBlock);
1481 return context.createIfStatement(condition, trueBlock, start, end);
1517 TreeStatement trueBlock = statementStack.last(); local
1521 statementStack.append(context.createIfStatement(condition, trueBlock, pos.first, pos.second));
1529 TreeStatement trueBlock = statementStack.last(); local
1533 statementStack.append(context.createIfStatement(condition, trueBlock, falseBlock, pos.first, pos.second));
1536 return context.createIfStatement(condition, trueBlock, statementStack.last(), start, end);

Completed in 1759 milliseconds