Searched defs:Switch (Results 1 - 9 of 9) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DSwitch.java5 public interface Switch interface
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DLabelScope.h41 enum Type { Loop, Switch, NamedLabel }; enumerator in enum:JSC::LabelScope::Type
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp1137 BasicBlock *Switch = SI->getParent(); local
1154 SplitEdge(Switch, SISucc, this);
1162 Switch->getParent(),
1173 PN->setIncomingValue(PN->getBasicBlockIndex(Switch),
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp273 llvm::SwitchInst *Switch,
300 Switch->addCase(CGF.Builder.getInt32(Fixup.DestinationIndex),
320 llvm::SwitchInst *Switch = local
323 return Switch;
357 llvm::SwitchInst *Switch = TransitionToCleanupSwitch(*this, BranchBB); local
360 Switch->addCase(Builder.getInt32(Fixup.DestinationIndex), Block);
476 llvm::SwitchInst *Switch = cast<llvm::SwitchInst>(Term); local
477 for (unsigned I = 0, E = Switch->getNumSuccessors(); I != E; ++I)
478 if (Switch->getSuccessor(I) == From)
479 Switch
272 ResolveAllBranchFixups(CodeGenFunction &CGF, llvm::SwitchInst *Switch, llvm::BasicBlock *CleanupEntry) argument
729 llvm::SwitchInst *Switch = local
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml143 | Switch Constructor in type:Opcode/t
H A Dllvm_ocaml.c1416 CAMLprim value llvm_add_case(LLVMValueRef Switch, LLVMValueRef OnVal, argument
1418 LLVMAddCase(Switch, OnVal, Dest);
/external/clang/lib/Sema/
H A DSemaStmt.cpp619 Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, argument
621 SwitchStmt *SS = cast<SwitchStmt>(Switch);
H A DTreeTransform.h1087 Stmt *Switch, Stmt *Body) {
1088 return getSema().ActOnFinishSwitchStmt(SwitchLoc, Switch, Body);
5284 StmtResult Switch local
5287 if (Switch.isInvalid())
5296 return getDerived().RebuildSwitchStmtBody(S->getSwitchLoc(), Switch.get(),
1086 RebuildSwitchStmtBody(SourceLocation SwitchLoc, Stmt *Switch, Stmt *Body) argument
/external/llvm/lib/VMCore/
H A DCore.cpp1685 LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef Switch) { argument
1686 return wrap(unwrap<SwitchInst>(Switch)->getDefaultDest());
1835 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal, argument
1837 unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));

Completed in 257 milliseconds