HomeSort by relevance Sort by last modified time
    Searched full:trueblock (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
IntermTraverse.cpp 197 if (trueBlock)
198 trueBlock->traverse(it);
202 if (trueBlock)
203 trueBlock->traverse(it);
localintermediate.h 38 TIntermTyped* addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, TSourceLoc);
intermediate.h 463 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;
Intermediate.cpp 628 TIntermTyped* TIntermediate::addSelection(TIntermTyped* cond, TIntermTyped* trueBlock, TIntermTyped* falseBlock, TSourceLoc line)
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());
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 720 llvm::BasicBlock *TrueBlock,
733 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
741 return EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, FalseBlock);
754 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
767 return EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
775 return EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, FalseBlock);
779 // want to jump to the TrueBlock.
783 EmitBranchOnBoolExpr(CondBOp->getLHS(), TrueBlock, LHSFalse);
788 EmitBranchOnBoolExpr(CondBOp->getRHS(), TrueBlock, FalseBlock);
798 return EmitBranchOnBoolExpr(CondUOp->getSubExpr(), FalseBlock, TrueBlock);
    [all...]
CodeGenFunction.h     [all...]
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp     [all...]
ASTBuilder.h 322 StatementNode* createIfStatement(ExpressionNode* condition, StatementNode* trueBlock, int start, int end)
324 IfNode* result = new (m_globalData) IfNode(m_globalData, condition, trueBlock);
329 StatementNode* createIfStatement(ExpressionNode* condition, StatementNode* trueBlock, StatementNode* falseBlock, int start, int end)
331 IfNode* result = new (m_globalData) IfElseNode(m_globalData, condition, trueBlock, falseBlock);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 387 CFGBlock *TrueBlock,
    [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp 225 int handleJumpintoIf(BlockT *HeadBlock, BlockT *TrueBlock,
227 int handleJumpintoIfImp(BlockT *HeadBlock, BlockT *TrueBlock,
229 int improveSimpleJumpintoIf(BlockT *HeadBlock, BlockT *TrueBlock,
231 void showImproveSimpleJumpintoIf(BlockT *HeadBlock, BlockT *TrueBlock,
242 BlockT *TrueBlock, BlockT *FalseBlock,
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]

Completed in 411 milliseconds