HomeSort by relevance Sort by last modified time
    Searched defs:Switch (Results 1 - 25 of 58) sorted by null

1 2 3

  /art/test/003-omnibus-opcodes/src/
Switch.java 1 public class Switch {
3 * Test switch() blocks
6 System.out.println("Switch.testSwitch");
10 switch (a) {
19 switch (a) {
27 switch (a) {
32 switch (a) {
40 switch (a) {
47 switch (a) {
54 switch (a)
    [all...]
Main.java 45 Switch.run();
  /external/llvm/lib/Fuzzer/test/
SwitchTest.cpp 4 // Simple test for a fuzzer. The fuzzer must find the interesting switch value.
14 bool Switch(const uint8_t *Data, size_t Size) {
18 switch (X) {
35 switch(X) {
49 if (Size >= 4 && Switch<int>(Data, Size) &&
50 Size >= 12 && Switch<uint64_t>(Data + 4, Size - 4) &&
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Switch.java 5 public interface Switch
  /external/clang/test/SemaCXX/
cxx1y-contextual-conversion-tweaks.cpp 28 void Switch() {
31 switch (i) {} // @31
32 switch (i + 0) {}
33 switch (+i) {}
42 //expected-error@31 {{multiple conversions from switch condition type 'zero_init<int>' to an integral or enumeration type}}
80 switch (a0) {}
81 switch (a1) {} // @81 -- fails for different reasons
82 switch (a2) {} // @82
83 switch (a3) {} // @83
84 switch (a4) {} // @8
    [all...]
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl.h 64 // | 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);
215 // Case adds a single-value "case" clause to the switch.
218 // Cases adds a multiple-value "case" clause to the switch.
224 // Terminate the switch with a "default" clause.
234 friend Caser<U> Switch(const Arg<U>&);
242 // Switch(arg).CASES((3, 5, 7), result)...
    [all...]
  /prebuilts/go/darwin-x86/src/net/internal/socktest/
switch.go 13 // A Switch represents a callpath point switch for socket system
15 type Switch struct {
26 func (sw *Switch) init() {
33 func (sw *Switch) Stats() []Stat {
45 func (sw *Switch) Sockets() Sockets {
164 func (sw *Switch) Set(t FilterType, f Filter) {
  /prebuilts/go/linux-x86/src/net/internal/socktest/
switch.go 13 // A Switch represents a callpath point switch for socket system
15 type Switch struct {
26 func (sw *Switch) init() {
33 func (sw *Switch) Stats() []Stat {
45 func (sw *Switch) Sockets() Sockets {
164 func (sw *Switch) Set(t FilterType, f Filter) {
  /cts/tests/tests/widget/src/android/widget/cts/
SwitchTest.java 39 import android.widget.Switch;
50 * Test {@link Switch}.
57 private Switch mSwitch;
69 private Switch findSwitchById(int id) {
70 return (Switch) mActivity.findViewById(id);
76 new Switch(mActivity);
78 new Switch(mActivity, null);
80 new Switch(mActivity, null, android.R.attr.switchStyle);
82 new Switch(mActivity, null, 0, android.R.style.Widget_Material_CompoundButton_Switch);
84 new Switch(mActivity, null, 0, android.R.style.Widget_Material_Light_CompoundButton_Switch)
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
CyclomaticComplexityTest.java 207 public static class Switch implements Target {
209 switch (arg) {
222 instrument(Switch.class);
229 instrument(Switch.class);
237 instrument(Switch.class);
246 instrument(Switch.class);
  /external/v8/src/compiler/
raw-machine-assembler.cc 96 void RawMachineAssembler::Switch(Node* index, RawMachineLabel* default_label,
102 Node* switch_node = AddNode(common()->Switch(succ_count), index);
code-assembler.cc     [all...]
common-operator.cc 20 switch (hint) {
47 switch (kind) {
179 switch (observability) {
221 switch (type) {
625 switch (control_input_count) {
642 switch (value_input_count) {
660 switch (hint) {
692 switch (reason) {
712 switch (reason) {
731 const Operator* CommonOperatorBuilder::Switch(size_t control_output_count)
    [all...]
wasm-compiler.cc 200 switch (type) {
458 switch (opcode) {
727 switch (opcode) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopUnswitch.cpp 375 // If this isn't a switch on Cond, we can't handle it.
378 // Check to see if a successor of the switch is guaranteed to go to the
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 87 switch (K) {
323 /// given switch instruction.
325 llvm::SwitchInst *Switch,
349 // Don't add this case to the switch statement twice.
353 Switch->addCase(CGF.Builder.getInt32(Fixup.DestinationIndex),
361 /// be a cleanup switch.
364 // If it's a branch, turn it into a switch whose default
373 llvm::SwitchInst *Switch =
376 return Switch;
410 llvm::SwitchInst *Switch = TransitionToCleanupSwitch(*this, BranchBB)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 753 switch (MD.first) {
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.h 222 /* Switch-case block state. */
291 /* Current switch-case state. */
292 struct tgsi_switch_record Switch;
313 /** Switch case stack */
398 switch(param) {
  /frameworks/base/core/java/android/widget/
Switch.java 57 * A Switch is a two-state toggle switch widget that can select between two
60 * property controls the text displayed in the label for the switch, whereas the
69 * the Switch widget which runs on devices back to API 7.</p>
83 public class Switch extends CompoundButton {
125 * Width required to draw the switch track and thumb. Includes padding and
131 * Height required to draw the switch track and thumb. Includes padding and
142 /** Left bound for drawing the switch track and thumb. */
145 /** Top bound for drawing the switch track and thumb. */
148 /** Right bound for drawing the switch track and thumb. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndr64types.h 350 PNDR64_FORMAT Switch;
  /tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/
md8475a.py 365 class Switch(Enum):
    [all...]
  /external/llvm/bindings/go/llvm/
ir.go 174 Switch Opcode = C.LLVMSwitch
    [all...]
  /frameworks/opt/setupwizard/tools/docs/
jsilver.jar 
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
lombok-ast-0.2.3.jar 

Completed in 1616 milliseconds

1 2 3