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

12

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DSwitch.java5 public interface Switch interface
/external/llvm/lib/Fuzzer/test/
H A DSwitchTest.cpp14 bool Switch(const uint8_t *Data, size_t Size) { function
49 if (Size >= 4 && Switch<int>(Data, Size) &&
50 Size >= 12 && Switch<uint64_t>(Data + 4, Size - 4) &&
/external/clang/test/SemaCXX/
H A Dcxx1y-contextual-conversion-tweaks.cpp28 void Switch() { function in namespace:n3323_example
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
H A DCyclomaticComplexityTest.java207 public static class Switch implements Target { class in class:CyclomaticComplexityTest
222 instrument(Switch.class);
229 instrument(Switch.class);
237 instrument(Switch.class);
246 instrument(Switch.class);
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.h64 // | Switch(arg)[.Case(val, result)].Default(result)
200 friend Caser<T> Switch(const Arg<T>&);
204 // Switch begins a switch expression dispatched according to the
207 SANDBOX_EXPORT Caser<T> Switch(const Arg<T>& arg);
234 friend Caser<U> Switch(const Arg<U>&);
242 // Switch(arg).CASES((3, 5, 7), result)...;
297 SANDBOX_EXPORT Caser<T> Switch(const Arg<T>& arg) { function in namespace:sandbox::bpf_dsl
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp942 BasicBlock *Switch = SI->getParent(); local
956 SplitEdge(Switch, SISucc, this);
964 Switch->getParent(),
975 PN->setIncomingValue(PN->getBasicBlockIndex(Switch),
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp1271 BasicBlock *Switch = SI->getParent(); local
1288 SplitEdge(Switch, SISucc, DT, LI);
1296 Switch->getParent(),
1307 PN->setIncomingValue(PN->getBasicBlockIndex(Switch),
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.h222 /* Switch-case block state. */
292 struct tgsi_switch_record Switch; member in struct:tgsi_exec_machine
313 /** Switch case stack */
/external/v8/src/compiler/
H A Dcode-assembler.cc1009 void CodeAssembler::Switch(Node* index, Label* default_label, function in class:v8::internal::compiler::CodeAssembler
1020 return raw_assembler_->Switch(index, default_label->label_, case_values,
H A Dcommon-operator.cc731 const Operator* CommonOperatorBuilder::Switch(size_t control_output_count) { function in class:v8::internal::compiler::CommonOperatorBuilder
734 "Switch", // name
H A Draw-machine-assembler.cc96 void RawMachineAssembler::Switch(Node* index, RawMachineLabel* default_label, function in class:v8::internal::compiler::RawMachineAssembler
102 Node* switch_node = AddNode(common()->Switch(succ_count), index);
H A Dwasm-compiler.cc1027 Node* WasmGraphBuilder::Switch(unsigned count, Node* key) { function in class:v8::internal::compiler::WasmGraphBuilder
1028 return graph()->NewNode(jsgraph()->common()->Switch(count), key, *control_);
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp325 llvm::SwitchInst *Switch,
353 Switch->addCase(CGF.Builder.getInt32(Fixup.DestinationIndex),
373 llvm::SwitchInst *Switch = local
376 return Switch;
410 llvm::SwitchInst *Switch = TransitionToCleanupSwitch(*this, BranchBB); local
413 Switch->addCase(Builder.getInt32(Fixup.DestinationIndex), Block);
550 llvm::SwitchInst *Switch = cast<llvm::SwitchInst>(Term); local
551 for (unsigned I = 0, E = Switch->getNumSuccessors(); I != E; ++I)
552 if (Switch->getSuccessor(I) == From)
553 Switch
324 ResolveAllBranchFixups(CodeGenFunction &CGF, llvm::SwitchInst *Switch, llvm::BasicBlock *CleanupEntry) argument
823 llvm::SwitchInst *Switch = local
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml154 | Switch Constructor in type:Opcode/t
1072 | Instruction (Br | IndirectBr | Invoke | Resume | Ret | Switch | Unreachable)
H A Dllvm_ocaml.c1772 CAMLprim value llvm_add_case(LLVMValueRef Switch, LLVMValueRef OnVal, argument
1774 LLVMAddCase(Switch, OnVal, Dest);
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm.ml142 | Switch Constructor in type:Opcode/t
H A Dllvm_ocaml.c1414 CAMLprim value llvm_add_case(LLVMValueRef Switch, LLVMValueRef OnVal, argument
1416 LLVMAddCase(Switch, OnVal, Dest);
/external/clang/lib/Sema/
H A DSemaStmt.cpp739 Sema::ActOnFinishSwitchStmt(SourceLocation SwitchLoc, Stmt *Switch, argument
741 SwitchStmt *SS = cast<SwitchStmt>(Switch);
H A DTreeTransform.h1197 Stmt *Switch, Stmt *Body) {
1198 return getSema().ActOnFinishSwitchStmt(SwitchLoc, Switch, Body);
6328 Sema::ConditionKind::Switch);
6333 StmtResult Switch
6336 if (Switch.isInvalid())
6345 return getDerived().RebuildSwitchStmtBody(S->getSwitchLoc(), Switch.get(),
1196 RebuildSwitchStmtBody(SourceLocation SwitchLoc, Stmt *Switch, Stmt *Body) argument
/external/swiftshader/src/Reactor/
H A DNucleus.cpp698 void Nucleus::addSwitchCase(llvm::Value *Switch, int Case, llvm::BasicBlock *Branch) argument
700 static_cast<SwitchInst*>(Switch)->addCase(Nucleus::createConstantInt(Case), Branch);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DCore.cpp1655 LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef Switch) { argument
1656 return wrap(unwrap<SwitchInst>(Switch)->getDefaultDest());
1805 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal, argument
1807 unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
/external/llvm/lib/IR/
H A DCore.cpp2306 LLVMBasicBlockRef LLVMGetSwitchDefaultDest(LLVMValueRef Switch) { argument
2307 return wrap(unwrap<SwitchInst>(Switch)->getDefaultDest());
2502 void LLVMAddCase(LLVMValueRef Switch, LLVMValueRef OnVal, argument
2504 unwrap<SwitchInst>(Switch)->addCase(unwrap<ConstantInt>(OnVal), unwrap(Dest));
/external/guice/extensions/struts2/lib/
H A Dfreemarker-2.3.16.jarMETA-INF/ META-INF/MANIFEST.MF freemarker/ freemarker/cache/ freemarker/core/ freemarker/debug/ freemarker/debug/impl/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...

Completed in 843 milliseconds

12