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/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/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp1147 BasicBlock *Switch = SI->getParent(); local
1164 SplitEdge(Switch, SISucc, this);
1172 Switch->getParent(),
1183 PN->setIncomingValue(PN->getBasicBlockIndex(Switch),
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml143 | Switch Constructor in type:Opcode/t
H A Dllvm_ocaml.c1413 CAMLprim value llvm_add_case(LLVMValueRef Switch, LLVMValueRef OnVal, argument
1415 LLVMAddCase(Switch, OnVal, Dest);
/external/clang/lib/Sema/
H A DSemaStmt.cpp565 Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, argument
567 SwitchStmt *SS = cast<SwitchStmt>(Switch);
H A DTreeTransform.h1086 Stmt *Switch, Stmt *Body) {
1087 return getSema().ActOnFinishSwitchStmt(SwitchLoc, Switch, Body);
5300 StmtResult Switch local
5303 if (Switch.isInvalid())
5312 return getDerived().RebuildSwitchStmtBody(S->getSwitchLoc(), Switch.get(),
1085 RebuildSwitchStmtBody(SourceLocation SwitchLoc, Stmt *Switch, Stmt *Body) argument
/external/llvm/lib/VMCore/
H A DCore.cpp1666 LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef Switch) { argument
1667 return wrap(unwrap<SwitchInst>(Switch)->getDefaultDest());
1816 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal, argument
1818 unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));

Completed in 460 milliseconds